/* ============================================================
   Luck Patricia — Centro de Estética
   Estilo: luxo leve, SPA sereno, cores nude + ameixa + champagne
   ============================================================ */

/* --- Design Tokens --- */
:root {
    /* Palette */
    --blush: #F5E6E8;
    --blush-light: #FBF3F4;
    --rose: #D8A7B1;
    --rose-deep: #B47A8C;
    --plum: #4A2C3A;
    --plum-deep: #33202A;
    --gold: #C9A227;
    --gold-deep: #9A7B1E;
    --bg: #FDFBFA;
    --white: #FFFFFF;
    --text: #4A2C3A;
    --text-body: #6B5560;
    --text-soft: #9A8A91;
    --line: #EDE0E1;
    --success: #5F8A6A;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Layout */
    --container-max: 1160px;
    --header-height: 84px;

    /* Transitions */
    --t-fast: 0.2s ease;
    --t-base: 0.35s ease;
    --t-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-body);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text); font-weight: 500; line-height: 1.15; }

/* --- Skip link --- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--plum);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    z-index: 2000;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Typography helpers --- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.section { padding: var(--space-3xl) 0; }
.section--alt { background-color: var(--blush-light); }
.section--plum { background: linear-gradient(160deg, var(--plum) 0%, var(--plum-deep) 100%); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto var(--space-2xl); }
.section__title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    letter-spacing: 0.01em;
    margin: var(--space-sm) 0 var(--space-md);
}
.section__title em { font-style: italic; color: var(--rose-deep); }
.section__lead { font-size: 1.05rem; color: var(--text-body); }
.section--plum .section__title { color: var(--white); }
.section--plum .section__title em { color: var(--rose); }
.section--plum .section__lead { color: rgba(255,255,255,0.72); }
.section--plum .eyebrow { color: var(--gold); }

/* --- Ornamental divider --- */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin: 0 auto;
}
.ornament::before, .ornament::after {
    content: '';
    width: 64px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
}
.ornament__gem {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--t-base);
    text-align: center;
}
.btn--solid {
    background-color: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}
.btn--solid:hover { background-color: var(--plum-deep); border-color: var(--plum-deep); transform: translateY(-2px); }
.btn--outline {
    background-color: transparent;
    color: var(--plum);
    border-color: rgba(74,44,58,0.4);
}
.btn--outline:hover { background-color: var(--plum); color: var(--white); border-color: var(--plum); }
.btn--gold {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn--gold:hover { background-color: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }
.btn--light {
    background-color: var(--white);
    color: var(--plum);
    border-color: var(--white);
}
.btn--light:hover { background-color: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { background-color: var(--white); color: var(--plum); border-color: var(--white); }

/* --- Header --- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(253, 251, 250, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all var(--t-base);
}
.header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 30px rgba(74,44,58,0.06);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.8rem; }
.logo__icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo__icon img { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em; color: var(--plum); }
.logo__tagline { font-family: var(--font-body); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: var(--rose-deep); }

/* Nav */
.nav__list { display: flex; align-items: center; gap: 2.2rem; }
.nav__link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-body);
    position: relative;
    padding: 0.4rem 0;
    transition: color var(--t-fast);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background-color: var(--gold);
    transform: translateX(-50%);
    transition: width var(--t-base);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--plum); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.burger__line {
    display: block;
    width: 26px;
    height: 1.5px;
    background-color: var(--plum);
    transition: all var(--t-base);
    transform-origin: center;
}
.burger.is-active .burger__line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-active .burger__line:nth-child(2) { opacity: 0; }
.burger.is-active .burger__line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay (created by JS) */
.nav-overlay {
    position: fixed; inset: 0;
    background-color: rgba(51,32,42,0.45);
    z-index: 998;
    opacity: 0; pointer-events: none;
    transition: opacity var(--t-base);
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 18% 16%, rgba(216,167,177,0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 84% 22%, rgba(201,162,39,0.13) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 110%, rgba(245,230,232,0.9) 0%, transparent 60%),
        var(--bg);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Ccircle cx='2' cy='2' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 2rem) 0 3rem;
}
.hero__monogram {
    width: 72px; height: 72px;
    margin: 0 auto var(--space-lg);
}
.hero__monogram img { width: 100%; height: 100%; }
.hero__title {
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--plum);
    margin-bottom: var(--space-lg);
}
.hero__title em { font-style: italic; color: var(--rose-deep); }
.hero__subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
}
.hero__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.hero__scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.hero__scroll::after {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(var(--gold), transparent);
}

/* --- Philosophy / manifesto --- */
.manifesto {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.manifesto__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--plum);
    margin: var(--space-xl) 0;
}
.manifesto__quote strong { color: var(--rose-deep); font-weight: 500; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2xl); margin-top: var(--space-2xl); }
.value { text-align: center; padding: 0 var(--space-md); }
.value__num { font-family: var(--font-heading); font-size: 1rem; color: var(--gold); letter-spacing: 0.2em; }
.value__title { font-size: 1.35rem; margin: var(--space-sm) 0 var(--space-xs); }
.value__text { font-size: 0.92rem; color: var(--text-body); }

/* --- Category overview cards --- */
.categories__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-lg); margin-top: var(--space-2xl); }
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-sm);
    background: var(--white);
    border: 1px solid var(--line);
    transition: all var(--t-base);
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(74,44,58,0.08); border-color: var(--rose); }
.category-card__icon { width: 44px; height: 44px; color: var(--rose-deep); }
.category-card__icon svg { width: 100%; height: 100%; }
.category-card__title { font-size: 1.25rem; letter-spacing: 0.02em; }
.category-card__meta { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }

/* --- Featured treatments --- */
.treatments__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin-top: var(--space-2xl); }
.treatment-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--t-base);
}
.treatment-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    opacity: 0;
    transition: opacity var(--t-base);
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(74,44,58,0.08); }
.treatment-card:hover::before { opacity: 1; }
.treatment-card__tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.treatment-card__title { font-size: 1.5rem; margin: var(--space-xs) 0 var(--space-sm); }
.treatment-card__text { font-size: 0.9rem; color: var(--text-body); margin-bottom: var(--space-md); }
.treatment-card__price { font-family: var(--font-heading); font-size: 1.9rem; color: var(--plum); }
.treatment-card__price span { font-size: 0.85rem; color: var(--text-soft); font-family: var(--font-body); }

/* --- Testimonials carousel --- */
.testimonials { text-align: center; }
.carousel { position: relative; max-width: 760px; margin: var(--space-2xl) auto 0; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform var(--t-slow); }
.testimonial {
    flex: 0 0 100%;
    padding: 0 var(--space-lg);
    text-align: center;
}
.testimonial__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: var(--space-md); }
.testimonial__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--plum);
    margin-bottom: var(--space-lg);
}
.testimonial__name { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.carousel__nav { display: flex; align-items: center; justify-content: center; gap: var(--space-lg); margin-top: var(--space-xl); }
.carousel__btn {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--line);
    color: var(--plum); cursor: pointer;
    transition: all var(--t-base);
}
.carousel__btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.carousel__dots { display: flex; gap: 0.6rem; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; transition: all var(--t-base); }
.carousel__dot.is-active { background: var(--gold); }

/* --- CTA band --- */
.cta { text-align: center; padding: var(--space-3xl) 0; }
.cta__inner { max-width: 640px; margin: 0 auto; }
.cta__title { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin: var(--space-sm) 0 var(--space-md); }
.cta__text { color: rgba(255,255,255,0.72); margin-bottom: var(--space-xl); }

/* --- Footer --- */
.footer { background-color: var(--plum); color: rgba(255,255,255,0.72); }
.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0 var(--space-2xl);
}
.footer__brand-text { margin-top: var(--space-md); font-size: 0.9rem; line-height: 1.8; max-width: 300px; }
.footer .logo__name { color: var(--white); }
.footer .logo__tagline { color: var(--rose); }
.footer__heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}
.footer__list { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__list a { font-size: 0.92rem; transition: color var(--t-fast); }
.footer__list a:hover { color: var(--rose); }
.footer__list li { font-size: 0.92rem; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-lg) 0;
}
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.82rem;
}
.footer__bottom a { color: var(--rose); }
.footer__bottom a:hover { text-decoration: underline; }
.footer__legal { display: flex; gap: 1rem; }

/* ============================================================
   Inner pages
   ============================================================ */
.page-header {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(216,167,177,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 0%, rgba(201,162,39,0.1) 0%, transparent 50%),
        var(--bg);
    position: relative;
    overflow: hidden;
}
.page-header__title { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 400; }
.page-header__title em { font-style: italic; color: var(--rose-deep); }
.page-header__lead { max-width: 600px; margin: var(--space-md) auto 0; color: var(--text-body); }
.page-header .ornament { margin-top: var(--space-lg); }

.breadcrumb {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--text-soft);
}
.breadcrumb a { color: var(--gold-deep); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ============================================================
   Serviços page — price list
   ============================================================ */
.tabs__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 auto var(--space-2xl);
}
.tabs__btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    background: none;
    border: 1px solid var(--line);
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--t-base);
}
.tabs__btn:hover { border-color: var(--rose); color: var(--plum); }
.tabs__btn.is-active { background-color: var(--plum); border-color: var(--plum); color: var(--white); }

.tabs__panel { max-width: 820px; margin: 0 auto; }
.price-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.price-cat { text-align: center; margin-bottom: var(--space-xl); }
.price-cat__title { font-size: 1.9rem; font-weight: 400; }
.price-cat__title em { font-style: italic; color: var(--rose-deep); }
.price-cat__desc { font-size: 0.95rem; color: var(--text-body); max-width: 520px; margin: 0 auto; }

.price-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--line);
}
.price-item:last-child { border-bottom: none; }
.price-item__head { display: flex; align-items: baseline; gap: 0.7rem; }
.price-item__name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; color: var(--plum); white-space: nowrap; }
.price-item__leader {
    flex: 1;
    border-bottom: 1px dotted var(--rose);
    transform: translateY(-5px);
    min-width: 1.5rem;
}
.price-item__price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--plum); white-space: nowrap; }
.price-item__desc { font-size: 0.92rem; color: var(--text-body); max-width: 640px; }
.price-item__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.price-item__meta svg { width: 13px; height: 13px; }

/* Packages */
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin-top: var(--space-2xl); }
.package-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--t-base);
    position: relative;
}
.package-card--featured { border-color: var(--gold); }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(74,44,58,0.08); }
.package-card__badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
}
.package-card__name { font-size: 1.5rem; margin: var(--space-sm) 0; }
.package-card__sessions { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: var(--space-sm); }
.package-card__desc { font-size: 0.9rem; color: var(--text-body); flex: 1; margin-bottom: var(--space-md); }
.package-card__price { font-family: var(--font-heading); font-size: 2rem; color: var(--plum); }
.package-card__price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-soft); }
.package-card__savings { font-size: 0.78rem; color: var(--success); margin: 0.3rem 0 var(--space-md); }

/* ============================================================
   Sobre page
   ============================================================ */
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.about-story__text p { margin-bottom: var(--space-md); color: var(--text-body); }
.about-story__visual {
    position: relative;
    aspect-ratio: 4/5;
    background:
        radial-gradient(circle at 30% 20%, rgba(216,167,177,0.5) 0%, transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(201,162,39,0.25) 0%, transparent 50%),
        linear-gradient(150deg, var(--blush) 0%, var(--blush-light) 100%);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-story__visual-inner { text-align: center; padding: var(--space-xl); }
.about-story__visual-inner .logo__icon { width: 90px; height: 90px; margin: 0 auto var(--space-md); }

.standards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin-top: var(--space-2xl); }
.standard { text-align: center; padding: var(--space-xl); border: 1px solid var(--line); background: var(--white); }
.standard__icon { width: 40px; height: 40px; margin: 0 auto var(--space-md); color: var(--rose-deep); }
.standard__icon svg { width: 100%; height: 100%; }
.standard__title { font-size: 1.3rem; margin-bottom: var(--space-xs); }
.standard__text { font-size: 0.9rem; color: var(--text-body); }

/* Registration data block */
.regdata { background: var(--white); border: 1px solid var(--line); max-width: 720px; margin: var(--space-2xl) auto 0; }
.regdata__head { text-align: center; padding: var(--space-xl) var(--space-lg) var(--space-md); border-bottom: 1px solid var(--line); }
.regdata__title { font-size: 1.6rem; }
.regdata__list { padding: var(--space-md) var(--space-xl) var(--space-xl); }
.regdata__row { display: flex; justify-content: space-between; gap: var(--space-md); padding: var(--space-sm) 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.regdata__row:last-child { border-bottom: none; }
.regdata__key { color: var(--text-soft); }
.regdata__val { color: var(--plum); font-weight: 400; text-align: right; }

/* ============================================================
   Contato page
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-3xl); }
.contact-info__list { display: flex; flex-direction: column; gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.contact-info__item { display: flex; gap: var(--space-md); align-items: flex-start; }
.contact-info__icon { width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--rose-deep); background: var(--white); }
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.2rem; }
.contact-info__value { font-size: 1rem; color: var(--text); }
.contact-info__value a:hover { color: var(--rose-deep); text-decoration: underline; }

.hours { background: var(--white); border: 1px solid var(--line); padding: var(--space-lg); }
.hours__title { font-size: 1.4rem; margin-bottom: var(--space-md); }
.hours__list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours__row { display: flex; justify-content: space-between; font-size: 0.92rem; padding: 0.35rem 0; border-bottom: 1px solid var(--line); }
.hours__row:last-child { border-bottom: none; }
.hours__row span:first-child { color: var(--text-soft); }
.hours__row span:last-child { color: var(--plum); }
.hours__row.is-closed span:last-child { color: var(--rose-deep); }

.contact-form { background: var(--white); border: 1px solid var(--line); padding: var(--space-xl); }
.contact-form__title { font-size: 1.7rem; margin-bottom: 0.3rem; }
.contact-form__subtitle { font-size: 0.92rem; color: var(--text-body); margin-bottom: var(--space-xl); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { margin-bottom: var(--space-lg); }
.form-label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.4rem; }
.form-label__req { color: var(--rose-deep); }
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    background-color: var(--bg);
    border: 1px solid var(--line);
    border-radius: 0;
    transition: all var(--t-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%234A2C3A' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.4rem;
    cursor: pointer;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.12); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid { border-color: #c05b6a; }
.form-error { display: none; font-size: 0.78rem; color: #b03a4d; margin-top: 0.3rem; }
.form-error.is-visible { display: block; }
.form-note { font-size: 0.8rem; color: var(--text-soft); margin-top: var(--space-md); }

/* Success modal */
.modal {
    position: fixed; inset: 0;
    z-index: 1500;
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-md);
    opacity: 0; pointer-events: none;
    transition: opacity var(--t-base);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(51,32,42,0.55); }
.modal__dialog {
    position: relative;
    background: var(--white);
    border-top: 3px solid var(--gold);
    max-width: 440px;
    width: 100%;
    padding: var(--space-xl);
    text-align: center;
    transform: translateY(16px);
    transition: transform var(--t-base);
}
.modal.is-open .modal__dialog { transform: translateY(0); }
.modal__icon { width: 52px; height: 52px; margin: 0 auto var(--space-md); color: var(--gold); }
.modal__icon svg { width: 100%; height: 100%; }
.modal__title { font-size: 1.8rem; margin-bottom: var(--space-sm); }
.modal__text { font-size: 0.95rem; color: var(--text-body); margin-bottom: var(--space-lg); }
.modal__close { width: 100%; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal { max-width: 780px; margin: 0 auto; }
.legal__updated { font-size: 0.82rem; color: var(--text-soft); letter-spacing: 0.04em; margin-bottom: var(--space-2xl); }
.legal h2 { font-size: 1.7rem; margin: var(--space-2xl) 0 var(--space-sm); }
.legal h2:first-of-type { margin-top: 0; }
.legal p { margin-bottom: var(--space-md); color: var(--text-body); }
.legal ul { margin: 0 0 var(--space-md) var(--space-lg); list-style: disc; }
.legal ul li { margin-bottom: 0.4rem; color: var(--text-body); }
.legal a { color: var(--rose-deep); text-decoration: underline; }

/* ============================================================
   Reveal animation (JS adds .js to <html>)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal-delay-1 { transition-delay: 0.12s; }
.js .reveal-delay-2 { transition-delay: 0.24s; }
.js .reveal-delay-3 { transition-delay: 0.36s; }
.js .reveal-delay-4 { transition-delay: 0.48s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    :root { --header-height: 76px; }
    .categories__grid { grid-template-columns: repeat(3, 1fr); }
    .treatments__grid, .packages__grid, .standards { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .about-story__grid, .contact__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
    :root { --header-height: 68px; --space-3xl: 3.5rem; --space-4xl: 4.5rem; }

    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 300px; height: 100vh;
        background-color: var(--bg);
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        box-shadow: -10px 0 40px rgba(74,44,58,0.12);
        transition: right var(--t-base);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-open { right: 0; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav__link { display: block; padding: var(--space-md) 0; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
    .nav__link::after { display: none; }
    .burger { display: flex; }

    .hero { min-height: 88vh; }
    .values { grid-template-columns: 1fr; gap: var(--space-xl); }
    .categories__grid { grid-template-columns: repeat(2, 1fr); }
    .treatments__grid, .packages__grid, .standards { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: var(--space-xl); }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .page-header { padding-top: calc(var(--header-height) + var(--space-2xl)); }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-lg); }
    .categories__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; width: 100%; }
    .hero__actions .btn { width: 100%; }
    .tabs__nav { gap: 0.4rem; }
    .tabs__btn { padding: 0.55rem 1rem; font-size: 0.7rem; }
    .price-item__name { font-size: 1.1rem; white-space: normal; }
    .price-item__price { font-size: 1.15rem; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .footer__legal { flex-wrap: wrap; justify-content: center; }
    .regdata__row { flex-direction: column; gap: 0; text-align: left; }
    .regdata__val { text-align: left; }
}

/* --- Print --- */
@media print {
    .header, .footer, .burger, .nav-overlay, .cta, .hero__actions, .carousel__nav, .tabs__nav, .modal { display: none !important; }
    body { background: white; color: black; }
    .tabs__panel { display: block !important; }
}
