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

    :root {
      --ink:       #0b0b09;
      --ink-2:     #131310;
      --ink-3:     #1b1b16;
      --ink-4:     #232320;
      --ink-5:     #2d2d28;
      --cream:     #f0e8d5;
      --cream-dim: #b8ad98;
      --cream-pale:#d4c9b4;
      --gold:      #c4a35a;
      --gold-hi:   #dfc080;
      --gold-lo:   #7a6335;
      --gold-faint:rgba(196,163,90,0.08);
      --white:     #f8f4ec;
      --F: 'Cormorant Garamond', Georgia, serif;
      --S: 'DM Sans', system-ui, sans-serif;
      --M: 'DM Mono', monospace;
      --ease: cubic-bezier(0.23, 1, 0.32, 1);
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      background: var(--ink);
      color: var(--cream);
      font-family: var(--S);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── GRAIN ── */
    body::after {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.028;
      pointer-events: none;
      z-index: 9990;
    }

    /* ── SCROLL PROGRESS ── */
    #progress {
      position: fixed; top: 0; left: 0;
      height: 2px; width: 0%;
      background: linear-gradient(to right, var(--gold-lo), var(--gold), var(--gold-hi));
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ── CURSOR ── */
    #cur, #cur-ring {
      position: fixed; border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%);
    }
    #cur {
      width: 6px; height: 6px;
      background: var(--gold);
    }
    #cur-ring {
      width: 28px; height: 28px;
      border: 1px solid rgba(196,163,90,0.45);
      transition: transform 0.22s var(--ease), border-color 0.2s;
    }
    body.link-hover #cur-ring {
      transform: translate(-50%,-50%) scale(1.9);
      border-color: rgba(196,163,90,0.75);
    }
    @media (pointer: coarse) { #cur, #cur-ring { display: none; } }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 0 56px;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, border-color 0.4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(11,11,9,0.96);
      backdrop-filter: blur(14px);
      border-color: rgba(196,163,90,0.12);
    }

    .nav-logo img {
      height: 34px;
      mix-blend-mode: screen;
      filter: brightness(1.15);
      display: block;
    }

    .nav-links {
      display: flex; gap: 36px; list-style: none;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.7rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--cream-dim);
      text-decoration: none; transition: color 0.25s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-size: 0.68rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--ink);
      background: var(--gold); padding: 9px 22px;
      text-decoration: none; font-weight: 500;
      transition: background 0.25s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--gold-hi); }

    /* Hamburger */
    .nav-hamburger {
      display: none; flex-direction: column;
      gap: 5px; cursor: pointer; padding: 4px;
      background: none; border: none;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 1px;
      background: var(--cream-dim); transition: all 0.3s;
    }

    /* Mobile drawer */
    .nav-drawer {
      position: fixed; inset: 0;
      background: rgba(11,11,9,0.98);
      z-index: 400;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 40px;
      transform: translateX(100%);
      transition: transform 0.4s var(--ease);
    }
    .nav-drawer.open { transform: translateX(0); }
    .nav-drawer a {
      font-family: var(--F); font-size: 2rem; font-weight: 300;
      color: var(--cream); text-decoration: none;
      transition: color 0.25s;
    }
    .nav-drawer a:hover { color: var(--gold); }
    .nav-drawer-close {
      position: absolute; top: 24px; right: 32px;
      background: none; border: none; color: var(--cream-dim);
      font-size: 1.5rem; cursor: pointer;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100svh;
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative; overflow: hidden;
    }

    /* Arcos decorativos no hero */
    .hero-arcs {
      position: absolute; inset: 0; z-index: 0; overflow: hidden;
      pointer-events: none;
    }
    .hero-arcs svg {
      position: absolute; right: -5%; top: -10%;
      width: 55%; height: 120%; opacity: 0.04;
    }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 56px 80px 80px;
      position: relative; z-index: 2;
    }

    .hero-eyebrow {
      font-family: var(--M); font-size: 0.65rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 28px;
      display: flex; align-items: center; gap: 14px;
      opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
    }
    .hero-eyebrow::before {
      content: ''; display: block;
      width: 32px; height: 1px; background: var(--gold);
    }

    .hero-title {
      font-family: var(--F); font-size: clamp(3rem, 5.2vw, 5.8rem);
      line-height: 1.03; font-weight: 300; color: var(--white);
      margin-bottom: 20px;
      opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
    }
    .hero-title em { font-style: italic; color: var(--gold-hi); }

    .hero-tagline {
      font-family: var(--F); font-size: clamp(1.1rem, 1.8vw, 1.55rem);
      font-weight: 300; font-style: italic; color: var(--cream-dim);
      margin-bottom: 44px;
      opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
    }

    .hero-divider {
      width: 60px; height: 1px; background: var(--gold-lo);
      margin-bottom: 32px;
      opacity: 0; animation: fadeIn 0.8s 0.9s forwards;
    }

    .hero-quote {
      font-family: var(--F); font-size: 1rem; font-style: italic;
      color: var(--cream-pale); line-height: 1.65; margin-bottom: 52px;
      border-left: 1px solid var(--gold);
      padding-left: 20px;
      opacity: 0; animation: fadeUp 0.8s 1s forwards;
    }
    .hero-quote cite {
      display: block; font-size: 0.65rem; font-style: normal;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-top: 10px;
    }

    .hero-actions {
      display: flex; gap: 20px; align-items: center;
      flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
    }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--ink);
      padding: 13px 32px; font-size: 0.72rem;
      letter-spacing: 0.18em; text-transform: uppercase;
      text-decoration: none; font-weight: 500;
      transition: background 0.25s, transform 0.2s;
      position: relative; overflow: hidden;
    }
    .btn-gold:hover { background: var(--gold-hi); }
    .btn-gold:active { transform: scale(0.98); }

    .btn-line {
      display: inline-flex; align-items: center; gap: 12px;
      color: var(--cream-dim); text-decoration: none;
      font-size: 0.7rem; letter-spacing: 0.18em;
      text-transform: uppercase; transition: color 0.25s;
    }
    .btn-line::before {
      content: ''; width: 36px; height: 1px;
      background: currentColor; transition: width 0.3s var(--ease);
    }
    .btn-line:hover { color: var(--gold); }
    .btn-line:hover::before { width: 52px; }

    .hero-right {
      position: relative; overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
    .hero-right-inner {
      position: absolute; inset: 0;
      opacity: 0; animation: fadeIn 1.2s 0.5s forwards;
    }

    /* Foto do Dr. Marco no hero */
    .hero-photo {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: 60% 28%;
      filter: grayscale(8%) contrast(1.04) brightness(0.96);
    }

    .hero-gradient-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(110deg, var(--ink) 0%, transparent 32%),
        linear-gradient(to top, var(--ink) 0%, transparent 28%);
    }

    .hero-badge {
      position: absolute; bottom: 52px; right: 40px;
      background: var(--ink-3); border: 1px solid var(--gold-lo);
      padding: 20px 24px; min-width: 180px; z-index: 3;
      opacity: 0; animation: fadeUp 0.8s 1.5s forwards;
    }
    .hero-badge-num {
      font-family: var(--F); font-size: 2.6rem; font-weight: 300;
      color: var(--gold); line-height: 1;
    }
    .hero-badge-txt {
      font-size: 0.62rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--cream-dim); margin-top: 4px;
    }

    .hero-scroll {
      position: absolute; bottom: 36px; left: 56%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--cream-dim); font-size: 0.58rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      opacity: 0; animation: fadeIn 1s 2s forwards; z-index: 3;
    }
    .scroll-bar {
      width: 1px; height: 56px;
      background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
      animation: scrollPulse 2.2s ease-in-out infinite;
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--gold); padding: 13px 0;
      overflow: hidden; position: relative;
    }
    .ticker-track {
      display: flex; gap: 0; white-space: nowrap;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      display: inline-flex; align-items: center; gap: 0;
      font-size: 0.65rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--ink);
      font-weight: 500; padding: 0 40px;
    }
    .ticker-sep {
      display: inline-block;
      width: 4px; height: 4px; border-radius: 50%;
      background: rgba(11,11,9,0.3);
      margin-left: 40px;
    }

    /* ── SECTION COMMONS ── */
    .sec-label {
      font-family: var(--M); font-size: 0.62rem;
      letter-spacing: 0.32em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
      display: flex; align-items: center; gap: 12px;
    }
    .sec-label::before {
      content: ''; width: 24px; height: 1px; background: var(--gold);
    }

    /* ── ABOUT ── */
    .about {
      padding: 140px 80px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 96px; align-items: center;
      position: relative; overflow: hidden;
    }
    /* Marca d'água logo na seção about */
    .about::before {
      content: '';
      position: absolute; right: 0; top: 50%;
      transform: translateY(-50%);
      width: 45%; height: 90%;
      background: url('logo-vertical-gelo.png') center/contain no-repeat;
      mix-blend-mode: screen;
      opacity: 0.07;
      pointer-events: none;
    }

    .about-frame {
      position: relative; max-width: 400px;
    }
    .about-photo {
      width: 100%; aspect-ratio: 3/4;
      border: 1px solid var(--ink-5);
      position: relative; overflow: hidden;
    }
    .about-photo-img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: 58% 22%;
      filter: grayscale(10%) contrast(1.05);
      transition: transform 0.8s var(--ease), filter 0.6s;
    }
    .about-frame:hover .about-photo-img {
      transform: scale(1.04);
      filter: grayscale(0%) contrast(1.05);
    }
    /* Borda offset */
    .about-frame::before {
      content: '';
      position: absolute; inset: -14px -14px 14px 14px;
      border: 1px solid var(--gold-lo); z-index: -1;
    }
    .about-crm {
      position: absolute; bottom: -22px; right: -22px;
      background: var(--ink-3); border: 1px solid var(--gold-lo);
      padding: 18px 22px;
    }
    .about-crm-label {
      font-family: var(--M); font-size: 0.58rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }
    .about-crm-line {
      font-size: 0.7rem; color: var(--cream-dim);
      line-height: 1.9;
    }

    .about-title {
      font-family: var(--F); font-size: clamp(2.2rem, 3.2vw, 3.4rem);
      font-weight: 300; line-height: 1.12; color: var(--white);
      margin-bottom: 24px;
    }
    .about-title em { font-style: italic; color: var(--gold-hi); }

    .about-body {
      font-size: 0.95rem; color: var(--cream-dim);
      line-height: 1.85; margin-bottom: 20px;
    }
    .about-pull {
      font-family: var(--F); font-size: 1.2rem; font-style: italic;
      color: var(--cream-pale); border-left: 2px solid var(--gold);
      padding-left: 22px; margin: 32px 0; line-height: 1.6;
    }

    .cred-row {
      display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
    }
    .cred-chip {
      background: var(--ink-3); border: 1px solid var(--ink-5);
      padding: 12px 16px;
    }
    .cred-chip-val {
      font-family: var(--M); font-size: 0.68rem; color: var(--gold);
      display: block;
    }
    .cred-chip-key {
      font-size: 0.62rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--cream-dim); margin-top: 3px;
    }

    /* ── SERVICES ── */
    .services {
      padding: 120px 80px;
      background: var(--ink-2);
      position: relative;
    }
    /* Arcos decorativos no canto */
    .services::after {
      content: '';
      position: absolute; top: -60px; right: -80px;
      width: 400px; height: 400px;
      background: url('logo-horizontal-gelo.png') center/contain no-repeat;
      mix-blend-mode: screen; opacity: 0.05;
      transform: rotate(-20deg) scale(1.5);
      pointer-events: none;
    }

    .services-head {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 64px; gap: 40px;
    }
    .services-title {
      font-family: var(--F); font-size: clamp(2.2rem, 3.5vw, 3.8rem);
      font-weight: 300; line-height: 1.08; color: var(--white);
    }
    .services-title em { font-style: italic; color: var(--gold-hi); }
    .services-intro {
      max-width: 300px; font-size: 0.88rem;
      color: var(--cream-dim); line-height: 1.75;
    }

    .services-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .svc {
      background: var(--ink-3); padding: 32px 24px 28px;
      position: relative; overflow: hidden;
      transition: background 0.3s var(--ease);
      cursor: default;
    }
    .svc::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s var(--ease);
    }
    .svc:hover { background: var(--ink-4); }
    .svc:hover::after { transform: scaleX(1); }

    .svc-n {
      font-family: var(--M); font-size: 0.58rem;
      letter-spacing: 0.2em; color: var(--gold-lo); margin-bottom: 22px;
    }
    .svc-icon {
      width: 36px; height: 36px; margin-bottom: 18px;
      color: var(--gold);
    }
    .svc-name {
      font-family: var(--F); font-size: 1.35rem; font-weight: 400;
      color: var(--white); margin-bottom: 12px; line-height: 1.2;
    }
    .svc-desc {
      font-size: 0.8rem; color: var(--cream-dim); line-height: 1.7;
    }
    .svc-arrow {
      position: absolute; bottom: 24px; right: 22px;
      color: var(--gold); font-size: 1rem; opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
    }
    .svc:hover .svc-arrow { opacity: 1; transform: translate(3px,-3px); }

    /* ── METHOD ── */
    .method {
      padding: 140px 80px;
      position: relative; overflow: hidden;
    }
    .method-glow {
      position: absolute; right: 10%; top: 50%;
      transform: translateY(-50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(196,163,90,0.05), transparent 70%);
      pointer-events: none;
    }

    .method-head { text-align: center; margin-bottom: 88px; }
    .method-title {
      font-family: var(--F); font-size: clamp(2.4rem, 4vw, 4.4rem);
      font-weight: 300; color: var(--white); line-height: 1.08;
      margin-bottom: 18px;
    }
    .method-title em { font-style: italic; color: var(--gold-hi); }
    .method-sub {
      font-size: 0.95rem; color: var(--cream-dim);
      max-width: 500px; margin: 0 auto;
    }

    .method-steps {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      position: relative;
    }
    /* Linha conectora */
    .method-steps::before {
      content: '';
      position: absolute; top: 68px; left: calc(16.66% + 1px);
      right: calc(16.66% + 1px); height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-lo) 30%, var(--gold-lo) 70%, transparent);
      z-index: 0;
    }

    .step {
      background: var(--ink-2); padding: 52px 36px;
      text-align: center; position: relative; z-index: 1;
      transition: transform 0.4s var(--ease), background 0.3s;
    }
    .step:hover { transform: translateY(-10px); background: var(--ink-3); }

    .step-ring {
      width: 52px; height: 52px; border-radius: 50%;
      border: 1px solid var(--gold-lo);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; font-family: var(--F);
      font-size: 1.25rem; font-weight: 300; color: var(--gold);
      transition: border-color 0.3s, background 0.3s;
    }
    .step:hover .step-ring {
      border-color: var(--gold);
      background: rgba(196,163,90,0.06);
    }
    .step-tag {
      font-family: var(--M); font-size: 0.6rem;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 14px;
    }
    .step-title {
      font-family: var(--F); font-size: 1.55rem; font-weight: 400;
      color: var(--white); margin-bottom: 14px; line-height: 1.2;
    }
    .step-desc {
      font-size: 0.85rem; color: var(--cream-dim); line-height: 1.75;
    }

    /* ── APPROACH (split com foto) ── */
    .approach {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: stretch;
      position: relative;
      background: var(--ink);
      border-top: 1px solid var(--ink-4);
    }
    .approach-content {
      padding: 110px 80px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .approach-title {
      font-family: var(--F); font-size: clamp(2.2rem, 3.4vw, 3.6rem);
      font-weight: 300; line-height: 1.1; color: var(--white);
      margin-bottom: 26px;
    }
    .approach-title em { font-style: italic; color: var(--gold-hi); }
    .approach-body {
      font-size: 0.95rem; color: var(--cream-dim);
      line-height: 1.85; margin-bottom: 36px;
    }
    .approach-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
    .approach-list li {
      display: flex; gap: 16px; align-items: flex-start;
      font-size: 0.9rem; color: var(--cream-pale); line-height: 1.6;
    }
    .approach-list li::before {
      content: ''; flex-shrink: 0; margin-top: 9px;
      width: 22px; height: 1px; background: var(--gold);
    }
    .approach-list strong { color: var(--white); font-weight: 500; }
    .approach-media {
      position: relative; overflow: hidden;
      min-height: 560px;
    }
    .approach-media img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: 35% center;
      filter: grayscale(8%) contrast(1.04);
      transition: transform 1s var(--ease);
    }
    .approach:hover .approach-media img { transform: scale(1.05); }
    .approach-media::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, var(--ink) 0%, transparent 22%);
    }
    .approach-tag {
      position: absolute; bottom: 32px; left: 32px; z-index: 2;
      background: var(--ink-3); border: 1px solid var(--gold-lo);
      padding: 14px 20px;
    }
    .approach-tag-t {
      font-family: var(--M); font-size: 0.58rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
    }
    .approach-tag-s {
      font-size: 0.78rem; color: var(--cream-dim); margin-top: 4px;
    }

    /* ── STATS ── */
    .stats {
      background: var(--gold);
      display: grid; grid-template-columns: repeat(4,1fr);
      padding: 72px 80px; gap: 32px;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: var(--F); font-size: 3.8rem; font-weight: 300;
      color: var(--ink); line-height: 1;
    }
    .stat-unit { font-size: 1.8rem; font-weight: 300; }
    .stat-lbl {
      font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(11,11,9,0.6); margin-top: 8px;
    }

    /* ── DEPOIMENTOS ── */
    .testimonies {
      padding: 120px 80px;
      background: var(--ink-2);
    }
    .test-head { margin-bottom: 60px; }
    .test-title {
      font-family: var(--F); font-size: clamp(2rem, 3vw, 3.2rem);
      font-weight: 300; color: var(--white);
    }
    .test-title em { font-style: italic; color: var(--gold-hi); }

    .test-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
    }
    .test-card {
      background: var(--ink-3); padding: 38px 32px; position: relative;
    }
    .test-q {
      font-family: var(--F); font-size: 3.5rem; line-height: 1;
      color: var(--gold-lo); margin-bottom: 18px; user-select: none;
    }
    .test-body {
      font-family: var(--F); font-size: 1.05rem; font-style: italic;
      color: var(--cream-pale); line-height: 1.7; margin-bottom: 26px;
    }
    .test-author {
      font-size: 0.68rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
    }
    .test-detail {
      font-size: 0.75rem; color: var(--cream-dim); margin-top: 3px;
    }
    /* Linha de destaque esquerda */
    .test-card::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 2px; background: var(--gold);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform 0.4s var(--ease);
    }
    .test-card:hover::before { transform: scaleY(1); }

    /* ── REELS / INSTAGRAM ── */
    .reels {
      padding: 120px 80px;
      background: var(--ink-2);
      position: relative;
      border-top: 1px solid var(--ink-4);
    }
    .reels-head { text-align: center; margin-bottom: 60px; }
    .reels-title {
      font-family: var(--F); font-size: clamp(2rem, 3.2vw, 3.4rem);
      font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 16px;
    }
    .reels-title em { font-style: italic; color: var(--gold-hi); }
    .reels-sub {
      font-size: 0.95rem; color: var(--cream-dim);
      max-width: 480px; margin: 0 auto;
    }
    .reels-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 340px));
      gap: 24px; justify-content: center;
      align-items: start;
    }
    .reel-card {
      background: var(--ink-3);
      border: 1px solid var(--gold-lo);
      padding: 14px;
      transition: border-color 0.3s, transform 0.4s var(--ease);
    }
    .reel-card:hover { border-color: var(--gold); transform: translateY(-6px); }
    /* Garante que o embed do Instagram fique responsivo dentro da moldura */
    .reel-card .instagram-media {
      min-width: 0 !important;
      width: 100% !important;
      margin: 0 !important;
      border-radius: 2px;
      overflow: hidden;
    }
    .reels-cta { text-align: center; margin-top: 48px; }

    /* ── LOCATIONS ── */
    .locations { padding: 120px 80px; }
    .loc-head { margin-bottom: 60px; }
    .loc-title {
      font-family: var(--F); font-size: clamp(2rem, 3vw, 3.2rem);
      font-weight: 300; color: var(--white);
    }
    .loc-title em { font-style: italic; color: var(--gold-hi); }

    .loc-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    }
    .loc-card {
      background: var(--ink-2); padding: 48px 44px;
      position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .loc-card:hover { background: var(--ink-3); }
    .loc-card::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--gold);
    }

    /* Logo como marca d'água no card */
    .loc-card::after {
      content: '';
      position: absolute; bottom: -20px; right: -20px;
      width: 120px; height: 120px;
      background: url('logo-vertical.png') center/contain no-repeat;
      mix-blend-mode: screen; opacity: 0.08;
      pointer-events: none;
    }

    .loc-tag {
      font-family: var(--M); font-size: 0.6rem;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
    }
    .loc-city {
      font-family: var(--F); font-size: 1.9rem; font-weight: 300;
      color: var(--white); margin-bottom: 6px;
    }
    .loc-clinic {
      font-size: 0.82rem; color: var(--cream-dim); margin-bottom: 24px;
    }
    .loc-addr {
      font-size: 0.82rem; color: var(--cream-dim);
      line-height: 1.85; margin-bottom: 24px;
    }
    .loc-crm {
      font-family: var(--M); font-size: 0.68rem;
      color: var(--gold-lo); letter-spacing: 0.08em;
    }

    /* ── CTA ── */
    .cta {
      padding: 160px 80px; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 70% at 50% 50%,
        rgba(196,163,90,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    /* Logo grande como fundo */
    .cta-logo-bg {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
    }
    .cta-logo-bg img {
      width: 55%; max-width: 600px;
      mix-blend-mode: screen;
      opacity: 0.06;
      filter: brightness(1.2);
    }

    .cta-label { justify-content: center; margin-bottom: 24px; }
    .cta-title {
      font-family: var(--F); font-size: clamp(2.8rem, 5vw, 6rem);
      font-weight: 300; color: var(--white); line-height: 1.04;
      margin-bottom: 22px; position: relative; z-index: 1;
    }
    .cta-title em { font-style: italic; color: var(--gold-hi); }
    .cta-sub {
      font-size: 1rem; color: var(--cream-dim);
      max-width: 480px; margin: 0 auto 52px;
      position: relative; z-index: 1;
    }
    .cta-actions {
      display: flex; gap: 24px; justify-content: center;
      align-items: center; flex-wrap: wrap;
      position: relative; z-index: 1;
    }
    .cta-phone {
      font-family: var(--F); font-size: 1.25rem;
      font-weight: 300; color: var(--cream-dim);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink-2);
      border-top: 1px solid var(--ink-5);
      padding: 52px 80px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
    }
    .footer-logo img {
      height: 30px; mix-blend-mode: screen;
      filter: brightness(1.1);
    }
    .footer-copy {
      font-size: 0.68rem; color: var(--cream-dim);
      letter-spacing: 0.05em; text-align: center;
    }
    .footer-links {
      display: flex; gap: 28px; list-style: none;
    }
    .footer-links a {
      font-size: 0.67rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--cream-dim);
      text-decoration: none; transition: color 0.25s;
    }
    .footer-links a:hover { color: var(--gold); }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 400;
      display: flex; align-items: center; gap: 10px;
      background: var(--ink-3); border: 1px solid var(--gold-lo);
      padding: 12px 18px; text-decoration: none;
      color: var(--cream); font-size: 0.7rem;
      letter-spacing: 0.1em; transition: all 0.3s;
      opacity: 0; animation: fadeUp 0.7s 2.2s forwards;
    }
    .wa-float:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
    .wa-float svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ── REVEAL ── */
    .r {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .r.v { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }
    .d4 { transition-delay: 0.32s; }
    .d5 { transition-delay: 0.40s; }
    .d6 { transition-delay: 0.48s; }
    .d7 { transition-delay: 0.56s; }
    .d8 { transition-delay: 0.64s; }

    /* ── KEYFRAMES ── */
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(20px); }
      to   { opacity:1; transform:none; }
    }
    @keyframes fadeIn {
      from { opacity:0; } to { opacity:1; }
    }
    @keyframes ticker {
      from { transform:translateX(0); }
      to   { transform:translateX(-50%); }
    }
    @keyframes scrollPulse {
      0%,100% { opacity:1; }
      50%      { opacity:0.25; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      nav { padding: 0 32px; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 120px 32px 80px; }
      .hero-right { display: none; }
      .about { grid-template-columns: 1fr; padding: 80px 40px; gap: 72px; }
      .about::before { opacity: 0.04; }
      .services { padding: 80px 40px; }
      .services-head { flex-direction: column; align-items: flex-start; gap: 20px; }
      .services-grid { grid-template-columns: repeat(2,1fr); }
      .method { padding: 80px 40px; }
      .method-steps { grid-template-columns: 1fr; }
      .method-steps::before { display: none; }
      .approach { grid-template-columns: 1fr; }
      .approach-content { padding: 64px 40px; order: 2; }
      .approach-media { min-height: 420px; order: 1; }
      .approach-media::after { background: linear-gradient(0deg, var(--ink) 0%, transparent 30%); }
      .stats { grid-template-columns: repeat(2,1fr); padding: 56px 40px; }
      .testimonies { padding: 80px 40px; }
      .test-grid { grid-template-columns: 1fr; }
      .reels { padding: 80px 40px; }
      .reels-grid { grid-template-columns: minmax(0, 360px); gap: 24px; }
      .locations { padding: 80px 40px; }
      .loc-grid { grid-template-columns: 1fr; }
      .cta { padding: 100px 40px; }
      footer { flex-direction: column; padding: 40px; text-align: center; }
      .footer-links { justify-content: center; flex-wrap: wrap; gap: 20px; }
    }
    @media (max-width: 640px) {
      .hero-left { padding: 110px 24px 60px; }
      .services { padding: 60px 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .stats { padding: 40px 24px; gap: 20px; }
      .approach-content { padding: 48px 24px; }
      .approach-media { min-height: 320px; }
      .about { padding: 60px 24px; }
      .method { padding: 60px 24px; }
      .testimonies { padding: 60px 24px; }
      .locations { padding: 60px 24px; }
      .cta { padding: 80px 24px; }
      footer { padding: 32px 24px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }
/* ============================================================
   SUBPÁGINAS — Especialidades
   ============================================================ */
a.svc { display: block; text-decoration: none; color: inherit; cursor: pointer; }

.subhero {
  padding: 150px 80px 90px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 72px; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--ink-4);
}
.subhero-glow {
  position: absolute; right: 5%; top: 40%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,163,90,0.06), transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--M); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream-dim); margin-bottom: 30px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold-hi); }
.breadcrumb span { color: var(--gold-lo); }
.subhero-icon { width: 54px; height: 54px; color: var(--gold); margin-bottom: 26px; }
.subhero-title {
  font-family: var(--F); font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 22px;
}
.subhero-title em { font-style: italic; color: var(--gold-hi); }
.subhero-lead {
  font-size: 1.05rem; color: var(--cream-dim); line-height: 1.8;
  margin-bottom: 40px; max-width: 540px;
}
.subhero-media { position: relative; }
.subhero-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  object-position: 58% 22%; filter: grayscale(10%) contrast(1.04);
  border: 1px solid var(--ink-5);
}
.subhero-media::before {
  content: ''; position: absolute; inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold-lo); z-index: -1;
}

.page-section { padding: 100px 80px; position: relative; }
.page-section.alt { background: var(--ink-2); border-top: 1px solid var(--ink-4); border-bottom: 1px solid var(--ink-4); }
.page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.page-h2 {
  font-family: var(--F); font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300; color: var(--white); line-height: 1.12; margin-bottom: 24px;
}
.page-h2 em { font-style: italic; color: var(--gold-hi); }
.page-p { font-size: 0.98rem; color: var(--cream-dim); line-height: 1.85; margin-bottom: 20px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.95rem; color: var(--cream-pale); line-height: 1.6;
}
.check-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }
.check-list strong { color: var(--white); font-weight: 500; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 8px; }
.info-card { background: var(--ink-3); padding: 36px 30px; transition: background 0.3s; }
.info-card:hover { background: var(--ink-4); }
.info-card-n { font-family: var(--M); font-size: 0.58rem; letter-spacing: 0.2em; color: var(--gold-lo); margin-bottom: 18px; }
.info-card h3 { font-family: var(--F); font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.info-card p { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.7; }

.related { padding: 90px 80px; background: var(--ink); border-top: 1px solid var(--ink-4); }
.related h2 { font-family: var(--F); font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 28px; }
.related-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.related-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink-3); border: 1px solid var(--ink-5);
  padding: 12px 20px; text-decoration: none;
  font-size: 0.82rem; color: var(--cream-dim);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.related-chip:hover { border-color: var(--gold); color: var(--gold-hi); background: var(--ink-4); }

@media (max-width: 1100px) {
  .subhero { grid-template-columns: 1fr; padding: 120px 40px 70px; gap: 48px; }
  .subhero-media { max-width: 420px; }
  .page-section { padding: 70px 40px; }
  .page-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-cards { grid-template-columns: 1fr; }
  .related { padding: 70px 40px; }
}
@media (max-width: 640px) {
  .subhero { padding: 110px 24px 60px; }
  .page-section { padding: 56px 24px; }
  .related { padding: 56px 24px; }
}