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

    :root {
      --burgundy: #771016;
      --burgundy-08: rgba(119, 16, 22, 0.08);
      --burgundy-75: rgba(119, 16, 22, 0.75);
      --burgundy-65: rgba(119, 16, 22, 0.65);
      --burgundy-60: rgba(119, 16, 22, 0.60);
      --beige: #EADFD7;
      --beige-light: #F9F6F2;
      --card-gradient: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);

      /* Typography System */
      --font-sans: 'Montserrat', sans-serif;
      --font-serif: 'Playfair Display', serif;
      --font-alt: 'Lora', serif;
      --font: var(--font-alt);

      --fs-h1: clamp(36px, 8vw, 84px);
      --fs-h2: clamp(26px, 5vw, 48px);
      --fs-h3: clamp(20px, 3vw, 26px);
      --fs-body-lg: clamp(16px, 2vw, 18px);
      --fs-body: 18px;
      --fs-small: 14px;
      --fs-label: 12px;

      --lh-tight: 1.1;
      --lh-base: 1.6;
      --lh-relaxed: 1.8;
      --max: 1101px;
      --trans: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Lora', serif;
      background: var(--beige-light);
      color: var(--burgundy);
      font-size: var(--fs-body);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-serif);
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 2000;
    }

    .nav a {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--burgundy);
      font-weight: 600;
      font-family: var(--font-sans);
      font-size: 13px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 10px 18px;
      border-radius: 999px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      border: 1px solid rgba(119, 16, 22, 0.1);
    }

    .nav a:hover {
      background: var(--beige-light);
      transform: translateX(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .nav img {
      width: 20px;
      height: 20px;
    }

    .page {
      max-width: var(--max);
      margin: 0 auto;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      padding: 120px 20px 80px;
      text-align: center;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: -1;
      opacity: 0.3;
    }

    .blob-1 {
      width: 300px;
      height: 300px;
      background: var(--beige);
      top: 10%;
      right: -5%;
    }

    .blob-2 {
      width: 400px;
      height: 400px;
      background: rgba(119, 16, 22, 0.08);
      bottom: 0;
      left: -10%;
    }

    .eyebrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      margin-bottom: 20px;
    }

    .eyebrow span {
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 700;
      font-size: 12px;
      color: var(--burgundy);
    }

    .label-line {
      width: 40px;
      height: 3px;
      background: var(--burgundy);
    }

    .hero h1 {
      font-family: var(--font-serif);
      font-size: var(--fs-h1);
      font-weight: 400;
      line-height: var(--lh-tight);
      margin-bottom: 40px;
    }

    .hero-body {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: var(--fs-body);
      color: var(--burgundy-75);
    }

    /* ─── QUANDO ─── */
    .quando {
      padding: 100px 20px;
      background: #fff;
      text-align: center;
      border-radius: 40px;
      margin: 40px 0;
      border: 1px solid rgba(119, 16, 22, 0.03);
      overflow: hidden;
    }

    .section-title {
      font-family: var(--font-serif);
      font-size: var(--fs-h2);
      margin-bottom: 24px;
    }

    .section-subtitle {
      font-size: var(--fs-body);
      color: var(--burgundy-65);
      max-width: 730px;
      margin: 0 auto 48px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 36px;
    }

    .tag {
      background: var(--card-gradient);
      padding: 10px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid rgba(119, 16, 22, 0.05);
      transition: var(--trans);
    }

    .tag:hover {
      background: #fff;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    /* ─── INDEX ─── */
    .index-section {
      padding: 60px 32px;
    }

    .index-card {
      background: var(--card-gradient);
      border-radius: 32px;
      padding: 60px;
      border: 1px solid rgba(119, 16, 22, 0.05);
      font-family: var(--font-sans);
      transition: var(--trans);
    }

    .index-card:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    }

    .index-card h3 {
      font-family: var(--font-serif);
      font-size: 32px;
      margin-bottom: 32px;
    }

    .index-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .index-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px;
      color: var(--burgundy-75);
      text-decoration: none;
      border-radius: 10px;
      transition: all 0.3s;
    }

    .index-link img {
      width: 16px;
      height: 16px;
    }

    @media (min-width: 1025px) {
      .index-link:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateX(10px);
        color: var(--burgundy);
      }
    }

    /* ─── TREATMENTS ─── */
    .treatment-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 6vw, 80px);
      align-items: start;
      padding: 100px 32px;
      border-bottom: 1px solid rgba(119, 16, 22, 0.05);
      grid-template-areas:
        "header img"
        "body img";
    }

    .treatment-row:last-child {
      border-bottom: none;
    }

    /* Alternating layout for desktop */
    .treatment-row:nth-child(even) {
      grid-template-areas:
        "img header"
        "img body";
    }

    .treatment-header {
      grid-area: header;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .treatment-img {
      grid-area: img;
      width: 100%;
      height: 500px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(119, 16, 22, 0.15);
      background: #fdfaf7;
    }

    .treatment-body {
      grid-area: body;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .treatment-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .treatment-row h3 {
      font-family: var(--font-serif);
      font-size: 32px;
      font-weight: 400;
      color: var(--burgundy);
    }

    .treatment-body p {
      font-size: 17px;
      color: var(--burgundy-75);
      line-height: 1.7;
    }

    .list-block {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .list-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--burgundy);
      margin-bottom: 4px;
    }

    .clean-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .clean-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: var(--burgundy-65);
    }

    .clean-list li::before {
      content: '•';
      color: var(--burgundy);
      font-weight: 700;
    }

    .treatment-note {
      font-size: 15px;
      font-style: italic;
      color: var(--burgundy-60);
      border-left: 3px solid var(--beige);
      padding-left: 20px;
      margin-top: 10px;
    }

    .treatment-subgrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 12px;
      margin-top: 8px;
    }

    .sub-col { background: transparent; padding: 15px 10px; border-radius: 16px; border: 1px solid rgba(119, 16, 22, 0.15); }

    .sub-col-title {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
      color: var(--burgundy);
    }

    .sub-col ul {
      list-style: none;
      font-size: 13px;
      color: var(--burgundy-65);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .sub-col li::before {
      content: '•';
      margin-right: 6px;
      color: var(--burgundy);
    }

    /* ─── SESSION ─── */
    .session {
      padding: 120px 32px;
      background: #fff;
      text-align: center;
      border-radius: 40px;
      margin: 60px 0;
    }

    .steps-list {
      max-width: 600px;
      margin: 48px auto 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .step-item {
      background: var(--card-gradient);
      padding: 20px 24px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      gap: 20px;
      text-align: left;
      transition: var(--trans);
    }

    @media (min-width: 1025px) {
      .step-item:hover {
        transform: translateX(8px);
        background: #fff;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
      }
    }

    .step-num {
      font-family: var(--font-serif);
      font-size: 24px;
      font-weight: 600;
      font-style: italic;
      color: var(--burgundy);
      width: 24px;
      height: auto;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transform: translateY(-3px);
    }

    .step-text {
      font-size: 16px;
      line-height: 26px;
      color: var(--burgundy-75);
      margin: 0;
    }

    /* ─── BOOKING ─── */
    .booking {
      padding: 80px 32px;
    }

    .booking-card {
      background: var(--card-gradient);
      border-radius: 40px;
      padding: 80px;
      text-align: center;
      transition: var(--trans);
      border: 1px solid rgba(119, 16, 22, 0.05);
    }

    .booking-card:hover {
      transform: translateY(-10px);
      background: #fff;
      box-shadow: 0 30px 70px rgba(119, 16, 22, 0.1);
    }

    .booking-card h2 {
      font-family: var(--font-serif);
      font-size: var(--fs-h2);
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .booking-desc {
      font-size: var(--fs-body-lg);
      color: var(--burgundy-75);
      margin-bottom: 40px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #a31d25 0%, #771016 50%, #5e0d11 100%);
      color: #fff;
      padding: 18px 48px;
      border-radius: 999px;
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
      box-shadow:
          0 20px 40px rgba(119, 16, 22, 0.3),
          0 10px 15px rgba(0, 0, 0, 0.1),
          inset 0 1px 0px rgba(255, 255, 255, 0.4),
          inset 0 0 20px rgba(255, 255, 255, 0.05),
          inset 0 -3px 6px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 1;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 100%;
      background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 75%);
      pointer-events: none;
      z-index: 2;
    }
    .btn-primary:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 25px 50px rgba(119, 16, 22, 0.45);
      background: linear-gradient(180deg, #b8212a 0%, #8b131a 50%, #700f14 100%);
    }



    /* Reveal Animations */
    .reveal {
        opacity: 0;
        visibility: hidden;
        transform: translateY(40px);
        transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 1.2s;
        will-change: transform, opacity, visibility;
    }

    .reveal.reveal-left {
        transform: translateX(-40px);
    }

    .reveal.reveal-right {
        transform: translateX(40px);
    }

    .reveal.reveal-top {
        transform: translateY(-40px);
    }

    .reveal.reveal-zoom {
        transform: scale(0.92);
    }

    .reveal.in,
    .reveal.visible {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0) scale(1);
    }

    .d1, .reveal-delay-1 { transition-delay: 0.15s; }
    .d2, .reveal-delay-2 { transition-delay: 0.3s; }
    .d3, .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }
    .reveal-delay-5 { transition-delay: 0.75s; }
    .reveal-delay-6 { transition-delay: 0.9s; }

    @media (max-width: 768px) {
      .hero {
        padding: 100px 20px 60px;
        overflow: hidden;
        text-align: left;
      }

      .blob {
        display: none;
      }

      .hero .eyebrow {
        align-items: flex-start;
      }

      .hero h1 {
        font-size: var(--fs-h1);
        line-height: 1.2;
      }

      .hero-body {
        font-size: var(--fs-body);
        line-height: 1.5;
        margin: 0;
      }

      .quando {
        text-align: left;
        padding: 60px 20px;
        margin: 40px 0;
      }

      .section-title {
        font-size: var(--fs-h2);
        line-height: 1.2;
      }

      .section-subtitle {
        font-size: var(--fs-body);
        line-height: 1.5;
        margin: 0 0 32px;
      }

      .tags {
        flex-direction: column;
        gap: 12px;
      }

      .tag {
        padding: 8px 16px;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
      }

      .index-card {
        padding: 40px 24px;
      }

      .index-card h3 {
        font-size: var(--fs-h3);
      }

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

      .treatment-row,
      .treatment-row:nth-child(even) {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 60px 20px;
        grid-template-areas: none;
      }

      .treatment-header {
        order: 1;
        margin-bottom: 8px;
      }

      .treatment-img {
        order: 2;
        height: 320px;
        width: 100%;
      }

      .treatment-body {
        order: 3;
      }

      .treatment-row h3 {
        font-size: var(--fs-h3);
      }

      .treatment-body p {
        font-size: var(--fs-body);
        line-height: 1.6;
      }

      .treatment-subgrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }
      .sub-col { padding: 12px 8px; border-radius: 12px; }
      .sub-col-title { font-size: 11px; margin-bottom: 6px; }
      .sub-col ul { font-size: 11px; }

      .session {
        padding: 60px 20px;
        margin: 40px 0;
        border-radius: 24px;
        text-align: left;
      }

      .steps-list {
        margin-top: 32px;
      }

      .step-item {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .step-num {
        transform: none;
      }

      .booking {
        padding: 60px 20px;
      }

      .booking-card {
        padding: 40px 20px;
        border-radius: 32px;
      }

      .booking-card h2 {
        font-size: var(--fs-h2);
        line-height: 1.2;
      }

