/* ══════════════════════════════════════════════════════════════
   Natural Be — Main CSS
   Compilado de: ref/index.html + ref/procedimentos.html
   ══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────────────────────── */
:root {
  --cream: #FAF7F2;
  --beige: #EAE0D2;
  --gold: #C9A460;
  --gold-light: #D4B876;
  --rose: #C4857A;
  --dark: #1E1410;
  --brown: #5C4A3E;
  --white: #FFFFFF;
  --border: #ddd4c5;
  --muted: #8a7d72;
  --text: #3a2e26;
  --card-bg: #ffffff;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-snap-type: y mandatory; overflow-y: scroll; scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; background: var(--cream); color: var(--dark); overflow-x: hidden; text-align: justify; }
h1, h2, h3, h4, h5, h6 { text-align: initial; }
body.proc-page { scroll-snap-type: none; }
html:has(body.proc-page) { scroll-snap-type: none; }
.proc-page section,
.proc-page footer { height: auto; min-height: 0; scroll-snap-align: none; overflow: visible; }
img { max-width: 100%; display: block; }

/* ── HEADER HOME ─────────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 2rem 4vw; display: flex; justify-content: space-between; align-items: center; transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease); }
.header.scrolled { background: rgba(250,247,242,.96); backdrop-filter: blur(12px); padding: 1rem 4vw; box-shadow: 0 1px 24px rgba(0,0,0,.07); }
.header-logo { height: 42px; opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.header.scrolled .header-logo { opacity: 1; pointer-events: auto; }
.header-nav { display: flex; gap: 2rem; list-style: none; }
.header-nav a { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; color: var(--white); font-weight: 500; transition: color .3s; position: relative; }
.header-nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.header-nav a:hover::after { width: 100%; }
.header.scrolled .header-nav a { color: var(--brown); }
.header-nav a:hover, .header.scrolled .header-nav a:hover { color: var(--gold); }

/* Custom logo WP */
.header .custom-logo-link { opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.header.scrolled .custom-logo-link { opacity: 1; pointer-events: auto; }
.header .custom-logo { height: 42px; width: auto; }

/* ── HEADER PROCEDIMENTOS ─────────────────────────────────────── */
.p-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(18,13,8,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(184,156,110,.2); display: flex; align-items: center; justify-content: space-between; padding: .85rem 5vw; gap: 1rem; transition: background .4s; }
.p-header.light { background: rgba(247,243,238,.96); border-bottom-color: var(--border); }
.p-header-logo-wrap img, .p-header-logo-wrap .custom-logo { height: 34px; width: auto; }
.p-header-logo-text { color: #fff; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: color .4s; }
.p-header.light .p-header-logo-text { color: var(--brown); }
.p-back { display: flex; align-items: center; gap: .45rem; text-decoration: none; color: rgba(255,255,255,.7); font-size: .58rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; transition: color .2s; }
.p-header.light .p-back { color: var(--brown); }
.p-back:hover { color: var(--gold-light); }
.p-header.light .p-back:hover { color: var(--gold); }
.p-back svg { width: 13px; height: 13px; flex-shrink: 0; }
.p-header-cta { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1.3rem; background: var(--gold); color: #fff; font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: background .2s, transform .15s; border: none; cursor: pointer; }
.p-header-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.p-header img {filter: brightness(0) invert(1); max-height: 30px; width: auto;}
.p-header.light img {filter: none; }

/* ── DOT NAV ─────────────────────────────────────────────────── */
.dot-nav { position: fixed; right: 1.8rem; top: 50%; transform: translateY(-50%); z-index: 950; display: flex; flex-direction: column; gap: 12px; }
.dot-item { position: relative; display: flex; align-items: center; justify-content: flex-end; cursor: pointer; }
.dot-tip { position: absolute; right: 20px; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; color: var(--brown); background: rgba(250,247,242,.92); padding: .25rem .65rem; opacity: 0; transform: translateX(8px); transition: opacity .25s, transform .25s; pointer-events: none; border-left: 2px solid var(--gold); }
.dot-item:hover .dot-tip { opacity: 1; transform: translateX(0); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.4); border: 1.5px solid rgba(255,255,255,.65); transition: all .3s var(--ease); }
.dot-item.active .dot { background: var(--gold); border-color: var(--gold); transform: scale(1.45); }
.dot-nav.dark .dot { background: rgba(92,74,62,.2); border-color: var(--brown); }
.dot-nav.dark .dot-item.active .dot { background: var(--gold); border-color: var(--gold); }

/* ── WHATSAPP FLUTUANTE ──────────────────────────────────────── */
.wa-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 950; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; animation: waPulse 2.5s infinite; transition: transform .3s, box-shadow .3s; }
.wa-btn:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 30px rgba(37,211,102,.55); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,.65), 0 0 0 9px rgba(37,211,102,.1); } }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ── SECTION BASE ──────────────────────────────────────────────── */
section { height: 100vh; min-height: 100vh; scroll-snap-align: start; position: relative; overflow: hidden; }
.section-inner { height: 100%; width: 100%; max-width: 1380px; margin: 0 auto; padding: 0 8vw; display: flex; flex-direction: column; justify-content: center; }
.s-label { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; font-weight: 500; }
.s-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.15; color: var(--dark); margin-bottom: .7rem; }
.s-title em { font-style: italic; color: var(--rose); }
.s-divider { width: 48px; height: 1px; background: var(--gold); margin-bottom: 1.8rem; }

/* ── HERO ────────────────────────────────────────────────────── */
#hero { background: var(--dark); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.90) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.80) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; gap: 1.6rem; }
.hero-logo-img { height: 105px; filter: brightness(0) invert(1); opacity: 0; animation: fadeDown .9s ease .2s forwards; }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 300; color: var(--white); line-height: 1.2; letter-spacing: .02em; max-width: 700px; opacity: 0; animation: fadeUp .9s ease .5s forwards; text-align: center; }
.hero-tagline em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); opacity: 0; animation: fadeUp .9s ease .7s forwards; }
.hero-btns { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp .9s ease .9s forwards; }
.btn { padding: .9rem 2.4rem; font-family: 'Montserrat', sans-serif; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; text-decoration: none; cursor: pointer; border: none; transition: all .3s var(--ease); display: inline-flex; align-items: center; gap: .5rem; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,164,96,.4); }
.btn-outline-w { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-3px); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: fadeIn .9s ease 1.4s forwards; }
.hero-scroll span { font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.scroll-track { width: 1px; height: 42px; background: rgba(255,255,255,.18); overflow: hidden; position: relative; }
.scroll-track::after { content: ''; position: absolute; width: 100%; height: 40%; background: var(--gold); top: -40%; animation: scrollDown 1.6s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -40%; } 100% { top: 140%; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── HISTORY ────────────────────────────────────────────────── */
#history { background: var(--cream); }
#history .section-inner { flex-direction: row; align-items: center; gap: 8vw; }
.history-left { flex: 1.1; }
.history-right { flex: 0.9; display: flex; justify-content: center; }
.history-right.anim { opacity: 1 !important; transform: none !important; transition: none !important; }
.history-circle { width: 348px; height: 348px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; position: relative; will-change: transform, opacity; opacity: 0; transform: translateX(90px) translateY(50px) rotate(-200deg); }
.history-circle::before { content: ''; position: absolute; width: 382px; height: 382px; border-radius: 50%; border: 1px solid var(--gold); opacity: .35; }
.history-circle img { width: 94%; height: 94%; object-fit: contain; }
.history-text { font-size: .90rem; line-height: 1.95; color: var(--brown); margin-bottom: 1rem; }
.history-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--rose); line-height: 1.55; border-left: 2px solid var(--gold); padding-left: 1.3rem; margin: 1.4rem 0; }
.founder { display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.founder-bar { width: 26px; height: 1px; background: var(--gold); }
.founder-name { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dark); font-weight: 500; }
.founder-role { font-size: .6rem; letter-spacing: .1em; color: var(--gold); }

/* ── FOUNDER ──────────────────────────────────────────────── */
#founder { height: auto; min-height: 0; scroll-snap-align: start; overflow: visible; background: var(--white); }
.founder-block--alt { background: var(--cream); }
.founder-row { display: flex; align-items: center; max-width: 1380px; margin: 0 auto; padding: 5rem 0; }
.founder-row--reverse { flex-direction: row-reverse; }
.founder-col-text { flex: 1; padding: 0 8vw; }
.founder-col-text--full { max-width: 860px; margin: 0 auto; text-align: center; padding: 0 8vw; }
.founder-col-img { flex: 0 0 44%; display: flex; align-items: center; justify-content: center; padding: 3rem 4rem; }
.founder-text { font-size: .90rem; line-height: 2; color: var(--brown); margin-bottom: .8rem; }
.founder-meta { display: flex; gap: 2.8rem; margin: 2rem 0 0; padding: 1.6rem 0; border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
.founder-stat { display: flex; flex-direction: column; gap: .15rem; }
.founder-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--dark); line-height: 1; }
.founder-stat-label { font-size: .54rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.founder-photo-frame { position: relative; width: 100%; max-width: 360px; aspect-ratio: 3 / 4; }
.founder-photo-frame::before { content: ''; position: absolute; inset: -10px; border-radius: 180px 180px 20px 20px; border: 1px solid var(--gold); opacity: .35; }
.founder-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 180px 180px 16px 16px; display: block; }
.founder-photo-frame::after { content: ''; position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); width: 48px; height: 1px; background: var(--gold); }
.founder-photo-frame--rect { aspect-ratio: 4 / 5; max-width: 400px; border-radius: 16px; }
.founder-photo-frame--rect::before { border-radius: 20px; }
.founder-photo-frame--rect img { border-radius: 12px; object-position: center; }
.founder-photo-frame--rect::after { display: none; }
/* ── PHOTO GRID (founder) ───────────────────────────────────── */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 0 8vw 5rem; max-width: 1380px; margin: 0 auto; }
.photo-grid-item { overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.photo-grid-item:hover img { transform: scale(1.04); }

/* ── CLINIC GALLERY (horizontal strip) ──────────────────────── */
#gallery { height: auto; min-height: 0; scroll-snap-align: none; overflow: hidden; background: var(--cream); }
.gallery-strip { display: flex; gap: 0; width: 100%; }
.gallery-strip-item { flex: 1 1 0; min-width: 0; overflow: hidden; cursor: pointer; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; transition: transform .5s var(--ease); }
.gallery-strip-item:hover img { transform: scale(1.05); }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.nb-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.nb-lightbox.active { opacity: 1; visibility: visible; }
.nb-lightbox-img { max-width: 88vw; max-height: 86vh; object-fit: contain; border-radius: 4px; user-select: none; transition: opacity .25s; }
.nb-lightbox-close { position: absolute; top: 1.5rem; right: 1.8rem; width: 40px; height: 40px; border: none; background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.nb-lightbox-close svg { width: 22px; height: 22px; stroke: rgba(255,255,255,.7); transition: stroke .2s; }
.nb-lightbox-close:hover svg { stroke: #fff; }
.nb-lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: none; background: rgba(255,255,255,.08); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.nb-lightbox-arrow:hover { background: rgba(255,255,255,.18); }
.nb-lightbox-arrow svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.8); }
.nb-lightbox-prev { left: 1.5rem; }
.nb-lightbox-next { right: 1.5rem; }
.nb-lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: .7rem; letter-spacing: .12em; color: rgba(255,255,255,.5); }

/* ── QUOTE ───────────────────────────────────────────────────── */
#quote-section {  background: var(--cream); }
.quote-inner { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 8vw; gap: 0; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 8rem; line-height: .6; color: var(--beige); font-weight: 300; display: block; margin-bottom: 1.5rem; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 3.2rem); font-weight: 300; font-style: italic; line-height: 1.45; color: var(--dark); max-width: 820px; margin-bottom: 3.5rem; }
.quote-text em { color: var(--rose); font-style: italic; }
.quote-author { display: flex; align-items: center; gap: 1.4rem; }
.quote-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid var(--beige); filter: grayscale(20%); }
.quote-author-name { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dark); font-weight: 500; display: block; }
.quote-author-role { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-top: .2rem; }
.quote-line { width: 40px; height: 1px; background: var(--gold); }

/* ── PROCEDIMENTOS (INDEX) ───────────────────────────────────── */
#procedimentos { background: var(--white); }
.idx-procs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--beige); background: var(--beige); margin-top: 1.4rem; }
.idx-proc-item { background: var(--white); display: flex; flex-direction: column; transition: background .2s; position: relative; }
.idx-proc-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(to bottom, var(--gold), var(--rose)); transition: height .35s; z-index: 1; }
.idx-proc-item:hover, .idx-proc-item.selected { background: #fdfaf6; }
.idx-proc-item:hover::before, .idx-proc-item.selected::before { height: 100%; }
.idx-proc-thumb { position: relative; height: 450px; overflow: hidden; background: var(--dark); cursor: pointer; flex-shrink: 0; }
.idx-proc-thumb video { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s, opacity .3s; display: block; }
.idx-proc-item:hover .idx-proc-thumb video { transform: scale(1.06); opacity: .95; }
.idx-proc-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: transform .5s, opacity .3s; display: block; }
.idx-proc-item:hover .idx-proc-thumb img { transform: scale(1.06); opacity: 1; }
.idx-proc-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,13,8,.5) 0%, transparent 55%); pointer-events: none; }
.idx-zoom-btn { position: absolute; top: .55rem; right: .55rem; z-index: 3; width: 28px; height: 28px; background: rgba(0,0,0,.52); border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; transition: background .2s, transform .2s; }
.idx-zoom-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.idx-zoom-btn svg { width: 12px; height: 12px; pointer-events: none; }
.idx-thumb-badge { position: absolute; bottom: .55rem; left: .65rem; z-index: 3; font-size: .46rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); background: rgba(0,0,0,.35); padding: .16rem .42rem; pointer-events: none; }
.idx-proc-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.idx-proc-cat { font-size: .48rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.idx-proc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; color: var(--dark); line-height: 1.15; }
.idx-proc-desc { font-size: .62rem; line-height: 1.6; color: var(--brown); flex: 1; }
.idx-proc-price { font-size: .58rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; margin-top: .1rem; }
.idx-book-btn { display: inline-flex; align-items: center; gap: .38rem; padding: .46rem .85rem; margin-top: .4rem; background: var(--gold); color: var(--white); font-size: .52rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .2s; width: fit-content; }
.idx-book-btn:hover { background: var(--gold-light); }
.idx-book-btn svg { width: 11px; height: 11px; flex-shrink: 0; }
.idx-check-wrap { display: flex; align-items: center; gap: .42rem; margin-top: .55rem; padding-top: .55rem; border-top: 1px solid var(--beige); cursor: pointer; user-select: none; }
.idx-check-input { display: none; }
.idx-check-box { width: 15px; height: 15px; flex-shrink: 0; border: 1.5px solid var(--beige); display: flex; align-items: center; justify-content: center; transition: background .18s, border-color .18s; }
.idx-check-box svg { width: 8px; height: 8px; color: #fff; opacity: 0; transition: opacity .12s; }
.idx-check-input:checked + .idx-check-box { background: var(--gold); border-color: var(--gold); }
.idx-check-input:checked + .idx-check-box svg { opacity: 1; }
.idx-check-label { font-size: .52rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .18s; }
.idx-check-input:checked ~ .idx-check-label { color: var(--gold); font-weight: 500; }

/* ── MODAL IDX ───────────────────────────────────────────────── */
.idx-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.idx-modal.open { opacity: 1; pointer-events: all; }
.idx-modal-backdrop { position: absolute; inset: 0; background: rgba(8,5,3,.88); backdrop-filter: blur(4px); cursor: pointer; }
.idx-modal-box { position: relative; z-index: 2; width: min(440px, 92vw); background: #120d08; overflow: hidden; transform: scale(.92) translateY(12px); transition: transform .35s cubic-bezier(.22,.68,0,1.2); }
.idx-modal.open .idx-modal-box { transform: scale(1) translateY(0); }
.idx-modal-bar { display: flex; align-items: center; justify-content: space-between; padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.idx-modal-label { font-size: .5rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.idx-modal-proc { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #fff; font-weight: 400; margin-top: .15rem; }
.idx-modal-close { width: 28px; height: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; line-height: 1; font-family: sans-serif; transition: background .2s, color .2s; }
.idx-modal-close:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.idx-modal-video { width: 100%; height: auto; max-height: 68vh; display: block; object-fit: contain; background: #000; }
.idx-modal-footer { padding: .75rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: .8rem; border-top: 1px solid rgba(255,255,255,.07); }
.idx-modal-hint { font-size: .54rem; color: rgba(255,255,255,.38); line-height: 1.4; }
.idx-modal-hint strong { color: var(--gold-light); font-weight: 500; }
.idx-modal-cta { display: inline-flex; align-items: center; gap: .42rem; padding: .5rem 1.1rem; background: var(--gold); color: #fff; font-size: .54rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
.idx-modal-cta:hover { background: var(--gold-light); }
.idx-modal-cta svg { width: 13px; height: 13px; }

/* ── BOOKING BAR IDX ─────────────────────────────────────────── */
.idx-book-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: #120d08; border-top: 1px solid rgba(184,156,110,.25); padding: .8rem 5vw; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transform: translateY(105%); transition: transform .42s cubic-bezier(.22,.68,0,1.2); box-shadow: 0 -8px 32px rgba(0,0,0,.35); }
.idx-book-bar.visible { transform: translateY(0); }
.idx-book-bar-info { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.idx-book-bar-count { font-size: .5rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }
.idx-book-bar-names { font-size: .6rem; color: rgba(255,255,255,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.idx-book-bar-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.4rem; background: var(--gold); color: #fff; font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .2s, transform .15s; }
.idx-book-bar-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.idx-book-bar-btn svg { width: 15px; height: 15px; }

/* ── TRANSFORMATION ───────────────────────────────────────────── */
#transformation { background: var(--dark); display: flex; place-items: center; place-content: center;}
.transformation-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.transformation-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.8) 100%); }
.transformation-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem 8vw; gap: 1.6rem; }
.transformation-eyebrow { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 500; opacity: 0; animation: fadeIn .8s ease .2s forwards; }
.transformation-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 300; color: var(--white); line-height: 1.18; letter-spacing: .02em; max-width: 800px; opacity: 0; animation: fadeUp .9s ease .4s forwards; text-align: center; }
.transformation-title em { font-style: italic; color: var(--gold-light); }
.transformation-sub { font-size: .78rem; line-height: 1.85; color: rgba(255,255,255,.6); max-width: 480px; opacity: 0; animation: fadeUp .9s ease .6s forwards; }
.transformation-cta { opacity: 0; animation: fadeUp .9s ease .8s forwards; }

/* ── REELS ───────────────────────────────────────────────────── */
#before-after { background: #0F0B09; }
#before-after .s-title { color: var(--white); }
.reels-layout { display: flex; height: 100%; align-items: center; gap: 5vw; padding: 0 8vw; max-width: 1380px; margin: 0 auto; }
.reels-text { flex: 0 0 28%; padding-top: 2rem; }
.reels-text .s-divider { background: var(--gold); }
.reels-desc { font-size: .9rem; line-height: 1.85; color: rgba(255,255,255,.55); margin-bottom: 2rem; }
.reels-cta { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: .7rem; transition: gap .3s; }
.reels-cta:hover { gap: 1.1rem; }
.reels-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 76vh; }
.reel-cell { position: relative; overflow: hidden; cursor: pointer; background: #1a110d; }
.reel-cell video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.reel-cell:hover video { transform: scale(1.04); }
.reel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 50%, transparent 100%); transition: opacity .3s; }
.reel-cell:hover .reel-overlay { opacity: .7; }
.reel-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(201,164,96,.85); display: flex; align-items: center; justify-content: center; transition: opacity .35s, transform .35s; }
.reel-cell:hover .reel-play { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
.reel-play svg { width: 18px; height: 18px; fill: var(--white); margin-left: 3px; }
.reel-label { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; }
.reel-label-num { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .2rem; }
.reel-label-text { font-size: .65rem; letter-spacing: .08em; color: rgba(255,255,255,.85); }
.reel-cell.active { outline: 1.5px solid var(--dark); }

/* ── ADVANCED AESTHETICS ───────────────────────────────────────── */
#aesthetics { background: var(--cream); height: auto; min-height: auto; }
#aesthetics .section-inner { display: none; }
.aesthetics-inner { display: flex; flex-direction: column; padding: 6rem 8vw; max-width: 1380px; margin: 0 auto; gap: 1.8rem; }
.aesthetics-content { max-width: 640px; }
.aesthetics-desc { font-size: .82rem; line-height: 1.9; color: var(--brown); margin-top: .4rem; }
.aesthetics-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.aesthetics-doctor { display: flex; align-items: center; gap: 2rem; background: var(--white); padding: 2rem 2.5rem; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.aesthetics-doctor-photo { flex-shrink: 0; width: 120px; height: 120px; border-radius: 50%; overflow: hidden; }
.aesthetics-doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.aesthetics-doctor-name { font-family: var(--serif); font-size: 1.1rem; color: var(--dark); margin-bottom: .4rem; }
.aesthetics-doctor-desc { font-size: .82rem; line-height: 1.9; color: var(--brown); }
.aesthetics-dots { display: none; }
.est-card { background: var(--white); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.est-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.est-card-photo { width: 100%; height: 300px; max-height: 300px; overflow: hidden; flex-shrink: 0; }
.est-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.est-card:hover .est-card-photo img { transform: scale(1.05); }
.est-card-body { padding: 1.1rem 1.2rem; border-top: 2px solid var(--gold); display: flex; flex-direction: column; flex: 1; }
.est-card-name { font-weight: bold; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: .3rem; }
.est-card-desc { font-size: .65rem; line-height: 1.6; color: var(--brown); flex: 1; margin-bottom: .9rem; }
.est-card-btn { display: flex; align-items: center; justify-content: center; gap: .55rem; padding: .6rem 1.1rem; background: var(--gold); color: var(--white); text-decoration: none; font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: background .2s, transform .15s; width: 100%; margin-top: auto; }
.est-card-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.est-card-btn svg { flex-shrink: 0; }

/* ── PRODUCTS ────────────────────────────────────────────────── */
#products { background: #100C09; }
.products-layout { display: flex; height: 100%; align-items: center; gap: 0; }
.products-video-wrap { flex: 1; height: 100%; position: relative; overflow: hidden; }
.products-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.products-video-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(16,12,9,0) 25%, rgba(16,12,9,.6) 60%, rgba(16,12,9,1) 90%); }
.products-content { flex: 0 0 42%; padding: 0 6vw 0 0; position: relative; z-index: 2; }
.products-content .s-title { color: var(--white); }
.products-content .s-label { color: var(--gold); }
.products-content .s-divider { background: var(--gold); }
.products-desc { font-size: .9rem; line-height: 1.9; color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.products-features { list-style: none; margin-bottom: 2.2rem; }
.products-features li { font-size: .8rem; color: rgba(255,255,255,.7); padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: .8rem; }
.products-features li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); padding: .85rem 2.2rem; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; font-family: 'Montserrat', sans-serif; cursor: pointer; transition: all .3s var(--ease); text-decoration: none; display: inline-block; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

/* ── COURSES ──────────────────────────────────────────────────── */
#courses { background: var(--cream); }
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 1.4rem; }
.course-card { padding: 2rem 2.2rem; background: var(--white); overflow: hidden; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.course-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--rose)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.course-card:hover::before { transform: scaleX(1); }
.course-tag { font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.course-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--dark); margin-bottom: .6rem; }
.course-desc { font-size: .72rem; line-height: 1.75; color: var(--brown); }
.course-meta { margin-top: 1.3rem; display: flex; gap: 2rem; }
.course-meta-item { display: flex; flex-direction: column; gap: .15rem; }
.course-meta-label { font-size: .56rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); }
.course-meta-value { font-size: .72rem; font-weight: 500; color: var(--dark); }
.course-num { position: absolute; bottom: 1.2rem; right: 1.8rem; font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--beige); line-height: 1; pointer-events: none; }
.course-badge-hot { position: absolute; top: 1rem; right: 1rem; font-size: .48rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: linear-gradient(90deg, var(--gold), var(--rose)); padding: .28rem .7rem; z-index: 2; pointer-events: none; }
.course-view-btn { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.3rem; padding: .5rem 1rem; border: 1px solid var(--beige); background: transparent; font-family: 'Montserrat', sans-serif; font-size: .56rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brown); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.course-view-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.course-view-btn svg { width: 11px; height: 11px; transition: transform .2s; }
.course-view-btn:hover svg { transform: translateX(3px); }
.course-actions { display: flex; align-items: center; gap: .75rem; margin-top: 1.3rem; flex-wrap: wrap; position: relative; z-index: 2; }
.course-learn-more { display: inline-flex; align-items: center;  margin-top: 1.3rem; gap: .45rem; padding: .5rem 1rem; background: var(--dark); color: #fff; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: .56rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; transition: background .2s, transform .2s; }
.course-learn-more:hover { background: var(--brown); transform: translateY(-1px); }
.course-learn-more svg { width: 11px; height: 11px; transition: transform .2s; }
.course-learn-more:hover svg { transform: translateX(3px); }

/* Course modal */
.cmod-overlay { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cmod-overlay.open { opacity: 1; pointer-events: all; }
.cmod-backdrop { position: absolute; inset: 0; background: rgba(8,5,3,.88); backdrop-filter: blur(4px); cursor: pointer; }
.cmod-box { position: relative; z-index: 2; width: min(820px, 95vw); max-height: 90vh; background: var(--white); overflow: hidden; transform: scale(.94) translateY(14px); transition: transform .38s cubic-bezier(.22,.68,0,1.2); display: flex; flex-direction: column; }
.cmod-overlay.open .cmod-box { transform: scale(1) translateY(0); }
.cmod-bar { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.2rem; border-bottom: 1px solid var(--beige); flex-shrink: 0; }
.cmod-bar-left { display: flex; flex-direction: column; gap: .1rem; }
.cmod-label { font-size: .48rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.cmod-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--dark); font-weight: 400; }
.cmod-close { width: 28px; height: 28px; background: var(--beige); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: var(--brown); transition: background .2s, color .2s; flex-shrink: 0; }
.cmod-close:hover { background: var(--rose); color: #fff; }
.cmod-inner { display: grid; grid-template-columns: 280px 1fr; flex: 1; overflow: hidden; min-height: 0; }
.cmod-video-col { background: var(--dark); position: relative; overflow: hidden; }
.cmod-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cmod-img { width: 100%; height: 100%; object-fit: cover; display: none; }
.cmod-video-label { position: absolute; bottom: .7rem; left: .8rem; font-size: .46rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); background: rgba(0,0,0,.3); padding: .18rem .5rem; pointer-events: none; }
.cmod-modules-col { display: flex; flex-direction: column; overflow: hidden; }
.cmod-modules-head { padding: 1rem 1.3rem .65rem; border-bottom: 1px solid var(--beige); flex-shrink: 0; }
.cmod-modules-headtitle { font-size: .56rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brown); }
.cmod-modules-count { font-size: .54rem; color: var(--muted); margin-top: .2rem; }
.cmod-modules-list { overflow-y: auto; flex: 1; padding: .5rem 0; }
.cmod-modules-list::-webkit-scrollbar { width: 3px; }
.cmod-modules-list::-webkit-scrollbar-thumb { background: var(--beige); }
.cmod-item { display: flex; align-items: baseline; gap: .75rem; padding: .7rem 1.3rem; border-bottom: 1px solid var(--beige); transition: background .15s; }
.cmod-item:last-child { border-bottom: none; }
.cmod-item:hover { background: var(--cream); }
.cmod-item-num { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--gold); min-width: 1.4rem; line-height: 1; }
.cmod-item-info { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.cmod-item-title { font-size: .68rem; font-weight: 500; color: var(--dark); line-height: 1.35; }
.cmod-item-dur { font-size: .55rem; letter-spacing: .06em; color: var(--brown); opacity: .7; }
.cmod-footer { padding: .75rem 1.3rem; border-top: 1px solid var(--beige); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; background: var(--cream); }
.cmod-footer-info { font-size: .58rem; color: var(--brown); }
.cmod-footer-info strong { color: var(--dark); }
.cmod-cta { display: inline-flex; align-items: center; gap: .42rem; padding: .5rem 1.1rem; background: var(--gold); color: #fff; font-size: .54rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: background .2s; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; }
.cmod-cta:hover { background: var(--gold-light); }
.cmod-cta svg { width: 13px; height: 13px; }
.cmod-instructor { display: flex; align-items: center; gap: .9rem; padding: .95rem 1.3rem; border-bottom: 2px solid var(--beige); flex-shrink: 0; background: var(--cream); }
.cmod-instructor-photo { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; object-position: top center; flex-shrink: 0; border: 2px solid var(--gold); }
.cmod-instructor-info { display: flex; flex-direction: column; gap: .18rem; }
.cmod-instructor-by { font-size: .44rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.cmod-instructor-name { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: var(--dark); font-weight: 500; line-height: 1.1; }
.cmod-instructor-role { font-size: .57rem; color: var(--brown); line-height: 1.4; }
.cmod-instructor-badges { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .25rem; }
.cmod-ibadge { font-size: .44rem; letter-spacing: .07em; background: var(--white); color: var(--brown); border: 1px solid var(--beige); padding: .12rem .5rem; }

/* ── INSTAGRAM ───────────────────────────────────────────────── */
#instagram { background: var(--white); }
.insta-inner { height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 8vw; max-width: 1380px; margin: 0 auto; }
.insta-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
.insta-follow-btn { display: inline-flex; align-items: center; gap: .8rem; padding: .85rem 2rem; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); text-decoration: none; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; font-family: 'Montserrat', sans-serif; border: none; cursor: pointer; transition: opacity .3s, transform .3s; }
.insta-follow-btn:hover { opacity: .9; transform: translateY(-2px); }
.insta-follow-btn svg { width: 18px; height: 18px; fill: var(--white); }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.insta-cell { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--beige); cursor: pointer; }
.insta-cell video, .insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-cell:hover video, .insta-cell:hover img { transform: scale(1.06); }
.insta-cell-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; display: flex; align-items: center; justify-content: center; }
.insta-cell:hover .insta-cell-overlay { background: rgba(0,0,0,.3); }
.insta-cell-icon { opacity: 0; transition: opacity .3s; display: flex; align-items: center; gap: .5rem; }
.insta-cell:hover .insta-cell-icon { opacity: 1; }
.insta-cell-icon svg { width: 22px; height: 22px; fill: var(--white); }
.insta-sub { font-size: .68rem; color: var(--brown); margin-top: 1.2rem; letter-spacing: .05em; }

/* ── REVIEWS ──────────────────────────────────────────────── */
#reviews { background: var(--cream); }
.reviews-inner { height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 8vw; max-width: 1100px; margin: 0 auto; text-align: center; }
.reviews-inner h2 { text-align: center; }
.reviews-carousel { position: relative; overflow: hidden; margin-top: 1.5rem; width: 100%; }
.review-track { display: flex; transition: transform .65s var(--ease); }
.review-card { min-width: 100%; padding: 0 4vw; }
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .25rem; margin-bottom: 2rem; display: block; }
.review-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.35rem, 2.8vw, 2.1rem); font-style: italic; font-weight: 300; line-height: 1.55; color: var(--dark); max-width: 820px; margin: 0 auto 2rem; }
.review-cite { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brown); display: block; }
.review-nav { display: flex; justify-content: center; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.slider-nav { display: none; justify-content: center; align-items: center; gap: 2rem; margin-top: 1.2rem; }
.review-arrow { width: 44px; height: 44px; border: 1.5px solid var(--beige); border-radius: 50%; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .3s, background .3s; flex-shrink: 0; }
.review-arrow:hover { border-color: var(--gold); background: var(--gold); }
.review-arrow:hover svg { stroke: var(--white); }
.review-arrow svg { width: 16px; height: 16px; stroke: var(--brown); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.review-dots { display: flex; gap: .6rem; align-items: center; }
.r-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--beige); cursor: pointer; transition: background .3s, transform .3s; border: none; padding: 0; }
.r-dot.active { background: var(--gold); transform: scale(1.5); }
.review-progress { width: 100px; height: 1.5px; background: var(--beige); position: relative; overflow: hidden; }
.review-progress-bar { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); width: 0; animation: rProgress 5s linear forwards; }
@keyframes rProgress { 0% { width: 0; } 100% { width: 100%; } }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact { background: var(--dark); }
#contact .s-title { color: var(--white); }
.contact-left { flex: 1; }
.contact-right { flex: 1; }
.contact-info { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.ci { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; border: 1px solid rgba(201,164,96,.4); display: flex; align-items: center; justify-content: center; }
.ci-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.ci-label { font-size: .56rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.ci-val { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.form { display: flex; flex-direction: column; gap: .85rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.fg { display: flex; flex-direction: column; gap: .3rem; }
.fg label { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--white); padding: .8rem 1rem; font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 300; outline: none; width: 100%; transition: border-color .3s; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.22); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: #1E1410; }
.fg textarea { resize: none; height: 72px; }
.btn-submit { align-self: flex-start; background: var(--gold); color: var(--white); padding: .88rem 2.2rem; font-family: 'Montserrat', sans-serif; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: background .3s, transform .3s; }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.maps-wrap { margin-top: 1.4rem; height: 160px; overflow: hidden; position: relative; }
.maps-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) opacity(.85); }
.form-feedback { font-size: .72rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #0A0705; padding: 2.2rem 8vw; scroll-snap-align: start; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { height: 38px; filter: brightness(0) invert(1); opacity: .45; }
.footer-copy { font-size: .6rem; letter-spacing: .06em; color: rgba(255,255,255,.28); text-align: center; }
.footer-socials { display: flex; gap: .7rem; }
.footer-socials a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; transition: border-color .3s; }
.footer-socials a:hover { border-color: var(--gold); }
.footer-socials svg { width: 14px; height: 14px; fill: rgba(255,255,255,.45); }

/* ── MENU MOBILE (home) ─────────────────────────────────────── */

/* Hamburger button — hidden on desktop */
.mob-menu-btn { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 6px; z-index: 1000; flex-shrink: 0; }
.mob-menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: background .3s; }
.header.scrolled .mob-menu-btn span { background: var(--dark); }

/* Aside drawer */
.mob-menu { position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 320px); background: var(--dark); z-index: 1100; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1); will-change: transform; overflow-y: auto; }
.mob-menu.open { transform: translateX(0); }

/* Sidebar top: logo + close */
.mob-menu-top { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid rgba(201,164,96,.18); flex-shrink: 0; }
.mob-menu-logo { height: 32px; width: auto; opacity: .85; filter: brightness(0) invert(1); }
.mob-menu-close { background: transparent; border: none; cursor: pointer; color: rgba(255,255,255,.55); padding: 4px; display: flex; align-items: center; justify-content: center; transition: color .2s; }
.mob-menu-close:hover { color: var(--gold); }
.mob-menu-close svg { width: 22px; height: 22px; }

/* Navigation links */
.mob-menu-nav { flex: 1; display: flex; flex-direction: column; padding: 2rem 0; }
.mob-menu-link { display: block; padding: 1rem 1.8rem; font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65); text-decoration: none; border-left: 2px solid transparent; transition: color .2s, border-color .2s, padding-left .2s; }
.mob-menu-link:hover { color: var(--gold-light); border-left-color: var(--gold); padding-left: 2.2rem; }

/* Sidebar footer: WhatsApp */
.mob-menu-footer { padding: 1.5rem 1.5rem 2.2rem; flex-shrink: 0; border-top: 1px solid rgba(201,164,96,.18); }
.mob-menu-wpp { display: flex; align-items: center; justify-content: center; gap: .65rem; width: 100%; padding: .9rem 1rem; background: #25D366; color: #fff; text-decoration: none; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; transition: opacity .2s; }
.mob-menu-wpp:hover { opacity: .88; }

/* Backdrop */
.mob-menu-backdrop { position: fixed; inset: 0; background: rgba(10,7,5,.55); z-index: 1090; opacity: 0; pointer-events: none; transition: opacity .38s cubic-bezier(.4,0,.2,1); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.mob-menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* Lock scroll when menu is open */
html.mob-menu-open { overflow: hidden; }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.anim { opacity: 0; transition: opacity .85s var(--ease), transform .85s var(--ease); }
.anim.from-up { transform: translateY(32px); }
.anim.from-left { transform: translateX(-32px); }
.anim.from-right { transform: translateX(32px); }
.anim.visible { opacity: 1; transform: none; }
.anim.d1 { transition-delay: .1s; }
.anim.d2 { transition-delay: .2s; }
.anim.d3 { transition-delay: .3s; }
.anim.d4 { transition-delay: .4s; }
.anim.d5 { transition-delay: .5s; }

/* ══════════════════════════════════════════════════════════════
   ── PROCEDURES PAGE
   ══════════════════════════════════════════════════════════════ */

/* Hero — procedures page */
.p-hero { position: relative; height: 52vh; min-height: 320px; max-height: 520px; overflow: hidden; display: flex; align-items: flex-end; }
.p-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-hero-overlay { position: absolute; inset: 0; background: linear-gradient(175deg, rgba(10,7,4,.75) 0%, rgba(10,7,4,.55) 45%, rgba(10,7,4,.88) 100%); }
.p-hero-content { position: relative; z-index: 2; padding: 0 6vw 3.2rem; width: 100%; }
.p-hero-eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .55rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .9rem; }
.p-hero-eyebrow::before, .p-hero-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-light); opacity: .6; }
.p-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: .7rem; letter-spacing: .01em; }
.p-hero h1 em { font-style: italic; color: var(--gold-light); }
.p-hero-sub { font-size: .68rem; color: rgba(255,255,255,.55); max-width: 480px; }
.p-hero-scroll { position: absolute; bottom: 1.6rem; right: 5vw; z-index: 2; display: flex; align-items: center; gap: .5rem; font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.p-hero-scroll svg { width: 14px; height: 14px; animation: scrollBob .8s ease-in-out infinite alternate; }
@keyframes scrollBob { from { transform: translateY(0); } to { transform: translateY(4px); } }

/* Category nav */
.cat-nav { position: sticky; top: 57px; z-index: 190; background: rgba(247,243,238,.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner { display: flex; padding: 0 5vw; white-space: nowrap; min-width: max-content; }
.cat-link { display: inline-block; padding: .78rem 1.1rem; font-size: .58rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.cat-link:hover, .cat-link.active { color: var(--brown); border-bottom-color: var(--gold); }

/* Main content */
.p-main { padding: 0 5vw 5rem; max-width: 1160px; margin: 0 auto; }
.cat-section { padding: 3.5rem 0 1rem; border-bottom: 1px solid var(--border); }
.cat-section:last-child { border-bottom: none; }
.cat-header { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: .6rem; }
.cat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-bottom: 3px; }
.cat-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 400; color: var(--brown); }
.cat-divider { flex: 1; height: 1px; background: var(--border); }
.cat-desc { font-size: .7rem; color: var(--muted); max-width: 600px; margin-bottom: 2rem; line-height: 1.8; }

/* Procedure cards */
.procs-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; border: 1px solid var(--border); background: var(--border); }
.proc-item { background: var(--card-bg); display: flex; flex-direction: column; transition: background .2s; position: relative; }
.proc-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(to bottom, var(--gold), var(--rose)); transition: height .35s ease; z-index: 1; }
.proc-item:hover { background: #fdfaf6; }
.proc-item:hover::before { height: 100%; }
.proc-thumb { position: relative; height: 450px; overflow: hidden; background: var(--dark); flex-shrink: 0; cursor: pointer; }
.proc-thumb video { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s ease, opacity .3s; display: block; }
.proc-item:hover .proc-thumb video { transform: scale(1.06); opacity: .95; }
.proc-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: transform .5s ease, opacity .3s; display: block; }
.proc-item:hover .proc-thumb img { transform: scale(1.06); opacity: 1; }
.proc-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,13,8,.55) 0%, transparent 55%); pointer-events: none; }
.zoom-btn { position: absolute; top: .7rem; right: .7rem; z-index: 3; width: 34px; height: 34px; background: rgba(0,0,0,.52); border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; transition: background .2s, transform .2s, border-color .2s; }
.zoom-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.zoom-btn svg { width: 15px; height: 15px; pointer-events: none; }
.thumb-badge { position: absolute; bottom: .65rem; left: .75rem; z-index: 3; font-size: .5rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); background: rgba(0,0,0,.35); padding: .2rem .5rem; pointer-events: none; }
.thumb-rating { position: absolute; top: .65rem; left: .75rem; z-index: 3; font-size: .5rem; font-weight: 600; letter-spacing: .08em; color: #fff; background: rgba(184,156,110,.88); padding: .2rem .55rem; pointer-events: none; }
.proc-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.proc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 500; color: var(--brown); line-height: 1.2; }
.proc-desc { font-size: .68rem; color: var(--muted); line-height: 1.75; flex: 1; }
.proc-price { display: inline-block; margin-top: .5rem; font-size: .62rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); padding: .32rem .75rem; border: 1px solid rgba(184,156,110,.35); background: rgba(184,156,110,.06); width: fit-content; }
.proc-availability { display: flex; align-items: center; gap: .35rem; font-size: .56rem; color: var(--rose); letter-spacing: .05em; margin-top: .15rem; }
.proc-availability svg { width: 11px; height: 11px; flex-shrink: 0; }
.proc-book-btn { display: inline-flex; align-items: center; gap: .45rem; padding: .58rem 1.1rem; margin-top: .5rem; background: var(--gold); color: #fff; font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: background .2s; width: fit-content; }
.proc-book-btn:hover { background: var(--gold-light); }
.proc-book-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.proc-check-wrap { display: flex; align-items: center; gap: .55rem; margin-top: .9rem; padding-top: .8rem; border-top: 1px solid var(--border); cursor: pointer; user-select: none; }
.proc-check-input { display: none; }
.proc-check-box { width: 17px; height: 17px; flex-shrink: 0; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background .18s, border-color .18s; }
.proc-check-box svg { width: 9px; height: 9px; color: #fff; opacity: 0; transition: opacity .12s; }
.proc-check-input:checked + .proc-check-box { background: var(--gold); border-color: var(--gold); }
.proc-check-input:checked + .proc-check-box svg { opacity: 1; }
.proc-check-label { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .18s; }
.proc-check-input:checked ~ .proc-check-label { color: var(--gold); font-weight: 500; }
.proc-item.selected { background: #fdfaf6; }
.proc-item.selected::before { height: 100%; }

/* Single proc item (full width) */
.procs-list.single { grid-template-columns: 1fr; }
.procs-list.single .proc-item { flex-direction: row; }
.procs-list.single .proc-thumb { width: 280px; height: auto; min-height: 180px; flex-shrink: 0; }
.procs-list.single .proc-body { justify-content: center; }

/* Advanced aesthetics wrap */
.aesthetics-wrap { border: 1px solid var(--border); overflow: hidden; display: grid; grid-template-columns: 280px 1fr auto; background: var(--card-bg); }
.aesthetics-thumb { position: relative; background: var(--dark); overflow: hidden; cursor: pointer; }
.aesthetics-thumb video { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .5s, opacity .3s; display: block; }
.aesthetics-thumb:hover video { transform: scale(1.06); opacity: .95; }
.aesthetics-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, rgba(18,13,8,.3) 100%); pointer-events: none; }
.aesthetics-body { padding: 2rem 2rem 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.estetica-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--brown); }
.estetica-role { font-size: .58rem; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }
.aesthetics-desc { font-size: .9rem; color: var(--muted); line-height: 1.8; flex: 1; }
.estetica-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .3rem; }
.estetica-tag { font-size: .58rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .7rem; border: 1px solid var(--border); color: var(--brown); background: var(--cream); }
.estetica-price-panel { background: var(--brown); color: #fff; padding: 1.5rem 1.8rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-width: 140px; }
.estetica-price-label { font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; opacity: .65; margin-bottom: .35rem; }
.aesthetics-price-val { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; line-height: 1; color: var(--gold-light); }

/* Tabela comparativa */
.micro-compare { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.micro-compare-label { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; display: block; }
.mc-table { display: grid; grid-template-columns: minmax(120px, 1.2fr) repeat(3, 1fr); border: 1px solid var(--border); background: var(--border); gap: 1px; overflow-x: auto; }
.mc-cell { background: var(--card-bg); padding: .7rem .65rem; font-size: .65rem; color: var(--text); line-height: 1.5; }
.mc-head { background: var(--brown); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; text-align: center; padding: .85rem .65rem; }
.mc-label-col .mc-cell { color: var(--muted); font-size: .6rem; font-weight: 500; letter-spacing: .05em; }
.mc-price { color: var(--gold); font-weight: 600; font-size: .65rem; }
.mc-btn-cell { background: var(--card-bg); padding: .55rem .5rem; }
.mc-btn { display: block; text-align: center; padding: .52rem .5rem; background: var(--gold); color: #fff; font-size: .56rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .2s; }
.mc-btn:hover { background: var(--gold-light); }

/* Booking bar da página de procedimentos */
.book-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: var(--dark); border-top: 1px solid rgba(184,156,110,.25); padding: .85rem 5vw; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; transform: translateY(105%); transition: transform .42s cubic-bezier(.22,.68,0,1.2); box-shadow: 0 -8px 32px rgba(0,0,0,.35); }
.book-bar.visible { transform: translateY(0); }
.book-bar-info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.book-bar-count { font-size: .52rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.book-bar-names { font-size: .63rem; color: rgba(255,255,255,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.book-bar-btn { display: inline-flex; align-items: center; gap: .55rem; padding: .72rem 1.5rem; background: var(--gold); color: #fff; font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .2s, transform .15s; }
.book-bar-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.book-bar-btn svg { width: 16px; height: 16px; }
body.has-bookbar .p-footer { padding-bottom: 5rem; }

/* Modal da página de procedimentos */
.modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal.open { opacity: 1; pointer-events: all; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,5,3,.88); backdrop-filter: blur(4px); cursor: pointer; }
.modal-box { position: relative; z-index: 2; width: min(480px, 92vw); background: var(--dark); overflow: hidden; transform: scale(.92) translateY(12px); transition: transform .35s cubic-bezier(.22,.68,0,1.2); }
.modal.open .modal-box { transform: scale(1) translateY(0); }
.modal-bar { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.modal-label { font-size: .55rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); display: flex; align-items: center; gap: .5rem; }
.modal-label::before { content: ''; width: 20px; height: 1px; background: var(--gold-light); opacity: .5; }
.modal-proc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; font-weight: 400; }
.modal-close { width: 30px; height: 30px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; line-height: 1; transition: background .2s, color .2s; font-family: sans-serif; }
.modal-close:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.modal-video-wrap { position: relative; width: 100%; background: #000; overflow: hidden; line-height: 0; }
.modal-video-wrap video { width: 100%; height: auto; max-height: 72vh; display: block; object-fit: contain; }
.modal-video-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,13,8,.6) 0%, transparent 30%); pointer-events: none; }
.modal-antes, .modal-depois { position: absolute; bottom: 1rem; z-index: 2; font-size: .52rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); background: rgba(0,0,0,.35); padding: .2rem .55rem; pointer-events: none; }
.modal-antes { left: 1rem; }
.modal-depois { right: 1rem; }
.modal-footer { padding: .9rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.07); }
.modal-footer-hint { font-size: .58rem; color: rgba(255,255,255,.4); line-height: 1.4; }
.modal-cta { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.2rem; background: var(--gold); color: #fff; font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
.modal-cta:hover { background: var(--gold-light); }

/* CTA de agendamento */
.p-cta-block { margin: 4rem 0 0; padding: 3rem 2.5rem; background: var(--dark); display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.p-cta-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,156,110,.12), transparent); pointer-events: none; }
.p-cta-block h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 300; color: #fff; line-height: 1.15; }
.p-cta-block h2 em { font-style: italic; color: var(--gold-light); }
.p-cta-block p { font-size: .68rem; color: rgba(255,255,255,.45); margin-top: .4rem; }
.btn-cta-wpp { display: inline-flex; align-items: center; gap: .65rem; padding: .9rem 2rem; background: var(--gold); color: #fff; font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: background .2s, transform .15s; flex-shrink: 0; position: relative; z-index: 1; }
.btn-cta-wpp:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-cta-wpp svg { width: 17px; height: 17px; }

/* Footer da página de procedimentos */
.p-footer { border-top: 1px solid var(--border); padding: 1.4rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; background: var(--cream); }
.p-footer-copy { font-size: .58rem; color: var(--muted); letter-spacing: .04em; }
.p-footer-logo { height: 22px; opacity: .5; }

/* ── SINGLE CURSO (CSP) ─────────────────────────────────────── */

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].nb-revealed { opacity: 1; transform: none; }

/* Reset de seções herdadas */
.curso-single-page section { height: auto; min-height: 0; scroll-snap-align: none; overflow: visible; }
.curso-single-page { background: var(--cream); padding-bottom: 5rem; }
.curso-single-page h1,.curso-single-page h2,.curso-single-page h3,.curso-single-page p,.curso-single-page span,.curso-single-page a,.curso-single-page strong { overflow-wrap: anywhere; word-break: break-word; }

/* Hero */
.csp-hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.csp-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.csp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(175deg, rgba(8,5,3,.7) 0%, rgba(8,5,3,.45) 45%, rgba(8,5,3,.9) 100%); }
.csp-hero-body { position: relative; z-index: 2; padding: 7rem 7vw 4.5rem; width: 100%; max-width: 860px; }
.csp-eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.csp-eyebrow::before,.csp-eyebrow::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold-light); opacity: .6; }
.csp-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 300; line-height: 1.08; color: #fff; letter-spacing: .01em; }
.csp-hero-sub { margin-top: .9rem; font-size: .76rem; line-height: 1.9; color: rgba(255,255,255,.68); max-width: 540px; }
.csp-hero-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.csp-hero-pills span { padding: .38rem .75rem; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); font-size: .52rem; letter-spacing: .14em; text-transform: uppercase; }
.csp-hero-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.csp-btn-primary { display: inline-flex; align-items: center; gap: .55rem; padding: .85rem 1.9rem; background: var(--gold); color: #fff; font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: background .2s, transform .15s; flex-shrink: 0; }
.csp-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.csp-btn-full { width: 100%; justify-content: center; padding: 1rem 1.9rem; font-size: .62rem; }
.csp-btn-ghost { color: rgba(255,255,255,.72); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: .2rem; transition: color .2s, border-color .2s; }
.csp-btn-ghost:hover { color: #fff; border-color: var(--gold-light); }
.csp-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.35); animation: cspBob .9s ease-in-out infinite alternate; }
.csp-scroll-hint svg { width: 20px; height: 20px; }
@keyframes cspBob { from { transform: translateX(-50%) translateY(0); } to { transform: translateX(-50%) translateY(6px); } }

/* Nav interna */
.csp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; display: flex; justify-content: center; gap: 0; background: rgba(255,252,249,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); transform: translateY(-100%); transition: transform .3s ease; pointer-events: none; }
.csp-nav--visible { transform: translateY(0); pointer-events: auto; }
.csp-nav a { padding: .9rem 1.4rem; font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; position: relative; }
.csp-nav a::after { content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.csp-nav a.active,.csp-nav a:hover { color: var(--dark); }
.csp-nav a.active::after,.csp-nav a:hover::after { transform: scaleX(1); }

/* Body / seções */
.csp-section { width: 100%; border-bottom: 1px solid var(--border); }
.csp-section:last-child { border-bottom: none; }
.csp-inner { max-width: 860px; margin: 0 auto; padding: 5rem 7vw; }
.csp-inner--wide { max-width: 1200px; }
.csp-inner--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.csp-section-head { margin-bottom: 2.4rem; }
.csp-section-head .s-title { margin-bottom: 0; }

/* Benefícios */
.csp-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
.csp-benefit { display: flex; gap: 1rem; align-items: flex-start; }
.csp-benefit-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.csp-benefit p { font-size: .74rem; line-height: 1.85; color: var(--brown); }

/* Módulos */
.csp-modules { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.csp-module { display: flex; align-items: center; gap: 1.4rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); transition: background .15s; }
.csp-module:first-child { border-top: 1px solid var(--border); }
.csp-module-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--gold); min-width: 2.6rem; line-height: 1; }
.csp-module-copy strong { display: block; font-size: .8rem; font-weight: 500; color: var(--dark); }
.csp-module-copy span { display: block; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }

/* Para quem */
.csp-checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.csp-checklist li { display: flex; align-items: center; gap: .9rem; font-size: .76rem; color: var(--brown); line-height: 1.6; }
.csp-check-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Depoimentos — marquee */
.csp-section--marquee { overflow: hidden; }
.csp-section--marquee .csp-inner { padding-bottom: 2rem; }
.csp-marquee-wrap { position: relative; overflow: hidden; padding: 1rem 0 3rem; }
.csp-marquee-wrap::before,
.csp-marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 12vw; min-width: 80px; z-index: 2; pointer-events: none; }
.csp-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--cream) 0%, transparent 100%); }
.csp-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--cream) 0%, transparent 100%); }
.csp-marquee-track { display: flex; gap: 1.2rem; width: max-content; animation: cspMarquee 40s linear infinite; }
.csp-marquee-track:hover { animation-play-state: paused; }
@keyframes cspMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.csp-mq-card { flex: 0 0 300px; margin: 0; padding: 0; background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.csp-mq-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.csp-mq-photo { width: 100%; height: 180px; overflow: hidden; flex-shrink: 0; }
.csp-mq-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.csp-mq-card:hover .csp-mq-photo img { transform: scale(1.04); }
.csp-mq-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; line-height: 1.65; color: var(--dark); padding: 1.4rem 1.4rem .8rem; flex: 1; }
.csp-mq-card footer { padding: .8rem 1.4rem 1.2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .5rem; }
.csp-mq-author strong { display: block; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brown); font-style: normal; }
.csp-mq-author span { font-size: .58rem; color: var(--muted); }
.csp-mq-course { display: flex; align-items: center; gap: .4rem; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* Para quem */
.csp-section--para-quem { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0; overflow: hidden; }
.csp-pq-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.csp-pq-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,15,10,.55) 0%, rgba(20,15,10,.72) 100%); }
.csp-pq-body { position: relative; z-index: 1; width: 100%; max-width: 680px; padding: 6rem 8vw; display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
.csp-section-head--light .s-label { color: var(--gold); }
.csp-section-head--light .s-title { color: #fff; }
.csp-section-head--light .s-title em { color: var(--gold-light); }
.csp-checklist--light li { color: rgba(255,255,255,.9); }
.csp-checklist--light .csp-check-dot { background: var(--gold); }

/* Instrutora */
.csp-section--prof { background: transparent; }
.csp-prof { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.csp-prof-photo { aspect-ratio: 3/4; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%); }
.csp-prof-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.csp-prof-photo:hover img { transform: scale(1.03); }
.csp-prof-bio { font-size: .74rem; line-height: 1.9; color: var(--brown); margin-top: .9rem; }
.csp-prof-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.csp-prof-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--dark); line-height: 1; }
.csp-prof-stat span { display: block; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* Oferta */
.csp-section--oferta { background: var(--dark); border-color: transparent; width: 100%; }
.csp-section--oferta .csp-inner { padding-top: 5rem; padding-bottom: 5rem; }
.csp-section--oferta .s-label { color: var(--gold); }
.csp-section--oferta .s-title { color: #fff; }
.csp-offer { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.csp-offer-price-block { display: flex; flex-direction: column; gap: .4rem; }
.csp-offer-price { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 4.2rem); font-weight: 300; color: #fff; line-height: 1; }
.csp-offer-parcel { font-size: .72rem; color: rgba(255,255,255,.52); margin-bottom: .8rem; }
.csp-offer-includes { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.csp-offer-includes-label { font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.csp-offer-includes li { display: flex; align-items: center; gap: .8rem; font-size: .72rem; color: rgba(255,255,255,.72); line-height: 1.5; }
.csp-offer-includes .csp-check-dot { background: var(--gold); }

/* FAQ */
.csp-faq { display: grid; gap: 0; }
.csp-faq-item { border-bottom: 1px solid var(--border); }
.csp-faq-item:first-child { border-top: 1px solid var(--border); }
.csp-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; background: none; border: none; cursor: pointer; font-size: .78rem; font-weight: 500; color: var(--dark); text-align: left; transition: color .2s; }
.csp-faq-q:hover { color: var(--gold); }
.csp-faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: transform .28s ease; }
.csp-faq-item--open .csp-faq-icon { transform: rotate(180deg); }
.csp-faq-a { overflow: hidden; max-height: 0; transition: max-height .28s ease; }
.csp-faq-a p { padding: 0 0 1.2rem; font-size: .72rem; line-height: 1.9; color: var(--brown); }

/* CTA final */
.csp-cta-final { width: 100%; }
.csp-cta-final .csp-inner { padding-top: 5rem; padding-bottom: 5rem; }
.csp-cta-final h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 300; color: var(--dark); line-height: 1.2; margin-bottom: .8rem; }
.csp-cta-final h2 em { font-style: italic; color: var(--rose); }
.csp-cta-final p { font-size: .72rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.8rem; max-width: 440px; }

/* Sticky bar */
.csp-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: rgba(255,252,249,.97); backdrop-filter: blur(8px); border-top: 1px solid var(--border); transform: translateY(100%); transition: transform .3s ease; padding: .9rem 5vw; }
.csp-sticky-bar--visible { transform: translateY(0); }
.csp-sticky-bar-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.csp-sticky-bar-info strong { display: block; font-size: .72rem; color: var(--dark); font-weight: 700; }
.csp-sticky-bar-info span { font-size: .62rem; color: var(--muted); }

/* ── LINKS PAGE ───────────────────────────────────────────────── */
.links-page { background: linear-gradient(160deg, #1a0e0b 0%, #2e1812 60%, #1a0e0b 100%); }
.links-page-main { min-height: 100vh; position: relative; overflow: hidden; }
.links-page-main::before { content: ''; position: fixed; inset: 0; background: radial-gradient(circle at 50% 20%, rgba(180,110,80,.18), transparent 55%); pointer-events: none; }
.links-shell { min-height: 100vh; display: flex; align-items: stretch; justify-content: center; padding: 2.5rem 1rem; }
.links-card { position: relative; z-index: 1; width: 100%; max-width: 580px; min-height: calc(100vh - 5rem); padding: 5.6rem 1.1rem 1.4rem; background: rgba(255,248,244,.96); backdrop-filter: blur(10px); border-radius: 24px; box-shadow: 0 24px 40px rgba(0,0,0,.4); display: flex; flex-direction: column; }
.links-profile { display: flex; flex-direction: column; align-items: center; text-align: center; color: #fff; }
.links-avatar-wrap { width: 98px; height: 98px; border-radius: 999px; overflow: hidden; border: 4px solid rgba(255,255,255,.26); box-shadow: 0 18px 30px rgba(60,33,28,.22); }
.links-avatar { width: 100%; height: 100%; object-fit: cover; display: block; }
.links-brand-mark { margin: 1rem 0 .85rem; }
.links-brand-mark img { height: 28px; width: auto; display: block; }
.links-profile h1 { font-family: 'IBM Plex Sans', 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 700; color: #2b1510; }
.links-profile p { margin-top: .45rem; max-width: 28ch; font-size: .98rem; line-height: 1.55; color: rgba(43,21,16,.72); overflow-wrap: anywhere; }
.links-list { margin-top: 2rem; display: grid; gap: .9rem; }
.links-item { position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr) 24px; align-items: center; gap: 1rem; padding: .9rem 1rem; background: rgba(255,255,255,.95); color: #2b2b2b; text-decoration: none; border-radius: 14px; box-shadow: 0 6px 20px rgba(0,0,0,.22); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.links-item:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.3); background: #fff; }
.links-item-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #2d1712, #8e6b5d); color: #fff; border-radius: 10px; }
.links-item-icon svg { width: 22px; height: 22px; }
.links-item-copy { min-width: 0; display: flex; flex-direction: column; }
.links-item-copy strong { font-family: 'IBM Plex Sans', 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; line-height: 1.2; color: #2b2b2b; overflow-wrap: anywhere; }
.links-item-copy small { margin-top: .2rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: #8c6558; }
.links-item-arrow { color: #8c6558; opacity: .9; }
.links-item-arrow svg { width: 18px; height: 18px; }
.links-socials { margin-top: 1.4rem; display: flex; align-items: center; justify-content: center; gap: .7rem; }
.links-socials a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: #2b1510; background: rgba(43,21,16,.08); border: 1px solid rgba(43,21,16,.14); transition: transform .2s ease, background .2s ease; }
.links-socials a:hover { transform: translateY(-2px); background: rgba(43,21,16,.14); }
.links-socials svg { width: 18px; height: 18px; }
.links-footer { margin-top: auto; padding-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 1rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(43,21,16,.55); text-align: center; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .reels-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .aesthetics-wrap { grid-template-columns: 1fr auto; }
  .aesthetics-thumb { display: none; }
}

@media (max-width: 768px) {
  section { height: auto; min-height: 100vh; }
  .section-inner { padding-top: 5.5rem; padding-bottom: 3rem; height: auto; justify-content: flex-start; }
  .dot-nav { display: none; }
  .header-nav { display: none; }
  .mob-menu-btn { display: flex; }
  #hero { height: 100vh; min-height: 100vh; }
  .hero-scroll { display: none; }
  .hero-content { padding: 1.5rem; }
  .hero-logo-img { height: 80px; }
  .hero-btns { flex-direction: column; align-items: center; gap: .8rem; width: 100%; max-width: 320px; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .btn { padding: .85rem 2rem; font-size: .62rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 0 8vw 2.5rem; }
  .gallery-strip-item img { aspect-ratio: 1 / 1; }
  .nb-lightbox-prev { left: .8rem; }
  .nb-lightbox-next { right: .8rem; }
  .nb-lightbox-arrow { width: 38px; height: 38px; }
  .nb-lightbox-img { max-width: 94vw; max-height: 80vh; }
  #quote-section { height: auto; min-height: 0; }
  .quote-inner { min-height: 0; height: auto; padding: 5rem 8vw; justify-content: center; align-items: center; }
  .quote-mark { font-size: 5rem; }
  .quote-text { font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: 2.5rem; }
  .founder-row,
  .founder-row--reverse { flex-direction: column-reverse; padding: 2.5rem 0; }
  .founder-col-text { padding: 2rem 8vw; }
  .founder-col-text--full { padding: 2rem 8vw; }
  .founder-col-img { flex: none; width: 100%; padding: 1.5rem 0; }
  .founder-photo-frame { max-width: 260px; margin: 0 auto; }
  .founder-photo-frame--rect { max-width: 280px; }
  .founder-meta { gap: 2rem; }
  #history .section-inner { flex-direction: column; gap: 1.5rem; }
  .history-circle { width: 192px; height: 192px; opacity: 0; transform: none; transition: opacity 1s ease .3s; }
  .history-right.visible .history-circle { opacity: 1; }
  .history-circle::before { width: 214px; height: 214px; }
  .history-right { order: -1; }
  #procedimentos { height: auto; min-height: 0; }
  #procedimentos .section-inner { padding-top: 4rem; padding-bottom: 4rem; }
  .idx-procs-grid { display: flex; flex-direction: row; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: .8rem; padding-right: 5vw; scrollbar-width: none; border: none; background: transparent; }
  .idx-procs-grid::-webkit-scrollbar { display: none; }
  .idx-proc-item { flex: 0 0 82vw; scroll-snap-align: start; flex-shrink: 0; border: 1px solid var(--beige); }
  .reels-layout { flex-direction: column; padding: 5.5rem 0 2rem; gap: 0; }
  .reels-text { flex: none; padding: 0 8vw 1.5rem; }
  .reels-grid { display: flex; flex-direction: row; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; height: 56vh; width: 100%; gap: .8rem; padding-right: 5vw; scroll-padding-left: 8vw; scrollbar-width: none; }
  .reels-grid .reel-cell:first-child { margin-left: 8vw; }
  .reels-grid::-webkit-scrollbar { display: none; }
  .reel-cell { flex: 0 0 82vw; scroll-snap-align: start; flex-shrink: 0; border-radius: 0; outline: none; }
  .aesthetics-inner { gap: 1.4rem; padding: 4rem 8vw 3.5rem; }
  .aesthetics-services { display: flex; flex-direction: row; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: .8rem; padding-right: 5vw; scrollbar-width: none; }
  .aesthetics-services::-webkit-scrollbar { display: none; }
  .aesthetics-services .est-card { flex: 0 0 82vw; scroll-snap-align: start; flex-shrink: 0; transform: none !important; }
  .aesthetics-doctor { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1rem; }
  .slider-nav { display: flex; }
  .course-learn-more { margin-top: 0; }
  #products { height: auto; min-height: 100vh; }
  .products-layout { flex-direction: column; height: auto; min-height: 100vh; }
  .products-video-wrap { flex: 0 0 auto; width: 100%; height: 52vw; max-height: 50vh; }
  .products-video-overlay { background: linear-gradient(to bottom, rgba(16,12,9,0) 30%, rgba(16,12,9,1) 100%); }
  .products-content { padding: 1.5rem 8vw 3rem; flex: none; width: 100%; }
  #courses { height: auto; min-height: 0; }
  #courses .section-inner { padding-top: 4rem; padding-bottom: 4rem; }
  .courses-grid { display: flex; flex-direction: row; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: .8rem; padding-right: 5vw; scrollbar-width: none; }
  .courses-grid::-webkit-scrollbar { display: none; }
  .course-card { flex: 0 0 82vw; scroll-snap-align: start; flex-shrink: 0; }
  .course-actions { flex-direction: column; align-items: stretch; }
  .course-view-btn, .course-learn-more { justify-content: center; width: 100%; }
  #instagram { height: auto; min-height: 0; }
  .insta-inner { padding-top: 4rem; padding-bottom: 4rem; height: auto; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  #reviews { height: auto; min-height: 0; }
  .reviews-inner { height: auto; padding-top: 4rem; padding-bottom: 4rem; }
  .review-progress { width: 60px; }
  .review-nav { gap: 1rem; }
  .transformation-content { text-align: center; align-items: center; }
  #contact .section-inner { flex-direction: column !important; align-items: flex-start !important; gap: 2rem; }
  .contact-left { display: block; width: 100%; }
  .contact-right { width: 100%; }
  .maps-wrap { height: 150px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cmod-inner { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .cmod-box { max-height: 92vh; }
  .cmod-instructor-photo { width: 48px; height: 48px; }
  .p-hero { height: 44vh; min-height: 280px; }
  .p-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .p-hero-content { padding: 0 5vw 2.5rem; }
  .csp-hero { min-height: 100svh; }
  .csp-hero-body { padding: 5.5rem 5vw 3.5rem; }
  .csp-nav a { padding: .8rem .7rem; font-size: .5rem; letter-spacing: .12em; }
  .csp-inner { padding: 3.5rem 6vw; }
  .csp-benefits { grid-template-columns: 1fr; gap: 1.4rem; }
  .csp-prof { grid-template-columns: 1fr; gap: 2rem; justify-items: center; }
  .csp-prof-photo { width: 220px; aspect-ratio: 3/4; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%); }
  .csp-prof-info { width: 100%; text-align: left; }
  .csp-testimonials { grid-template-columns: 1fr; }
  .csp-offer { grid-template-columns: 1fr; gap: 2rem; }
  .csp-sticky-bar-inner { flex-direction: column; align-items: stretch; gap: .6rem; }
  .csp-sticky-bar-info { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
  .links-shell { padding: 0; }
  .links-card { min-height: 100vh; border-radius: 0; padding: 4.8rem .9rem 1.2rem; box-shadow: none; }
  .links-profile h1 { font-size: 1.45rem; }
  .links-profile p { font-size: .92rem; }
  .links-item { grid-template-columns: 48px minmax(0, 1fr) 20px; gap: .8rem; padding: .82rem .85rem; }
  .links-item-icon { width: 42px; height: 42px; }
  .links-item-copy strong { font-size: .92rem; }
  .links-item-copy small { font-size: .62rem; }
  .p-header-cta { display: none; }
  .p-hero-scroll { display: none; }
  .cat-link { padding: .7rem .85rem; font-size: .52rem; }
  .procs-list { grid-template-columns: 1fr; }
  .procs-list.single .proc-item { flex-direction: column; }
  .procs-list.single .proc-thumb { width: 100%; height: 200px; }
  .aesthetics-wrap { grid-template-columns: 1fr; }
  .estetica-price-panel { flex-direction: row; justify-content: flex-start; gap: 1rem; padding: 1rem 1.4rem; }
  .p-cta-block { flex-direction: column; align-items: flex-start; padding: 2rem 1.4rem; }
  .p-footer { flex-direction: column; align-items: flex-start; }
  .modal-box { width: 96vw; }
  .modal-video-wrap video { max-height: 65vh; }
  .cat-nav-inner { padding: 0 3vw; }
  
  .mc-table { grid-template-columns: 1fr; }
  .mc-label-col { display: none; }
  .mc-tech-col { border: 1px solid var(--border); margin-bottom: 1px; }
  .mc-cell[data-label]::before { content: attr(data-label); display: block; font-size: .52rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
}
