:root {
      --wine: #640001;
      --wine-deep: #4a0000;
      --cream: #efeae4;
      --white: #ffffff;
      --brown: #342119;
      --gold: #dccda4;
      --gold-soft: #e8ddc0;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Jost', sans-serif;
      color: var(--brown);
      background: var(--cream);
      font-weight: 300;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    .display {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .eyebrow {
      font-family: 'Jost', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--wine);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* motion */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== SVG symbol motif ===== */
    .sym {
      width: 26px;
      height: 26px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.2;
    }

    .sym.wine {
      stroke: var(--wine);
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 22px 0;
      transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
    }

    header.scrolled {
      background: var(--wine);
      padding: 14px 0;
      box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      color: var(--cream);
      letter-spacing: 0.03em;
    }

    .logo .lnum {
      color: var(--gold);
      font-style: italic;
    }

    .logo-img {
      height: 34px;
      width: auto;
      display: block;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 28px;
    }

    nav a {
      color: var(--cream);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      position: relative;
      padding-bottom: 4px;
      white-space: nowrap;
    }

    nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a.nav-highlight {
      color: var(--gold);
    }

    nav a.nav-highlight::after {
      background: var(--gold);
      width: 100%;
    }

    .btn {
      display: inline-block;
      padding: 13px 30px;
      border: 1px solid var(--gold);
      color: var(--cream);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      border-radius: 2px;
      transition: background .35s ease, color .35s ease, border-color .35s ease;
    }

    .btn:hover {
      background: var(--gold);
      color: var(--wine-deep);
    }

    .btn.solid {
      background: var(--wine);
      color: var(--cream);
      border-color: var(--wine);
    }

    .btn.solid:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--wine-deep);
    }

    .btn.gold {
      background: var(--gold);
      color: var(--wine-deep);
      border-color: var(--gold);
    }

    .btn.gold:hover {
      background: var(--cream);
      border-color: var(--cream);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--cream);
      margin: 6px 0;
    }

    /* ===== MOBILE NAV DRAWER (estrutura sempre ativa, escondida fora da tela por padrão) ===== */
    .nav-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 78%;
      max-width: 320px;
      height: 100vh;
      background: var(--wine-deep);
      z-index: 200;
      padding: 100px 36px;
      transition: right .4s ease;
    }

    .nav-drawer.open {
      right: 0;
    }

    .nav-drawer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .nav-drawer a {
      color: var(--cream);
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .drawer-close {
      position: absolute;
      top: 34px;
      right: 34px;
      background: none;
      border: none;
      color: var(--gold);
      font-size: 1.6rem;
      cursor: pointer;
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .5);
      z-index: 150;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }

    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(ellipse at 50% 20%, var(--wine) 0%, var(--wine-deep) 55%, #2c0000 100%);
      overflow: hidden;
      padding: 140px 0 100px;
    }

    .hero-constellation {
      position: absolute;
      inset: 0;
      opacity: .55;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero .eyebrow {
      color: var(--gold);
      margin-bottom: 22px;
      display: inline-block;
    }

    .hero h1 {
      color: var(--cream);
      font-size: clamp(2.6rem, 6vw, 4.6rem);
      line-height: 1.08;
      margin-bottom: 26px;
    }

    .hero h1 em {
      color: var(--gold);
      font-style: italic;
    }

    .hero p.lead {
      color: var(--gold-soft);
      font-size: 1.08rem;
      font-weight: 300;
      max-width: 520px;
      margin: 0 auto 40px;
    }

    .hero-ctas {
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .scroll-hint {
      position: absolute;
      bottom: 34px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--gold);
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .2em;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: .75;
    }

    .scroll-hint .line {
      width: 1px;
      height: 34px;
      background: linear-gradient(var(--gold), transparent);
      animation: pulse 2.2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: .3;
      }

      50% {
        opacity: 1;
      }
    }

    /* ===== SECTION generic ===== */
    section {
      padding: 120px 0;
    }

    .section-head {
      max-width: 640px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .section-head .eyebrow {
      display: block;
      margin-bottom: 16px;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 2.9rem);
      color: var(--wine);
    }

    .divider {
      width: 64px;
      height: 1px;
      background: var(--gold);
      margin: 26px auto 0;
      position: relative;
    }

    .divider::before {
      content: '✦';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: var(--cream);
      color: var(--gold);
      font-size: .8rem;
      padding: 0 10px;
    }

    /* ===== ABOUT ===== */
    .about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 70px;
      align-items: center;
    }

    .about-visual {
      aspect-ratio: 4/5;
      border-radius: 4px;
      background: linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-visual::after {
      content: '';
      position: absolute;
      inset: 14px;
      border: 1px solid var(--gold);
      opacity: .5;
      border-radius: 2px;
    }

    .about-visual .sym {
      width: 64px;
      height: 64px;
      stroke-width: .8;
    }

    .about-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 1;
    }

    .about-text .eyebrow {
      margin-bottom: 14px;
      display: block;
    }

    .about-text h2 {
      font-size: clamp(1.9rem, 3.4vw, 2.6rem);
      color: var(--wine);
      margin-bottom: 22px;
    }

    .about-text p {
      margin-bottom: 16px;
      font-size: 1rem;
      color: var(--brown);
      opacity: .9;
    }

    .about-signature {
      margin-top: 30px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--wine);
    }

    /* ===== SERVICES ===== */
    .services {
      background: var(--white);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
    }

    .service-card {
      border: 1px solid var(--gold);
      padding: 48px 38px;
      transition: background .35s ease;
    }

    .service-card:hover {
      background: var(--cream);
    }

    .service-card .sym {
      margin-bottom: 26px;
      width: 34px;
      height: 34px;
    }

    .service-card h3 {
      font-size: 1.55rem;
      color: var(--wine);
      margin-bottom: 6px;
    }

    .service-subtitle {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--wine);
      opacity: .85;
      margin-bottom: 18px;
    }

    .service-list {
      list-style: none;
      margin: 0 0 18px;
      padding: 0;
    }

    .service-list li {
      font-size: .86rem;
      opacity: .85;
      margin-bottom: 8px;
      padding-left: 16px;
      position: relative;
    }

    .service-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--wine);
    }

    .service-bonus {
      font-size: .82rem;
      opacity: .85;
      margin-bottom: 18px;
      font-style: italic;
    }

    .service-card p {
      font-size: 0.92rem;
      opacity: .85;
      margin-bottom: 22px;
      min-height: 66px;
    }

    .service-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--brown);
      display: block;
      margin-bottom: 22px;
    }

    .service-price span {
      font-size: .7rem;
      font-family: 'Jost', sans-serif;
      text-transform: uppercase;
      letter-spacing: .12em;
      opacity: .6;
      display: block;
      margin-top: 2px;
    }

    .service-link {
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--wine);
      border-bottom: 1px solid var(--wine);
      padding-bottom: 3px;
    }

    .featured {
      background: var(--wine);
      color: var(--cream);
    }

    .featured .sym {
      stroke: var(--gold);
    }

    .featured h3 {
      color: var(--gold);
    }

    .featured p {
      color: var(--gold-soft);
    }

    .featured .service-subtitle {
      color: var(--gold-soft);
    }

    .featured .service-list li {
      color: var(--gold-soft);
      opacity: 1;
    }

    .featured .service-list li::before {
      color: var(--gold);
    }

    .featured .service-bonus {
      color: var(--gold-soft);
    }

    .featured .service-price {
      color: var(--cream);
    }

    .featured .service-price span {
      opacity: .7;
    }

    .featured .service-link {
      color: var(--gold);
      border-color: var(--gold);
    }

    .featured:hover {
      background: var(--wine-deep);
    }

    /* ===== BANHO DE ERVAS ===== */
    .banho {
      background: var(--white);
    }

    .banho-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 70px;
      align-items: center;
    }

    .banho-visual {
      order: 2;
      aspect-ratio: 4/5;
      border-radius: 4px;
      background: linear-gradient(160deg, var(--gold-soft) 0%, var(--gold) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .banho-visual::after {
      content: '';
      position: absolute;
      inset: 14px;
      border: 1px solid var(--wine);
      opacity: .35;
      border-radius: 2px;
    }

    .banho-visual .sym {
      width: 60px;
      height: 60px;
      stroke: var(--wine);
      stroke-width: .8;
    }

    .banho-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 1;
    }

    .banho-text .eyebrow {
      margin-bottom: 14px;
      display: block;
    }

    .banho-text h2 {
      font-size: clamp(1.9rem, 3.4vw, 2.6rem);
      color: var(--wine);
      margin-bottom: 22px;
    }

    .banho-text p {
      margin-bottom: 16px;
      font-size: 1rem;
      opacity: .9;
    }

    .banho-list {
      list-style: none;
      margin: 24px 0 30px;
    }

    .banho-list li {
      display: flex;
      gap: 12px;
      margin-bottom: 12px;
      font-size: .92rem;
      opacity: .9;
      align-items: flex-start;
    }

    .banho-list li svg {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      stroke: var(--wine);
      margin-top: 3px;
    }

    .banho-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--wine);
      display: block;
      margin-bottom: 26px;
    }

    .banho-price span {
      font-size: .7rem;
      font-family: 'Jost', sans-serif;
      text-transform: uppercase;
      letter-spacing: .12em;
      opacity: .6;
      display: block;
      margin-top: 2px;
    }

    .banho-types {
      margin-top: 100px;
    }

    .banho-types .section-head {
      margin-bottom: 52px;
    }

    .banho-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
    }

    .banho-card {
      text-align: left;
    }

    .banho-card-img {
      aspect-ratio: 1/1;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(160deg, var(--gold-soft) 0%, var(--gold) 100%);
      margin-bottom: 22px;
    }

    .banho-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 2;
    }

    .banho-card-img .ph-label {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--wine);
      text-align: center;
      padding: 20px;
    }

    .banho-card-img .ph-label svg {
      width: 30px;
      height: 30px;
      stroke: var(--wine);
      opacity: .7;
    }

    .banho-card-img .ph-label span {
      font-size: .66rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      opacity: .75;
    }

    .banho-card h3 {
      font-size: 1.35rem;
      color: var(--wine);
      margin-bottom: 10px;
    }

    .banho-card p {
      font-size: .9rem;
      opacity: .85;
    }

    .method {
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at 20% 20%, var(--wine) 0%, var(--wine-deep) 60%, #260000 100%);
      color: var(--cream);
    }

    .method-deco {
      position: absolute;
      inset: 0;
      opacity: .4;
      pointer-events: none;
    }

    .method-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .2em;
      padding: 9px 20px;
      border-radius: 30px;
      margin-bottom: 28px;
    }

    .method-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .method-text h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--cream);
      margin-bottom: 20px;
    }

    .method-text h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .method-text p.lead {
      font-size: 1.02rem;
      color: var(--gold-soft);
      margin-bottom: 30px;
      max-width: 480px;
    }

    .method-list {
      list-style: none;
      margin-bottom: 38px;
    }

    .method-list li {
      display: flex;
      gap: 14px;
      margin-bottom: 16px;
      font-size: .95rem;
      color: var(--gold-soft);
      align-items: flex-start;
    }

    .method-list li svg {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      stroke: var(--gold);
      margin-top: 3px;
    }

    .method-visual {
      aspect-ratio: 1/1;
      border-radius: 50%;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: 0 auto;
      max-width: 340px;
    }

    .method-visual::before {
      content: '';
      position: absolute;
      inset: 22px;
      border: 1px solid rgba(220, 205, 164, .4);
      border-radius: 50%;
    }

    .method-visual .sym {
      width: 76px;
      height: 76px;
      stroke: var(--gold);
      stroke-width: .7;
    }

    .method-price-tag {
      text-align: center;
      margin-top: 26px;
    }

    .method-price-tag .price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--gold);
    }

    .method-price-tag .label {
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--gold-soft);
      opacity: .8;
      display: block;
      margin-top: 4px;
    }

    /* ===== HOW IT WORKS ===== */
    .how {
      background: var(--cream);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 36px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 22px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--cream);
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-family: 'Cormorant Garamond', serif;
      color: var(--wine);
      font-size: 1.15rem;
      font-style: italic;
      position: relative;
      z-index: 2;
    }

    .step h3 {
      font-size: 1.25rem;
      color: var(--wine);
      margin-bottom: 10px;
    }

    .step p {
      font-size: .9rem;
      opacity: .85;
      max-width: 260px;
      margin: 0 auto;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
      background: linear-gradient(160deg, var(--wine-deep) 0%, var(--wine) 100%);
      color: var(--cream);
    }

    .testimonials .section-head h2 {
      color: var(--gold);
    }

    .testimonials .divider::before {
      background: var(--wine);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .testi-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(220, 205, 164, .25);
      padding: 36px 30px;
      border-radius: 3px;
    }

    .testi-card .sym {
      width: 20px;
      height: 20px;
      margin-bottom: 18px;
      stroke: var(--gold);
    }

    .testi-card p {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.12rem;
      line-height: 1.5;
      margin-bottom: 22px;
      color: var(--gold-soft);
    }

    .testi-name {
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--gold);
    }

    /* ===== FINAL CTA ===== */
    .final-cta {
      background: var(--white);
    }

    .cta-panel {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
      padding: 80px 50px;
      border: 1px solid var(--gold);
      border-radius: 4px;
      position: relative;
      background: var(--cream);
    }

    .cta-panel::before,
    .cta-panel::after {
      content: '✦';
      color: var(--gold);
      font-size: 1.1rem;
      position: absolute;
      top: 26px;
    }

    .cta-panel::before {
      left: 30px;
    }

    .cta-panel::after {
      right: 30px;
    }

    .cta-panel h2 {
      color: var(--wine);
      font-size: clamp(1.9rem, 4vw, 2.6rem);
      margin-bottom: 18px;
    }

    .cta-panel p {
      max-width: 460px;
      margin: 0 auto 34px;
      opacity: .85;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--brown);
      color: var(--gold-soft);
      padding: 70px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 56px;
    }

    footer .logo {
      color: var(--cream);
      margin-bottom: 16px;
    }

    footer .flavor {
      font-size: .9rem;
      opacity: .75;
      max-width: 280px;
    }

    footer h4 {
      font-family: 'Jost', sans-serif;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .74rem;
      color: var(--gold);
      margin-bottom: 20px;
    }

    footer ul {
      list-style: none;
    }

    footer li {
      margin-bottom: 12px;
      font-size: .92rem;
      opacity: .85;
    }

    .footer-contact-link {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-contact-link svg {
      width: 16px;
      height: 16px;
      stroke: var(--gold);
      fill: none;
      flex-shrink: 0;
    }

    footer a:hover {
      color: var(--gold);
    }

    .social-row {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .social-row a {
      width: 38px;
      height: 38px;
      border: 1px solid var(--gold-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .85;
      transition: background .3s ease, border-color .3s ease;
    }

    .social-row a:hover {
      background: var(--wine);
      border-color: var(--wine);
    }

    .social-row svg {
      width: 16px;
      height: 16px;
      stroke: var(--gold-soft);
      fill: none;
    }

    .footer-bottom {
      border-top: 1px solid rgba(220, 205, 164, .15);
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .78rem;
      opacity: .6;
    }

    /* ===== responsive ===== */
    @media (max-width:900px) {
      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-visual {
        max-width: 340px;
        margin: 0 auto;
      }

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

      .steps {
        grid-template-columns: 1fr;
        gap: 46px;
      }

      .steps::before {
        display: none;
      }

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

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
      }

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

      .banho-visual {
        order: 1;
        max-width: 320px;
        margin: 0 auto;
      }

      .banho-cards {
        grid-template-columns: 1fr;
        gap: 44px;
      }

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

      .method-visual {
        margin-bottom: 10px;
      }
    }

    @media (max-width:1080px) {
      nav ul {
        gap: 18px;
      }

      nav a {
        font-size: .72rem;
      }

      .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 30px;
      }

      .steps::before {
        display: none;
      }
    }

    @media (max-width:760px) {

      nav ul,
      .hero-ctas .btn.ghost-desktop {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      section {
        padding: 80px 0;
      }

      .cta-panel {
        padding: 56px 26px;
      }
    }

    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 300;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
      transition: transform .25s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.08);
    }

    .whatsapp-float svg {
      width: 30px;
      height: 30px;
      fill: #ffffff;
    }

    @media (max-width:760px) {
      .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
      }

      .whatsapp-float svg {
        width: 26px;
        height: 26px;
      }
    }

    .method-form {
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .method-form input {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(220, 205, 164, .4);
      border-radius: 2px;
      padding: 13px 16px;
      color: var(--cream);
      font-family: 'Jost', sans-serif;
      font-size: .9rem;
    }

    .method-form input::placeholder {
      color: var(--gold-soft);
      opacity: .65;
    }

    .method-form input:focus {
      outline: none;
      border-color: var(--gold);
    }

    .method-form-note {
      font-size: .78rem;
      color: var(--gold-soft);
      opacity: .7;
      margin-top: 10px;
    }

    .method-form .hidden {
      display: none;
    }

    /* ===== PAIN POINTS ===== */
    .pain {
      background: var(--white);
    }

    .pain-question {
      max-width: 640px;
      margin: 0 auto 50px;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.4rem;
      color: var(--wine);
      border-top: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
      padding: 28px 20px;
    }

    .pain-list {
      list-style: none;
      max-width: 760px;
      margin: 0 auto;
      columns: 2;
      column-gap: 50px;
    }

    .pain-list li {
      font-size: .95rem;
      opacity: .9;
      margin-bottom: 16px;
      padding-left: 22px;
      position: relative;
      break-inside: avoid;
    }

    .pain-list li::before {
      content: '✦';
      position: absolute;
      left: 0;
      top: 1px;
      color: var(--gold);
      font-size: .85rem;
    }

    /* ===== BENEFIT GRIDS (o que traz / por que fazer) ===== */
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .benefit-grid.cols-5 {
      grid-template-columns: repeat(3, 1fr);
    }

    .benefit-card {
      border: 1px solid var(--gold);
      border-radius: 4px;
      padding: 34px 28px;
      text-align: left;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(52, 33, 25, .1);
    }

    .benefit-card h3 {
      font-size: 1.15rem;
      color: var(--wine);
      margin-bottom: 10px;
      letter-spacing: .01em;
    }

    .benefit-card p {
      font-size: .9rem;
      opacity: .85;
    }

    /* ===== SERVICE GROUP HEADERS ===== */
    .service-group {
      margin-bottom: 80px;
    }

    .service-group:last-child {
      margin-bottom: 0;
    }

    .service-group-title {
      font-family: 'Jost', sans-serif;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .82rem;
      color: var(--wine);
      text-align: center;
      margin-bottom: 36px;
      position: relative;
    }

    .service-group-title::after {
      content: '';
      display: block;
      width: 44px;
      height: 1px;
      background: var(--gold);
      margin: 14px auto 0;
    }

    .service-card ul.service-list.keys li {
      margin-bottom: 10px;
    }

    .service-card .service-list li strong {
      color: inherit;
    }

    /* ===== FAQ ===== */
    .faq {
      background: var(--cream);
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--gold);
      padding: 22px 0;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      color: var(--wine);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform .25s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item p {
      margin-top: 14px;
      font-size: .92rem;
      opacity: .88;
    }

    .faq-item p strong {
      color: var(--wine);
    }

    @media (max-width:900px) {
      .pain-list {
        columns: 1;
      }

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

    /* ===== ABAS DE LEITURAS ===== */
    .reading-tabs {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .reading-tab {
      background: none;
      border: 1px solid var(--gold);
      color: var(--wine);
      padding: 12px 26px;
      border-radius: 30px;
      font-family: 'Jost', sans-serif;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      cursor: pointer;
      transition: background .3s ease, color .3s ease;
    }

    .reading-tab.active,
    .reading-tab:hover {
      background: var(--wine);
      color: var(--cream);
      border-color: var(--wine);
    }

    .service-group {
      display: none;
    }

    .service-group.active {
      display: block;
    }

    /* ===== DETALHES RECOLHÍVEIS DENTRO DO CARD ===== */
    .card-details {
      margin-top: 16px;
    }

    .card-details summary {
      cursor: pointer;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--wine);
      list-style: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .card-details summary::-webkit-details-marker {
      display: none;
    }

    .card-details summary::after {
      content: '+';
      font-size: 1.1rem;
      color: var(--gold);
      margin-left: auto;
      transition: transform .2s ease;
    }

    .card-details[open] summary::after {
      transform: rotate(45deg);
    }

    .card-details .service-bonus,
    .card-details .service-list {
      margin-top: 14px;
    }

    .featured .card-details summary {
      color: var(--gold);
    }

    .service-group.active {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
    }

    .service-group-title {
      grid-column: 1 / -1;
    }

    .service-card {
      display: flex;
      flex-direction: column;
    }

    .service-link {
      margin-top: auto;
    }

    @media (max-width: 900px) {
      .service-group.active {
        grid-template-columns: 1fr;
      }
    }