.elementor-13 .elementor-element.elementor-element-e3f7540{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-f8c9d80{padding:0px 0px 0px 0px;}/* Start custom CSS */:root {
    --blush: #f9e8e8;
    --rose: #e8b4b8;
    --dusty: #d4848a;
    --deep-rose: #b5626a;
    --mauve: #8b4d55;
    --cream: #fdf7f5;
    --warm-white: #fffaf9;
    --text-dark: #2d1f22;
    --text-mid: #6b4a50;
    --text-light: #a07880;
    --gold: #c9a96e;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── NAV CONTAINER ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  display: flex;
  flex-direction: column; /* 👈 agora é coluna */
  
  background: rgba(253,247,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,132,138,0.15);
}

/* ─── LINHA 1 (URGÊNCIA) ─── */
.one {
  width: 100%;
  background: #000;
  color: #fff;
}

.bar {
  padding: 0.6rem 5%;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.urgency-bar span {
  color: #ffb3b3;
  font-weight: 600;
}

/* ─── LINHA 2 (LOGO + MENU) ─── */
.two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
}

/* logo continua igual */
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--mauve);
  letter-spacing: 0.05em;
}

.logo span { 
  color: var(--dusty); 
  font-style: italic; 
}

/* menu */
nav ul { 
  list-style: none; 
  display: flex; 
  gap: 2rem; 
}

nav ul a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav ul a:hover { 
  color: var(--dusty); 
}

.nav-cta {
  background: var(--dusty);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
}

.nav-cta:hover { 
  background: var(--mauve) !important; 
  color: #fff !important; 
}

/* ─── HERO ─── */
  .hero {
  min-height: 100vh;
  padding: 6rem 5% 4rem;
  padding-top: 150px;
  position: relative;
  overflow: hidden;
}
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 70% at 70% 40%, rgba(249,232,232,0.7) 0%, transparent 70%),
                radial-gradient(ellipse 50% 60% at 20% 80%, rgba(232,180,184,0.3) 0%, transparent 60%);
    pointer-events: none;
  }
  /* limita o conteúdo do hero em telas grandes sem cortar o fundo */
.hero-inner{
  max-width: 1100px;               /* ajuste se quiser: 1200px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;                      /* fica acima do ::before */
}

/* garante que o fundo do hero continue full width */
.hero::before{
  z-index: 0;
}

/* responsivo: mantém empilhado no mobile */
@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* opcional: melhora o “vazio” no ultrawide */
@media (min-width: 1400px){
  .hero-inner{
    max-width: 1200px;
    gap: 5rem;
  }
}
  
  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,132,138,0.12);
    border: 1px solid rgba(212,132,138,0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dusty);
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before { content: '✦'; font-size: 0.6rem; }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--dusty);
  }
  .hero p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--dusty), var(--mauve));
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(180,98,106,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(180,98,106,0.45); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent;
    color: var(--dusty);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(212,132,138,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: all 0.3s;
  }
  .btn-secondary:hover { background: var(--blush); border-color: var(--dusty); }

  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--mauve);
  }
  .stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

  .hero-visual {
    position: relative; z-index: 1;
    display: flex; justify-content: center; align-items: center;
    animation: fadeIn 1.2s 0.3s ease both;
  }
  .hero-img-wrap {
    position: relative;
    width: 480px; height: 580px;
  }
  .hero-circle {
    position: absolute;
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--rose) 0%, var(--blush) 60%, transparent 100%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
  }
  .hero-photo {
    position: relative; z-index: 2;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .smile-mockup {
    width: 390px; height: 480px;
    background: linear-gradient(160deg, var(--blush) 0%, #fff5f5 50%, var(--blush) 100%);
    border-radius: 40% 40% 50% 50% / 30% 30% 50% 50%;
    border: 2px solid rgba(232,180,184,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 30px 80px rgba(180,98,106,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative; overflow: hidden;
  }
  .smile-mockup::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,180,184,0.4), transparent);
    border-radius: 50%;
  }

  .floating-card {
    z-index: 1000;
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.3rem;
    box-shadow: 0 10px 40px rgba(180,98,106,0.15);
    border: 1px solid rgba(232,180,184,0.3);
    display: flex; align-items: center; gap: 0.8rem;
  }
  .card-left { left: -40px; top: 30%; animation: floatY 3s ease-in-out infinite; }
  .card-right { right: -30px; bottom: 25%; animation: floatY 3s 1.5s ease-in-out infinite; }
  .fc-icon { font-size: 1.5rem; }
  .fc-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
  .fc-val { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--mauve); font-weight: 600; }
  

  /* ─── PRODUCT ─── */
.what-sec {
  padding: 6rem 5%;
  background: var(--cream);
  position: relative;
}

.what-top {
    padding-top: 50px;
  max-width: 1100px; margin: 0 auto 3.5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}

.what-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.what-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem;
}
.what-pill {
  background: var(--blush);
  border: 1px solid rgba(212,132,138,0.3);
  color: var(--mauve);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}
.what-img-wrap {
  position: relative;
}
.what-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(180,98,106,0.16);
  border: 2px solid rgba(212,132,138,0.2);
}
.what-img-wrap {
      position: relative;
      background: linear-gradient(160deg, var(--blush), #fff5f5);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      border: 2px solid rgba(212,132,138,0.35);
      aspect-ratio: 1;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(180,98,106,0.18);
    }
.what-img-badge {
  position: absolute;
  bottom: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--dusty), var(--mauve));
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(180,98,106,0.35);
  letter-spacing: 0.04em;
}
.what-bottom {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.what-small-card {
  background: var(--warm-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,132,138,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.what-small-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(180,98,106,0.12); }
.wsm-img {
  width: 100%; height: 180px;
}
.wsm-body {
  padding: 1.4rem;
}
.wsm-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.wsm-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}
@media (max-width: 900px) {
  .what-top { grid-template-columns: 1fr; }
  .what-bottom { grid-template-columns: 1fr; }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {

  .what-top {
    display: flex;
    flex-direction: column;
  }

  .what-img-wrap {
    order: -1; /* 👈 faz a imagem subir */
    margin-top: 30px;
  }

}

  /* ─── BENEFITS ─── */
  .benefits {
    padding: 6rem 5%;
    background: var(--cream);
    position: relative;
  }
  .benefits::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
  }
  .section-label {
    text-align: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--dusty);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }
  .section-title em { font-style: italic; color: var(--dusty); }
  .section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 4rem;
    font-weight: 300;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .benefit-card {
    background: var(--warm-white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(232,180,184,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .benefit-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--dusty));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(180,98,106,0.12); }
  .benefit-card:hover::after { transform: scaleX(1); }
  .benefit-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--blush), rgba(232,180,184,0.3));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
  }
  .benefit-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

  /* ─── HOW IT WORKS ─── */
  .how {
    padding: 6rem 5%;
    background: var(--warm-white);
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 35px; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(90deg, var(--rose), var(--dusty), var(--rose));
  }
  .step { text-align: center; padding: 1rem; }
  .step-num {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--blush), #fff5f5);
    border: 2px solid var(--rose);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--mauve);
    font-weight: 600;
    position: relative; z-index: 1;
    background: var(--warm-white);
  }
  .step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }

  /* ─── COMPARE ─── */
  .compare {
    padding: 6rem 5%;
    background: var(--cream);
  }
  .compare-wrap {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .compare-col {
    background: var(--warm-white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(232,180,184,0.2);
  }
  .compare-col.featured {
    background: linear-gradient(160deg, #fff0f0, var(--blush));
    border: 2px solid var(--rose);
    box-shadow: 0 20px 60px rgba(180,98,106,0.12);
  }
  .compare-head {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 2rem;
  }
  .compare-icon { font-size: 2rem; }
  .compare-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
  }
  .badge-inv {
    display: inline-block;
    background: var(--dusty);
    color: #fff;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    vertical-align: middle;
  }
  .compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
  .compare-list li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
  }
  .compare-list li .ico { font-size: 1rem; flex-shrink: 0; margin-top: 0.05rem; }
  
  .wpp-three{
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 80px;
  }

  /* ─── DOC ─── */
    .doctor-sec {
      padding: 6rem 5%;
      background: var(--warm-white);
    }
    .doctor-wrap {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.5fr;
      gap: 5rem; align-items: center;
    }
    .doctor-frame {
      position: relative;
      background: linear-gradient(160deg, var(--blush), #fff5f5);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      border: 2px solid rgba(212,132,138,0.35);
      aspect-ratio: 1;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(180,98,106,0.18);
    }
    .doc-img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: inherit;
    }
    .doc-monogram {
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      font-weight: 600;
      color: var(--mauve);
      opacity: 0.25;
      line-height: 1;
      letter-spacing: -0.05em;
      user-select: none;
    }
    .doc-badge {
      position: absolute;
      bottom: 8%; right: -8%;
      background: linear-gradient(135deg, var(--gold), #a8803a);
      color: #fff;
      padding: 0.75rem 1.4rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      box-shadow: 0 8px 24px rgba(180,98,106,0.3);
      white-space: nowrap;
    }
    .doctor-desc {
      color: var(--text-mid);
      font-size: 0.93rem;
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 1.2rem;
    }
    .emerald-box {
      background: linear-gradient(135deg, var(--blush), rgba(249,232,232,0.5));
      border: 1.5px solid rgba(212,132,138,0.3);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
      display: flex; gap: 1rem; align-items: flex-start;
      margin: 1.5rem 0;
    }
    .emerald-icon { font-size: 2rem; flex-shrink: 0; }
    .emerald-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--mauve);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .emerald-text {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.65;
      font-weight: 300;
    }
    .doc-badges {
      display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem;
    }
    .doc-tag {
      background: var(--blush);
      border: 1px solid rgba(212,132,138,0.3);
      color: var(--mauve);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 500;
    }
    @media (max-width: 900px) {
      .doctor-wrap { grid-template-columns: 1fr; }
      .doctor-photo { max-width: 280px; margin: 0 auto; }
    }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    padding: 6rem 5%;
    background: var(--warm-white);
  }
  .test-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px; margin: 0 auto;
  }
  .test-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(232,180,184,0.25);
    position: relative;
  }
  .test-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--rose);
    line-height: 0;
    position: absolute;
    top: 2rem; left: 1.5rem;
    opacity: 0.4;
  }
  .test-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    padding-top: 2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .test-author { display: flex; align-items: center; gap: 0.8rem; }
  .test-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--dusty));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .test-name { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }
  .test-stars { font-size: 0.75rem; color: var(--gold); }

  /* ─── FAQ ─── */
  .faq { padding: 6rem 5%; background: var(--cream); }
  .faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
  .faq-item {
    background: var(--warm-white);
    border-radius: 16px;
    border: 1px solid rgba(232,180,184,0.25);
    overflow: hidden;
  }
  .faq-q {
    padding: 1.3rem 1.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    user-select: none;
  }
  .faq-q .icon { color: var(--dusty); transition: transform 0.3s; font-size: 1.2rem; }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 1.8rem;
  }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 1.8rem 1.3rem; }

  /* ─── CTA ─── */
  .cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #2d1f22 0%, var(--mauve) 100%);
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(232,180,184,0.15), transparent);
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  .cta h2 em { font-style: italic; color: var(--rose); }
  .cta p { color: rgba(255,255,255,0.65); font-weight: 300; margin-bottom: 3rem; font-size: 1rem; }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: green;
    color: #fff;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 40px rgba(232,180,184,0.3);
  }
  .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(232,180,184,0.45); }
  .whatsapp-icon { font-size: 1.2rem; }

  /* ─── FOOTER ─── */
  footer {
    padding: 3rem 5%;
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .foot-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
  }
  footer p { font-size: 0.8rem; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes pulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 2.5rem; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .benefits-grid, .steps, .test-grid { grid-template-columns: 1fr; }
    .compare-wrap { grid-template-columns: 1fr; }
    nav ul { display: none; }
  }
  
.pricing-sec {
  padding: 6rem 5%;
  background: var(--cream);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 1200px; margin: 0 auto 2.5rem;
}
.price-card {
  background: var(--warm-white);
  border: 1px solid rgba(212,132,138,0.2);
  border-radius: 20px;
  padding: 2rem 1.4rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(180,98,106,0.12); }
.price-card.featured {
  background: linear-gradient(160deg, var(--blush), #fff5f5);
  border: 2px solid var(--rose);
  box-shadow: 0 16px 50px rgba(180,98,106,0.14);
}
.price-badge-top {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--dusty), var(--mauve));
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem;
  font-weight: 600;
}
.price-icon { font-size: 2rem; margin-bottom: 0.8rem; margin-top: 0.5rem; }
.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.price-sub { font-size: 0.75rem; color: var(--text-light); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--mauve);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
.price-val span { font-size: 1rem; font-weight: 400; }
.price-time {
  font-size: 0.75rem;
  color: var(--text-light);
  background: rgba(212,132,138,0.1);
  border-radius: 50px;
  padding: 0.4rem 0.7rem;
  line-height: 1.4;
}
.price-discount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--mauve);
  margin: 0.8rem 0;
  letter-spacing: -0.02em;
}
.price-discount::after {
  content: ' de desconto';
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--dusty);
  display: block;
  letter-spacing: 0;
  margin-top: -0.3rem;
}
.payment-box {
  max-width: 700px; margin: 0 auto;
  background: var(--warm-white);
  border: 1.5px solid rgba(212,132,138,0.25);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.pay-icon { font-size: 2.2rem; flex-shrink: 0; }
.pay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--mauve);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.pay-text { font-size: 0.88rem; color: var(--text-mid); font-weight: 300; line-height: 1.6; }
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { max-width: 100%; }
}/* End custom CSS */