  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      
    }
    
    html {
  	  scroll-behavior: smooth;
	}
    
    :root {
    	--gold: #C5A046;
    	--gold-dark: #8D6E2A;
    	--bg-dark: #0A0A0A;
    	--text-gray: #A1A1A1;
	}

    body {
      background-color: var(--bg-dark);
      color: #F5F5F5;
      font-family: 'Poppins', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    h1, h2, h3 {
	    font-family: 'Poppins';
	    font-weight: 200; /* Extra Light para elegância */
	    text-transform: uppercase;
	    letter-spacing: 0.05em;
    }
    
    .section-heading {
	    font-size: 48px;
	    line-height: 1.1;
	    margin-bottom: 30px;
	}
	
	.section-titulo {
	    font-family: 'Poppins'!important;
	    color: var(--gold) !important;
	    font-size: 10px !important;           /* Tamanho fixo */
	    font-weight: 900 !important;          /* NEGRITO REAL */
	    text-transform: uppercase !important;
	    letter-spacing: 0.4em !important;
	    margin-bottom: 24px !important;
	    display: block !important;
	    line-height: 1.2 !important;
	}
	
	.section-text {
	    color: var(--text-gray);
	    font-size: 16px;
	    font-weight: 200; /* Texto mais fino */
	    line-height: 1.8;
	    margin-bottom: 20px;
	    max-width: 600px;
	}
    
    .btn-primary, .btn-secondary {
	    min-width: 200px;
	    height: 52px;
	    border-radius: 50px;
	    font-family: 'Poppins';
	    font-size: 14px;
	    font-weight: 400;
	    letter-spacing: 0.1em;
	    text-transform: uppercase;
	    cursor: pointer;
	    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	    display: inline-flex;
	    align-items: center;
	    justify-content: center;
	    border: none;
	    text-decoration: none;
	}
	
	.btn-primary {
	    background-color: var(--gold);
	    color: #000;
	}
	
	.btn-primary:hover {
	    background-color: #e2ba5a;
	    transform: translateY(-3px);
	    box-shadow: 0 10px 20px rgba(197, 160, 70, 0.2);
	}
	
	.btn-secondary {
	    background-color: transparent;
	    color: var(--gold);
	    border: 1px solid rgba(197, 160, 70, 0.4);
	    margin-left: 0; /* Ajustado para controle via Flexbox no HTML */
	}
	
	.btn-secondary:hover {
	    background-color: rgba(197, 160, 70, 0.1);
	    border-color: var(--gold);
	    transform: translateY(-3px);
	}

    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #111111;
    }

    ::-webkit-scrollbar-thumb {
      background: #CBD5E1;
      border-radius: 10px;
    }

    .navbar {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  z-index: 50;
      padding: 15px 0; /* Removi o padding lateral daqui */
      background: rgba(10, 10, 10, 0.95); /* Leve transparência para elegância */
      backdrop-filter: blur(10px);
	}
	
	.navbar-content {
	  max-width: 1280px; /* Mesma largura do seu .container */
	  margin: 0 auto;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	}
	
	.navbar-logo {
	  display: flex;
	  align-items: center;
	  text-decoration: none;
	  color: white;
	  /* Garante que a logo seja o ponto zero à esquerda */
	  margin-left: 0; 
	}
	
	.navbar-logo img {
	  height: 40px; /* Ajustado para os 60px solicitados */
	  width: auto;
	  margin-right: 8px; /* Espaço entre a logo e o nome Dra. Germana */
	}
	
	/* Estilo do Texto do Nome */
	.logo-text {
	  font-family: 'Poppins', sans-serif;
	  font-size: 1 rem;
	  font-weight: 600;
	  color: #f5f5f5;
	  letter-spacing: 0.05em;
	}

    .navbar-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .navbar-links a {
      color: #A1A1A1;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .navbar-links a:hover {
      color: #D4AF37;
    }

    .btn-contato {
      background-color: #D4AF37;
      color: #0A0A0A;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 12px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-contato:hover {
      background-color: #AA8222;
    }

    section {
		scroll-margin-top: 80px;
		padding: 80px 0; /* Padding apenas em cima e embaixo */
		background-color: var(--bg-dark);
		width: 100%;
		overflow: hidden; /* Evita que animações flutuantes criem scroll horizontal */
		display: block;
    }
    
    .container {
	  max-width: 1280px;
	  margin: 0 auto;
	  padding: 0 40px; /* Ajuste este valor conforme desejar, mas mantenha igual nos dois */
	  width: 100%;
	}

    .section-titulo {
	  color: var(--gold);
	  font-size: 10px;
	  font-weight: 300;
	  text-transform: uppercase;
	  letter-spacing: 0.3em;
	  margin-bottom: 20px;
	  display: block;
	  /* Garante que o texto de referência não tenha recuos extras */
	  padding-left: 0;
    }

    .section-heading {
      font-size: 48px;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 30px;
      letter-spacing: -0.02em;
    }

    .section-heading-gradient {
      background: linear-gradient(135deg, #D4AF37 0%, #AA8222 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-text {
      color: #A1A1A1;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
      max-width: 600px;
    }
    
    .heading-elegant {
	    font-weight: 200;
	    letter-spacing: -0.02em;
	    line-height: 1.1;
	    white-space: nowrap;
	    -webkit-font-smoothing: antialiased;
    }

	.heading-elegant span {
	    font-weight: 300;
	    white-space: nowrap;
	}

    .btn-primary {
      background-color: #D4AF37;
      color: #0A0A0A;
      padding: 15px 40px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 16px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      margin-top: 20px;
    }

    .btn-primary:hover {
      transform: scale(1.05);
    }

    .btn-secondary {
      background-color: rgba(170, 130, 34, 0.2);
      color: #D4AF37;
      padding: 15px 40px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 16px;
      border: 1px solid #AA8222;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      
      margin-top: 20px;
      margin-left: 20px;
    }
    
    .btn-primary, .btn-secondary {
	    text-decoration: none; /* Garante que o link não tenha sublinhado */
	    text-align: center;
	    min-width: 250px; /* Mantém os botões com tamanhos consistentes */
    }
    
	.btn-secondary {
	    margin-left: 0; 
	}

    .btn-secondary:hover {
      background-color: rgba(170, 130, 34, 0.4);
    }

    .sobre-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-image {
      width: 100%;
      max-width: 400px;
      aspect-ratio: 4/5;
      border-radius: 30px;
      overflow: hidden;
      border: 4px solid #333333;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .item-list {
      margin-top: 30px;
    }

    .item {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
    }

    .item-number {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background-color: rgba(212, 175, 55, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #D4AF37;
      font-weight: 700;
      flex-shrink: 0;
    }

    .item-content h3 {
      color: #F5F5F5;
      font-size: 18px;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .item-content p {
      color: #A1A1A1;
      font-size: 14px;
      line-height: 1.6;
    }

    .scroll-infinito {
      padding: 40px;
      border-top: 1px solid #333333;
      border-bottom: 1px solid #333333;
      overflow: hidden;
      background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 15%, rgba(10, 10, 10, 0) 85%, rgba(10, 10, 10, 1) 100%);
    }

    .scroll-track {
      display: flex;
      gap: 40px;
      animation: scroll 30s linear infinite;
      will-change: transform;
    }

    .scroll-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .institution-item {
      flex: 0 0 auto;
      white-space: nowrap;
      font-size: 32px;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.15);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 10px 15px;
      border-radius: 10px;
    }

    .institution-item:hover {
      color: #D4AF37;
      background-color: rgba(212, 175, 55, 0.1);
      transform: scale(1.05);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .card {
      background-color: rgba(50, 50, 50, 0.5);
      padding: 40px;
      border-radius: 30px;
      border: 1px solid #333333;
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: translateY(-10px);
      border-color: #D4AF37;
    }

    .card h3 {
      font-size: 24px;
      color: #F5F5F5;
      margin-bottom: 15px;
    }

    .card p {
      color: #A1A1A1;
      font-size: 14px;
      line-height: 1.6;
    }

    .footer {
      background-color: #0A0A0A;
      padding: 60px 40px;
      text-align: center;
      border-top: 1px solid #333333;
    }

    .footer h2 {
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .footer p {
      color: #666666;
      font-size: 12px;
      margin-top: 15px;
    }

    @media (max-width: 768px) {
      .sobre-content {
        grid-template-columns: 1fr;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      .section-heading {
        font-size: 32px;
      }

      .navbar-links {
        display: none;
      }
    }
    
    @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 4s ease-in-out 2s infinite;
}