    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --marsala:   #61344B;
      --pink:      #F6B0CF;
      --blush:     #FFF5FC;
      --white:     #FFFFFF;
      --dark:      #1C0E15;
      --text:      #3D2A34;
      --muted:     #8C6B79;
      --border:    #ECD6E4;
      --serif:     'Cormorant Garamond', Georgia, serif;
      --sans:      'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      font-weight: 300;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── Typography helpers ── */
    .serif { font-family: var(--serif); }

    h1, h2, h3, h4 {
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.15;
      color: var(--dark);
    }

    p { line-height: 1.8; }

    /* ── Layout helpers ── */
    .container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .container--wide {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    section { padding: 100px 0; }

    .divider {
      width: 48px;
      height: 1px;
      background: var(--pink);
      margin: 0 auto 32px;
    }

    .divider--left {
      margin-left: 0;
    }

    /* ── CTA Button ── */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--marsala);
      color: var(--white);
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 18px 40px;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .btn-cta:hover {
      background: #4a2538;
      transform: translateY(-1px);
    }

    .btn-cta svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .btn-cta--outline {
      background: transparent;
      color: var(--marsala);
      border: 1px solid var(--marsala);
    }

    .btn-cta--outline:hover {
      background: var(--marsala);
      color: var(--white);
    }

    /* ── Label tag ── */
    .label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 16px;
    }

    /* ────────────────────────────────────────────
       NAV
    ──────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav__logo img {
      height: 36px;
      width: auto;
    }

    .nav__cta {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--marsala);
      border: 1px solid var(--marsala);
      padding: 10px 22px;
      transition: all 0.25s ease;
    }

    .nav__cta:hover {
      background: var(--marsala);
      color: var(--white);
    }

    /* ────────────────────────────────────────────
       HERO
    ──────────────────────────────────────────── */
    .hero {
      padding-top: 100px;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      background: var(--blush);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(246,176,207,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero__content {
      padding: 80px 64px 80px 80px;
      position: relative;
      z-index: 1;
    }

    .hero__eyebrow {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero__eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--pink);
      flex-shrink: 0;
    }

    .hero__headline {
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 300;
      color: var(--dark);
      margin-bottom: 28px;
      line-height: 1.1;
    }

    .hero__headline em {
      font-style: italic;
      color: var(--marsala);
    }

    .hero__sub {
      font-size: 15px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 48px;
      max-width: 460px;
    }

    .hero__actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .hero__disclaimer {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    .hero__image {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .hero__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .hero__image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--blush) 0%, transparent 20%);
    }

    /* ────────────────────────────────────────────
       INTERRUPT (faixa entre hero e dor)
    ──────────────────────────────────────────── */
    .interrupt {
      background: var(--marsala);
      padding: 56px 0;
      text-align: center;
    }

    .interrupt__text {
      font-family: var(--serif);
      font-size: clamp(20px, 3vw, 32px);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.5;
      padding: 0 24px;
    }

    .interrupt__text strong {
      font-style: normal;
      font-weight: 500;
    }

    /* ────────────────────────────────────────────
       DOR
    ──────────────────────────────────────────── */
    .pain {
      background: var(--white);
      text-align: center;
    }

    .pain__title {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 300;
      margin-bottom: 20px;
    }

    .pain__title em { color: var(--marsala); }

    .pain__intro {
      font-size: 15px;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 64px;
    }

    .pain__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2px;
      margin-bottom: 64px;
      text-align: left;
    }

    .pain__item {
      background: var(--blush);
      padding: 40px 36px;
      border-left: 2px solid transparent;
      transition: border-color 0.3s ease;
    }

    .pain__item:hover {
      border-left-color: var(--pink);
    }

    .pain__item-num {
      font-family: var(--serif);
      font-size: 48px;
      font-weight: 300;
      color: var(--border);
      line-height: 1;
      margin-bottom: 16px;
    }

    .pain__item-text {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text);
    }

    .pain__item-text strong {
      font-weight: 500;
      color: var(--dark);
    }

    .pain__close {
      font-family: var(--serif);
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 400;
      font-style: italic;
      color: var(--marsala);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ────────────────────────────────────────────
       AUTORIDADE
    ──────────────────────────────────────────── */
    .authority {
      background: var(--white);
    }

    .authority__inner {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 80px;
      align-items: center;
    }

    .authority__photo {
      position: relative;
    }

    .authority__photo img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
    }

    .authority__photo-frame {
      position: absolute;
      top: 24px; left: 24px; right: -24px; bottom: -24px;
      border: 1px solid var(--border);
      z-index: -1;
    }

    .authority__crp {
      position: absolute;
      bottom: -16px; right: -16px;
      background: var(--marsala);
      color: var(--white);
      padding: 16px 24px;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .authority__content { }

    .authority__name {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      margin-bottom: 8px;
    }

    .authority__title {
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 36px;
    }

    .authority__bio {
      font-size: 15px;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 40px;
    }

    .authority__bio p + p { margin-top: 20px; }

    .authority__stats {
      display: flex;
      gap: 40px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }

    .authority__stat-num {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 300;
      color: var(--marsala);
      line-height: 1;
      margin-bottom: 6px;
    }

    .authority__stat-label {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ────────────────────────────────────────────
       MÉTODO
    ──────────────────────────────────────────── */
    .method {
      background: var(--dark);
      color: var(--white);
    }

    .method .divider { background: rgba(246,176,207,0.4); }

    .method__header {
      text-align: center;
      margin-bottom: 80px;
    }

    .method__label {
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--pink);
      display: block;
      margin-bottom: 20px;
    }

    .method__title {
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 20px;
    }

    .method__title em { color: var(--pink); font-style: italic; }

    .method__subtitle {
      font-size: 15px;
      color: rgba(255,255,255,0.5);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .method__name-block {
      text-align: center;
      margin-bottom: 80px;
      padding: 48px;
      border: 1px solid rgba(246,176,207,0.2);
      position: relative;
    }

    .method__name-block::before {
      content: 'Mecanismo Único';
      position: absolute;
      top: -8px; left: 50%;
      transform: translateX(-50%);
      background: var(--dark);
      padding: 0 16px;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--pink);
    }

    .method__name {
      font-family: var(--serif);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 300;
      color: var(--white);
      letter-spacing: 0.05em;
    }

    .method__name sup {
      font-size: 16px;
      color: var(--pink);
    }

    .method__name-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      margin-top: 12px;
      letter-spacing: 0.08em;
    }

    .method__phases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-bottom: 64px;
    }

    .method__phase {
      background: rgba(255,255,255,0.04);
      padding: 48px 36px;
      border-top: 2px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }

    .method__phase:hover {
      background: rgba(255,255,255,0.07);
      border-top-color: var(--pink);
    }

    .method__phase-num {
      font-family: var(--serif);
      font-size: 60px;
      font-weight: 300;
      color: rgba(246,176,207,0.2);
      line-height: 1;
      margin-bottom: 24px;
    }

    .method__phase-name {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      color: var(--pink);
      margin-bottom: 16px;
    }

    .method__phase-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
    }

    .method__note {
      text-align: center;
      font-family: var(--serif);
      font-size: clamp(18px, 2.5vw, 26px);
      font-style: italic;
      color: rgba(255,255,255,0.35);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .method__note strong {
      color: var(--white);
      font-style: normal;
      font-weight: 400;
    }

    /* ────────────────────────────────────────────
       TRANSFORMAÇÃO
    ──────────────────────────────────────────── */
    .transformation {
      background: var(--blush);
      text-align: center;
    }

    .transformation__title {
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 300;
      margin-bottom: 16px;
    }

    .transformation__title em { color: var(--marsala); }

    .transformation__sub {
      font-size: 15px;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 72px;
      line-height: 1.8;
    }

    .transformation__columns {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      align-items: start;
      max-width: 860px;
      margin: 0 auto 72px;
      text-align: left;
    }

    .transformation__col { }

    .transformation__col-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .transformation__col-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .transformation__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .transformation__list li {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .transformation__list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--border);
      flex-shrink: 0;
      margin-top: 7px;
    }

    .transformation__col--after .transformation__list li::before {
      background: var(--marsala);
    }

    .transformation__col--after .transformation__list li {
      color: var(--dark);
      font-weight: 400;
    }

    .transformation__arrow {
      padding: 0 32px;
      display: flex;
      align-items: center;
      padding-top: 52px;
      color: var(--pink);
    }

    /* ────────────────────────────────────────────
       DEPOIMENTOS
    ──────────────────────────────────────────── */
    .testimonials {
      background: var(--white);
      text-align: center;
    }

    .testimonials__title {
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 300;
      margin-bottom: 16px;
    }

    .testimonials__sub {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 64px;
    }

    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      text-align: left;
    }

    .testimonial {
      border: 1px solid var(--border);
      padding: 36px 32px;
      position: relative;
      transition: border-color 0.3s;
    }

    .testimonial:hover { border-color: var(--pink); }

    .testimonial__quote {
      font-family: var(--serif);
      font-size: 60px;
      color: var(--blush);
      line-height: 0.6;
      margin-bottom: 20px;
      display: block;
    }

    .testimonial__text {
      font-size: 14px;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial__author {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .testimonial__whatsapp-note {
      font-size: 10px;
      color: var(--border);
      margin-top: 6px;
      letter-spacing: 0.05em;
    }

    /* ────────────────────────────────────────────
       FAQ
    ──────────────────────────────────────────── */
    .faq {
      background: var(--blush);
    }

    .faq__header {
      text-align: center;
      margin-bottom: 56px;
    }

    .faq__title {
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 300;
    }

    .faq__list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .faq__item {
      background: var(--white);
      overflow: hidden;
    }

    .faq__question {
      width: 100%;
      background: none;
      border: none;
      padding: 28px 32px;
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 400;
      color: var(--dark);
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
    }

    .faq__question:hover { color: var(--marsala); }

    .faq__question span {
      font-family: var(--sans);
      font-size: 18px;
      font-weight: 300;
      color: var(--pink);
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .faq__item.open .faq__question span {
      transform: rotate(45deg);
    }

    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq__item.open .faq__answer {
      max-height: 400px;
    }

    .faq__answer-inner {
      padding: 0 32px 28px;
      font-size: 14px;
      line-height: 1.9;
      color: var(--muted);
      border-top: 1px solid var(--border);
      padding-top: 20px;
    }

    /* ────────────────────────────────────────────
       CTA FINAL
    ──────────────────────────────────────────── */
    .cta-final {
      background: var(--marsala);
      text-align: center;
      padding: 120px 0;
    }

    .cta-final__eyebrow {
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 24px;
      display: block;
    }

    .cta-final__title {
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 24px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-final__title em {
      font-style: italic;
      color: var(--pink);
    }

    .cta-final__sub {
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      max-width: 500px;
      margin: 0 auto 52px;
      line-height: 1.8;
    }

    .cta-final .btn-cta {
      background: var(--white);
      color: var(--marsala);
      font-size: 12px;
      padding: 20px 48px;
    }

    .cta-final .btn-cta:hover {
      background: var(--blush);
    }

    .cta-final__disclaimer {
      margin-top: 24px;
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.05em;
    }

    /* ────────────────────────────────────────────
       FOOTER
    ──────────────────────────────────────────── */
    .footer {
      background: var(--dark);
      padding: 48px 0;
      text-align: center;
    }

    .footer__logo img {
      height: 32px;
      margin: 0 auto 20px;
      opacity: 0.7;
    }

    .footer__crp {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      margin-bottom: 8px;
    }

    .footer__legal {
      font-size: 11px;
      color: rgba(255,255,255,0.15);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ────────────────────────────────────────────
       FLOATING WHATSAPP
    ──────────────────────────────────────────── */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 200;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.35);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 32px rgba(37,211,102,0.45);
    }

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

    /* ────────────────────────────────────────────
       RESPONSIVE
    ──────────────────────────────────────────── */
    @media (max-width: 960px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero__content {
        padding: 60px 32px;
        order: 2;
      }
      .hero__image {
        height: 55vw;
        order: 1;
      }
      .hero__image-overlay {
        background: linear-gradient(to bottom, transparent 60%, var(--blush));
      }
      .authority__inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .authority__photo {
        max-width: 340px;
        margin: 0 auto;
      }
      .method__phases {
        grid-template-columns: 1fr;
      }
      .transformation__columns {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .transformation__arrow { display: none; }
    }

    @media (max-width: 640px) {
      section { padding: 72px 0; }
      .hero__content { padding: 48px 24px; }
      .authority__stats { flex-wrap: wrap; gap: 24px; }
      .method__name-block { padding: 36px 24px; }
      .nav__cta { display: none; }
    }