:root{
  --bg: #f0e9d7e0;
  --dark: #2b2b2b;
  --soft: #6f6f6f;
  --light: #FFF;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fff;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.loaded {
  opacity: 1;
}

section,
  header,
  footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

h1,h2{
  font-family: 'Playfair Display', serif;
}

.nav{
  position: fixed;
  top:0;
  width:100%;
  z-index:1000;

  /* estado inicial (hero) */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled{
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-inner{
  max-width:1200px;
  margin:auto;
  padding: 12px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-logo {
  height: 50px;
  width: auto;
  transform: scale(1.4);
  transform-origin: left center;
  margin: 5px;
}

.nav a{
  margin-left:24px;
  text-decoration:none;
  color:var(--dark);
  font-size:14px;
  font-weight: 500;
  position: relative;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #e0d7c39a;
  animation: pulse 6s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover{
  background: #FFF;
  color: #000;
  border: none;
  transition: 0.27s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }

  20% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.05);
  }

  40% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}


/* HERO */

.hero-premium {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12%;

  background-image: url("capa3.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  border-bottom-left-radius: 550px 50px;
  border-bottom-right-radius: 550px 60px;
}

@keyframes heroZoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 108%;
  }
}


/* Overlay */
.hero-premium-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.425),
    rgba(255, 255, 255, 0.88)
  );
  z-index: 1;
}

/* Conteúdo */
.hero-premium-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 40px 20px;
}

/* Eyebrow */
.hero-premium-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #6f6f6f;
  margin-bottom: 18px;
}

/* Título */
.hero-premium-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.25;
  color: #1e1e1e;
  margin-bottom: 22px;
}

/* Texto */
.hero-premium-content p {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #6a6a6a;
  max-width: 620px;
  margin: 0 auto;
}

/* Botão */
.hero-premium-btn {
  display: inline-block;
  margin-top: 38px;
  padding: 14px 36px;
  border-radius: 40px;
  background: #ece6d800;
  border: 1px solid #000;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-premium-btn:hover {
  background: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-premium {
    padding: 0 8%;
  }

  .hero-premium-content h1 {
    font-size: 2.4rem;
  }

  .hero-premium-content p {
    font-size: 1.02rem;
    font-weight: 500;
  }
}


/* ABOUT */
.about{
  padding: 80px 24px 90px;
}

.about-title{
  text-align: center;
  margin-bottom: 60px;
  min-height: 3.6rem;
  font-size: 30px;
}

/* container interno */
.about-grid{
  max-width: 1100px;        /* trava largura no desktop */
  margin: 0 auto;           /* centraliza */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;                /* distância real entre imagem e texto */
  align-items: center;
}

.about-image img{
  width: 100%;
  max-width: 480px;
  border-radius: 40px 0 40px 0;
  height: auto;
  display: block;
}

/* Texto */
.about-content {
  font-family: 'Lora', serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--dark);
}

.about-content h2 {
  font-weight: 600;
  font-size: 2.3rem;
  margin-bottom: 24px;
}

.about-crm{
  margin-top: 24px;
  font-size: 14px;
  color: var(--soft);
}

@media (max-width: 768px){
  .about{
    padding: 50px 24px 80px;
  }

  .about-title {
    font-size: 21px;
    margin: 20px;
}

  .about-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img{
    max-width: 300px;
    margin: 0 auto;
  }
}


/*  -----------------  */


.pdo-section{
  padding:70px 8% 90px;
  background:#fafafa;
}

.pdo-container{
  max-width:1200px;
  margin:auto;
}

.pdo-header{
  text-align:center;
  max-width:650px;
  margin:auto;
}

.pdo-eyebrow{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#b89c7a;
}

.pdo-header h2{
  font-size:38px;
  margin:12px 0;
  color:#222;
}

.pdo-header p{
  color:#555;
  line-height:1.6;
}

.pdo-content{
  margin-top:70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.pdo-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.pdo-benefits{
  display:grid;
  gap:25px;
}

/* Responsivo */
@media (max-width: 700px) {

  .pdo-image {
    margin-top: 40px;
}

.pdo-content {
    display: flow !important;
    align-items: center;
}

.pdo-benefits {
    display: grid;
    gap: 25px;
    margin-top: 25px;
}
}

.pdo-card{
  background:white;
  padding:28px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:all .3s ease;
}

.pdo-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.pdo-card h3{
  margin-bottom:8px;
  font-size:20px;
}

.pdo-card p{
  color:#555;
  font-size:15px;
}

.pdo-cta{
  margin-top:60px;
  text-align:center;
}

.pdo-cta a{
  display:inline-block;
  padding:16px 36px;
  background:#cec7b2db !important;
  color:white;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.pdo-cta a:hover{
  transform:scale(1.05);
}

/* ==========================
   FADE IN SECTION
========================== */

.pdo-section{
  padding:120px 8%;
  background:#fafafa;

  opacity:0;
  transform:translateY(60px);
  transition:opacity 1s ease, transform 1s ease;
}

.pdo-section.show{
  opacity:1;
  transform:translateY(0);
}

.fade-in{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .9s ease, transform .9s ease;
}

.fade-in.show{
  opacity:1;
  transform:translateY(0);
}


/* animação leve nos cards */

.pdo-card{
  background:white;
  padding:28px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.pdo-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}


/* ------------------ */


/* ==========================
   ATUAÇÃO
========================== */

.premium-procedures {
  position: relative;

  background-image: url("consulta-ginecologica-preventiva.jpeg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;

  padding: 60px 24px 100px;
  overflow: hidden;
}

/* película clara */

.premium-procedures::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.75); /* mais sólido */
  backdrop-filter: blur(2px);

  z-index: 1;
}

/* fallback mobile */

@media (max-width: 768px){

  .premium-procedures{
    background-image: url("consulta-ginecologica-preventiva.jpeg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  /* REMOVE o efeito vidro no mobile (ele quebra em vários aparelhos) */
  .premium-procedures::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
  }

}

section#agendar {
    background: #fafafa !important;
    backdrop-filter: blur(2px);
}

/* Responsivo */
@media (max-width: 700px) {
.appointment-invite {
    background: #cec7b254 !important;
    backdrop-filter: blur(2px);
}
}

/* conteúdo fica acima da película */

.premium-procedures > * {
  position: relative;
  z-index: 2;
}

.premium-container {
  max-width: 1100px;
  margin: 30px auto;
}

.premium-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b89b7a;
  font-weight: 500;
}

.premium-procedures h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 500;
  margin: 16px 0 20px;
  color: #2e2e2e;
}

.premium-description {
  max-width: 1000px;
  
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f5f5f;
  margin: 31px auto 0px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .premium-description {
    text-align: center;
}
}

.premium-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 5opx;
}

.premium-item {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: #ffffff4a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  padding: 15px;
  
}


.premium-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #b89b7a0d;
}

.premium-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #2d2d2d;
  text-align: center;
}

.premium-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6a6a6a;
  text-align: center;
}

/* Responsivo */
@media (max-width: 900px) {
  .premium-list {
    grid-template-columns: 1.8fr;
    gap: 20px;
  }

  .premium-procedures h2 {
    font-size: 2.1rem;
  }
}

.premium-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.premium-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   SEÇÃO NÚMEROS – CLEAN
========================== */

.trust-numbers {
  background: #ffffff36;
  padding: 40px 8%;
  border-radius: 10px;
}

.trust-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Bloco individual */
.trust-item {
  text-align: center;
}

/* Número */
.trust-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #474747;
  display: block;
  margin-bottom: 6px;
}

/* Texto */
.trust-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #474747;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .trust-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .trust-number {
    font-size: 1.6rem;
  }
}


/* ==========================
   PROCEDIMENTOS
========================== */

.signature-procedures {
  background-color: #fafafa;
  padding: 60px 24px;
}

.signature-container {
  max-width: 1100px;
  margin: 27px auto 0;
}

.signature-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89b7a;
}

.signature-procedures h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #2b2b2b;
  margin: 16px 0 56px;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.signature-item {
  border: 1px solid rgba(184, 155, 122, 0.35);
   position: relative;
  padding: 26px 18px;
  text-align: center;
  font-size: 0.95rem;
  color: #3f3f3f;
  letter-spacing: 0.04em;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 7px;

}

.signature-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.signature-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -8px);
}

/* Responsivo */
@media (max-width: 1000px) {
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-procedures h2 {
    font-size: 2rem;
  }
}

.signature-item {
  opacity: 0;
  transform: translateY(25px);
}

.signature-item.show {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================
   CARROSSEL CONSULTÓRIO
========================== */

.clinic-fade{
  position:relative;
  height:460px;
  width: 860px;
  margin: 35px auto 0;
  border-radius:24px;
  overflow:hidden;
}

.clinic-fade img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.0);
  transition:opacity 1s ease, transform 5s ease;
}

.clinic-fade img.active{
  opacity:1;
  transform:scale(1.1);
}

.clinic-fade img.active{
  opacity:1;
}



/* CTA REFINADO */

.appointment-invite {
  padding: 60px 24px;
  background-color: #fff;
}

.appointment-text {
    margin-top: 20px;
}

.appointment-card {
  max-width: 1100px;
  margin: 10px auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.appointment-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89b7a;
}

.appointment-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #2b2b2b;
  margin: 18px 0 22px;
  max-width: 520px;
}

.appointment-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 34px;
}

.appointment-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 20px;
  border: 1px solid #e0d7c39a;
  color: #2b2b2b;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.35s ease;
}

.appointment-btn:hover {
  background-color: #b6aa8ac0;
  color: #ffffff;
}

.appointment-signature {
  display: flex;
  justify-content: flex-end;
}

.appointment-signature img {
  width: 160px;
  opacity: 0.85;
}

/* Responsivo */
@media (max-width: 900px) {
  .appointment-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .appointment-signature {
    justify-content: center;
    margin-top: 24px;
  }

  .appointment-text h2 {
    max-width: 100%;
  }
}




/* ==========================
   LOCALIZAÇÃO
   ========================== */

.title-localizacao {
    max-width: 1100px;
    margin: 27px auto 0;
}

span.localização {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b89b7a;
}

h2.local {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #2b2b2b;
    margin: 18px 0 22px;
    max-width: 550px;
}

.map-section{
  padding:60px 10%;
}

.map-wrapper{
  margin-top:40px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.map-wrapper iframe{
  width:100%;
  height:420px;
  border:0;
}

.map-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:24px;
  font-size:15px;
  text-decoration:none;
  color:#1a73e8;
}

.map-link i{
  font-size:14px;
  color: var(--dark);
}

.map-address{
  margin-top:16px;
  font-size:14px;
  color:var(--soft);
}


/* ==========================
   INSTAGRAM EXPERIENCE
========================== */

.instagram-footer {
  background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
  color: #fff;
  padding: 70px 10% 40px;
}

.instagram-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

.insta-col h3,
.insta-col h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 16px;
}

.insta-col p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 8px;
}

p.telefones-contato {
    color: #FFF !important;
    text-decoration: none !important;
}

/* Ícones */
.insta-socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.insta-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s ease;
  text-decoration: none;
}

.insta-socials a:hover {
  background: #f0e9d7;
  border-color: #b6aa8ac0;
  color: var(--dark);
}

/* Form */
.insta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insta-form input {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

.insta-form button {
  background: #ffffff;
  border: none;
  padding: 14px;
  color: #000;
  font-size: 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  transition: transform .3s ease;
}

.insta-form button:hover {
  transform: translateY(-2px);
}

/* Copyright */
.insta-copy {
  text-align: center;
  margin-top: 60px;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .instagram-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .insta-socials {
    justify-content: center;
  }
}

/* ==========================
   VOLTAR AO TOPO
   ========================== */

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f0e9d7;
  color: var(--dark);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  left: 50px;
}

#back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}


/* ==========================
   WHATSAPP
   ========================== */
.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #25d366;
  font-size: 1.8rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}



/* FOOTER */
footer{
  padding:5px;
  text-align:center;
  font-size:12px;
  color:var(--light);
  background:#0f0f0f;
}

/* Responsividade */

@media (max-width: 768px) {
  .hero-centered h1 {
    font-size: 2.2rem;
  }

  .hero-centered p {
    font-size: 1rem;
  }

  .premium-list {
    grid-template-columns: 1fr;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .clinic-fade {
    width: 100%;
    height: 300px;
  }

  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .nav nav {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .nav a {
    font-size: 13px;
    margin-left: 0;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
    flex-shrink: 0;
  }
  
  a.nav-cta {
    border: 1px solid #0000008c;
}
}

/* ==========================
   MENU HAMBURGUER – LATERAL DIREITA
========================== */

/* Botão hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* Menu desktop */
.nav-menu {
  display: flex;
  align-items: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;

    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;

    box-shadow: -20px 0 50px rgba(0,0,0,0.15);

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
    
    z-index: 1001;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.87);
  }

  .nav-menu a {
    font-size: 24px;
    margin: 10px 0;
  }

  .nav-cta {
    margin-top: 12px;
  }
}

/* Animação do ícone hamburguer */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


