/* ══ TOKENS ══════════════════════════════════════════════ */
:root {
    --bg:        #FAFAF8;
    --surface:   #F2EDE6;
    --surface2:  #EAE3D9;
    --gold:      #C4A882;
    --gold-dark: #9E7E55;
    --gold-light:#DDD0BB;
    --sage:      #8A9E8C;
    --ink:       #1C1C1A;
    --ink-mid:   #4A4945;
    --ink-muted: #8A8780;
    --white:     #FFFFFF;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(28,28,26,.07);
    --shadow-md: 0 8px 24px rgba(28,28,26,.10);
    --shadow-lg: 0 20px 60px rgba(28,28,26,.12);
}

/* ══ RESET ══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.6; border: 30px; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ══ TYPOGRAPHY ══════════════════════════════════════════ */
.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: .6rem;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
}

/* ══ BUTTONS ══════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--gold-dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    border-radius: 100px;
    transition: background .25s, transform .2s, box-shadow .25s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,168,130,.35); }
.btn-primary.btn-large { padding: 16px 40px; font-size: 15px; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: 1.5px solid var(--gold-light);
    color: var(--ink-mid);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    border-radius: 100px;
    transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

/* ══ NAVBAR ══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background .3s, box-shadow .3s;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(250,250,248,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--gold-light);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-logo { height: 40px; }
.nav-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: .03em;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-mid);
    letter-spacing: .03em;
    transition: color .2s;
}
.nav-links a:hover { color: var(--gold-dark); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-icon { font-size: 18px; color: var(--ink-mid); transition: color .2s; }
.nav-icon:hover { color: var(--gold-dark); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px 32px 28px;
    background: rgba(250,250,248,.98);
    border-top: 1px solid var(--gold-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--ink-mid); }

/* ══ HERO ══════════════════════════════════════════════ */
.hero {
    padding: 120px 32px 80px;
    background: linear-gradient(160deg, var(--bg) 0%, var(--surface) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 3100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-ring {
    width: 360px;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gold-light);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero-badge {
    position: absolute;
    bottom: -16px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-md);
    padding: 0px 5px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
}
.badge-label {
    font-size: 11px;
    color: var(--ink-muted);
    line-height: 1.4;
}

.hero-title {
    font-size: clamp(40px, 5vw, 62px);
    margin-bottom: 1.2rem;
    color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--gold-dark); }

.hero-body {
    font-size: 15px;
    color: var(--ink-mid);
    max-width: 440px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-muted);
    flex-wrap: wrap;
}
.hero-location i { color: var(--gold); font-size: 13px; }
.sep { color: var(--gold-light); }

/* ══ SERVICES ══════════════════════════════════════════ */
.services {
    padding: 80px 32px 100px;
    background: var(--white);
}

.services-inner {
    max-width: 860px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-title {
    font-size: clamp(32px, 4vw, 48px);
}

/* SERVICE CARD */
.service-card {
    background: var(--bg);
    border: 1px solid var(--surface2);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: box-shadow .3s;
}
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card--featured {
    border-color: var(--gold-light);
    background: linear-gradient(135deg, #FAFAF8 0%, #F5EFE6 100%);
}

.card-header { margin-bottom: 24px; }

.card-title-group {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.card-title-group h3 {
    font-size: 26px;
    font-weight: 400;
}

.price-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.price-tag {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-dark);
    background: rgba(196,168,130,.12);
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
}
.price-tag small { font-weight: 400; opacity: .8; }
.price-highlight { background: var(--gold-dark); color: var(--white); }

.card-desc {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.7;
    max-width: 600px;
}

/* ── Before/After Slider ── */
.before-after-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.before-after {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    touch-action: none;
    background: var(--surface);
}

/* Both layers fill the full container — no zoom, no distortion */
.ba-after,
.ba-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* The "before" layer is clipped on the right side via JS clip-path */
.ba-before {
    /* initial clip set by JS on init */
}

.ba-after img,
.ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    pointer-events: none;
}

.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.ba-handle::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,.2);
}
.ba-handle-circle {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gold-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
    position: relative;
    z-index: 1;
}

.ba-label {
    position: absolute;
    bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(28,28,26,.45);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 100px;
    pointer-events: none;
    z-index: 5;
}
.ba-label-before { left: 12px; }
.ba-label-after  { right: 12px; }

/* ── Multi BA grid ── */
.multi-ba {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ── Gallery grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-sm);
    transition: transform .4s;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ── Exo grid ── */
.exo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.exo-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--surface2);
}
.exo-item img { width: 100%; height: 200px; object-fit: cover; }
.exo-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.exo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--ink);
}
.exo-price {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 500;
}
.exo-info p { font-size: 12px; color: var(--ink-muted); line-height: 1.5; margin-top: 4px; }

/* ── Depilações ── */
.depil-list { display: flex; flex-direction: column; gap: 1px; }
.depil-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--surface2);
}
.depil-item:last-child { border-bottom: none; }
.depil-name { font-size: 15px; color: var(--ink-mid); }
.depil-name small { font-size: 12px; color: var(--ink-muted); }
.depil-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--gold-dark);
}

/* ══ CTA SECTION ══════════════════════════════════════ */
.cta-section {
    background: var(--ink);
    padding: 100px 32px;
    text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-title {
    font-size: clamp(34px, 4vw, 52px);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}
.cta-sub {
    margin-top: 1.5rem;
    font-size: 13px;
    color: var(--ink-muted);
}

/* ══ FOOTER ══════════════════════════════════════════ */
.footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 32px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-muted);
    font-size: 14px;
}
.footer-logo { height: 28px; opacity: .7; }
.footer-links {
    display: flex;
    gap: 20px;
    margin-left: auto;
}
.footer-links a { font-size: 13px; color: var(--ink-muted); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--ink-muted); width: 100%; opacity: .6; }

/* ══ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-image-wrap { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .hero-location { justify-content: center; }
    .hero-body { margin-left: auto; margin-right: auto; }
    .hero-image-ring { width: 280px; height: 320px; }
    .nav-links, .nav-actions .btn-primary { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 640px) {
    .hero { padding: 100px 20px 60px; }
    .services { padding: 60px 20px 80px; }
    .service-card { padding: 24px 18px; }
    .multi-ba { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img { height: 220px; }
    .exo-grid { grid-template-columns: 1fr; }
    .before-after { height: 280px; }
    .nav-inner { padding: 16px 20px; }
    .mobile-menu { padding: 20px 20px 28px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { margin-left: 0; }
    .cta-section { padding: 70px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}