/* ========================================================================
   Dra. Regiane Ferreira · Saúde, Beleza e Estética Avançada
   Paleta rosé/nude com marrom-vinho — sofisticada e feminina.
   ======================================================================== */

:root {
    --primary: #6B3A5B;
    --primary-dark: #4E2A42;
    --primary-soft: #8B5A7A;
    --accent: #B8955E;
    --accent-soft: #D4C4B0;
    --background: #F5F0EC;
    --surface: #FFFFFF;
    --soft-green: #F2E7E2;
    --text: #4A3F3A;
    --muted: #7A6E68;
    --border: #E8DDD8;
    --success: #6B8F71;
    --shadow-sm: 0 2px 8px rgba(78, 42, 66, 0.05);
    --shadow-md: 0 8px 28px rgba(78, 42, 66, 0.08);
    --shadow-lg: 0 18px 60px rgba(78, 42, 66, 0.10);
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 22px;
    --transition: 220ms ease;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.25; }

p { color: var(--text); }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

.text-muted-soft { color: var(--muted) !important; }
.text-primary-soft { color: var(--primary) !important; }

.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--primary); color: #fff;
    padding: .75rem 1rem; z-index: 2000;
    border-bottom-right-radius: var(--radius-sm);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Focus visível ---------- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- Botões ---------- */
.btn {
    border-radius: 999px;
    font-weight: 500;
    padding: .7rem 1.5rem;
    transition: all var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}
.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover { background: #A0824F; color: #fff; }
.btn-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    padding: 0;
}
.btn-link:hover { color: var(--primary-dark); }
.btn-link i { transition: transform var(--transition); }
.btn-link:hover i { transform: translateX(3px); }

/* ---------- Cabeçalho ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.top-bar {
    background: var(--primary-dark);
    color: #E4EFEC;
    padding: .45rem 0;
    font-size: .82rem;
}
.top-bar-link {
    color: #E4EFEC;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: color var(--transition);
}
.top-bar-link:hover { color: var(--accent-soft); }
.top-bar-link i { font-size: .95rem; opacity: .8; }

.main-nav { padding: .9rem 0; }
.navbar-brand { padding-top: 0; padding-bottom: 0; }

.brand-mark { display: inline-flex; align-items: center; gap: .75rem; }
.brand-mark__mono { flex-shrink: 0; }
.brand-mark__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark__name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.05rem;
}
.brand-mark__sub {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted);
    margin-top: .15rem;
}

.navbar .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: .5rem 1rem;
    position: relative;
    transition: color var(--transition);
}
.navbar .nav-link:hover { color: var(--primary); }
.navbar .nav-link.active { color: var(--primary); }
.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: .25rem; left: 50%;
    transform: translateX(-50%);
    width: 18px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: .35rem .55rem;
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: .75rem;
        padding: 1rem;
        background: var(--surface);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
}

/* ---------- Layout ---------- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 6rem 0; }

.eyebrow {
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .22em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.lead {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.divider {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem 0;
    border: 0;
}

/* ---------- Hero ---------- */
.hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero__text { padding-right: 1rem; }
.hero__title { margin-bottom: 1.5rem; }
.hero__title em { color: var(--primary); font-style: italic; }
.hero__lead {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.2rem;
    line-height: 1.55;
    border-left: 2px solid var(--accent);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__differentials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.hero__diff {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}
.hero__diff:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.hero__diff i { color: var(--primary); font-size: 1.25rem; display: block; margin-bottom: .35rem; }
.hero__diff span { font-size: .9rem; font-weight: 500; }

.hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin-left: auto;
}
.hero__visual::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 75%; height: 75%;
    background: var(--soft-green);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.hero__visual::after {
    content: '';
    position: absolute;
    bottom: -25px; left: -25px;
    width: 55%; height: 55%;
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.hero__photo {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--soft-green);
}
.hero__photo-placeholder {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--soft-green), #fff);
    border: 1px dashed var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.hero__photo-placeholder span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .hero__differentials { grid-template-columns: 1fr; }
}

/* ---------- Cards de tratamento ---------- */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.treatment-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.treatment-card__media {
    aspect-ratio: 4 / 3;
    background: var(--soft-green);
    overflow: hidden;
    position: relative;
}
.treatment-card__media img { width: 100%; height: 100%; object-fit: cover; }
.treatment-card__media--icon {
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    background: linear-gradient(135deg, var(--soft-green), #fff);
}
.treatment-card__media--icon i { font-size: 2.6rem; }
.treatment-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.treatment-card__title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--primary-dark); margin-bottom: .5rem; }
.treatment-card__desc { color: var(--muted); font-size: .95rem; flex: 1; }
.treatment-card__cta { margin-top: 1rem; }

/* ---------- Procedimentos — Filtros + Cards Novos ---------- */
.treat-filters {
    display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
    margin-bottom: 2rem; padding: 0;
}
.treat-filter {
    border: 1px solid var(--border); background: var(--surface); color: var(--text);
    padding: .5rem 1.2rem; border-radius: 99px; font-size: .88rem; font-weight: 500;
    cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.treat-filter:hover { border-color: var(--primary); color: var(--primary); }
.treat-filter.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.treat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-bottom: 2.5rem;
}
@media (max-width: 992px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .treat-grid { grid-template-columns: 1fr; } }

.treat-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 1.5rem;
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative; overflow: hidden;
}
.treat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.treat-card__icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--soft-green), #fff);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; color: var(--primary); font-size: 1.5rem;
}
.treat-card__body { flex: 1; }
.treat-card__cat {
    display: inline-block; font-size: .72rem; text-transform: uppercase;
    letter-spacing: .1em; color: var(--muted); font-weight: 600;
    margin-bottom: .4rem;
}
.treat-card__title {
    font-family: 'Playfair Display', serif; font-size: 1.15rem;
    color: var(--primary-dark); margin-bottom: .6rem; line-height: 1.3;
}
.treat-card__desc {
    font-size: .9rem; color: var(--text); line-height: 1.55;
    margin-bottom: 1rem;
}
.treat-card__actions {
    display: flex; gap: .5rem; flex-wrap: wrap; margin-top: auto;
}
.treat-card__btn {
    padding: .45rem .9rem; border-radius: 99px; font-size: .82rem;
    font-weight: 600; text-decoration: none; transition: all var(--transition);
    text-align: center;
}
.treat-card__btn--outline {
    border: 1px solid var(--primary); color: var(--primary); background: transparent;
}
.treat-card__btn--outline:hover { background: var(--primary); color: #fff; }
.treat-card__btn--primary {
    background: var(--primary); color: #fff; border: 1px solid var(--primary);
}
.treat-card__btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.treat-disclaimer {
    display: flex; gap: .8rem; align-items: flex-start;
    background: var(--soft-green); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 1.2rem 1.5rem;
    margin-top: 1rem;
}
.treat-disclaimer i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.treat-disclaimer p { font-size: .85rem; color: var(--text); margin: 0; line-height: 1.5; }

/* ---------- Steps (Como funciona) ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}
.step__title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--primary-dark); margin-bottom: .5rem; }
.step__desc { color: var(--muted); font-size: .95rem; }

@media (max-width: 767.98px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Diferenciais ---------- */
.differentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.differential {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), transform var(--transition);
}
.differential:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.differential i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: .75rem;
    display: inline-block;
}
.differential h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.differential p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: .75rem;
    overflow: hidden;
}
.faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: background var(--transition);
}
.faq__question:hover { background: var(--soft-green); }
.faq__question[aria-expanded="true"] { color: var(--primary); }
.faq__question i { transition: transform var(--transition); color: var(--primary); }
.faq__question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq__answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted);
    display: none;
}
.faq__question[aria-expanded="true"] + .faq__answer { display: block; }

/* ---------- CTA final ---------- */
.cta-final {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(184, 149, 94, 0.18), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(184, 149, 94, 0.12), transparent 40%);
}
.cta-final > * { position: relative; }
.cta-final h2 { color: #fff; }
.cta-final p { color: #E4EFEC; max-width: 560px; margin: 0 auto 1.5rem; }

/* ---------- Formulário de contato ---------- */
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.form-label { font-weight: 500; color: var(--text); margin-bottom: .35rem; font-size: .92rem; }
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: .7rem .9rem;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 90, 88, 0.12);
}
.form-check-input { border-color: var(--border); }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(31, 90, 88, 0.12); border-color: var(--primary); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden; }

.form-message {
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: .95rem;
    display: none;
}
.form-message.is-visible { display: block; }
.form-message--success { background: var(--soft-green); color: var(--primary-dark); border: 1px solid var(--success); }
.form-message--error   { background: #FBECEC; color: #8A2A2A; border: 1px solid #E2B0B0; }

/* ---------- Página sobre ---------- */
.about-photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--soft-green), #fff);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    text-align: center; padding: 2rem;
    border: 1px dashed var(--accent);
    border-radius: var(--radius-lg);
}
.about-photo-placeholder span { font-family: 'Playfair Display', serif; font-style: italic; }

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li {
    padding: 1.25rem 0 1.25rem 1.5rem;
    border-left: 2px solid var(--accent);
    position: relative;
}
.timeline li::before {
    content: '';
    position: absolute;
    left: -6px; top: 1.5rem;
    width: 10px; height: 10px;
    background: var(--primary);
    border-radius: 50%;
}
.timeline strong { color: var(--primary-dark); display: block; }

.field-placeholder {
    background: #FCFAF6;
    border: 1px dashed var(--accent-soft);
    border-radius: var(--radius-sm);
    padding: 1rem;
    color: var(--muted);
    font-size: .92rem;
}
.field-placeholder strong { color: var(--primary-dark); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--primary-dark);
    color: #E4EFEC;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}
.site-footer a { color: #E4EFEC; text-decoration: none; transition: color var(--transition); }
.site-footer a:hover { color: var(--accent-soft); }
.site-footer .footer-title {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.site-footer .brand-mark__name { color: #fff; }
.site-footer .brand-mark__sub { color: var(--accent-soft); }
.site-footer hr.footer-divider { border-color: rgba(228, 239, 236, 0.15); margin: 2.5rem 0 1.25rem; }
.site-footer ul li { padding: .25rem 0; }
.site-footer .text-muted-soft { color: #FFFFFF !important; }
.site-footer .text-muted-soft p,
.site-footer .text-muted-soft a,
.site-footer p.text-muted-soft,
.site-footer div.text-muted-soft,
.site-footer .small.text-muted-soft { color: #FFFFFF !important; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    width: 56px; height: 56px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(46, 125, 98, 0.35);
    z-index: 1030;
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.05);
    color: #fff;
    box-shadow: 0 12px 28px rgba(46, 125, 98, 0.45);
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    background: var(--soft-green);
    padding: 1rem 0;
    font-size: .85rem;
    color: var(--muted);
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumbs li + li::before { content: '/'; padding: 0 .5rem; color: var(--accent); }

/* ---------- Blog ---------- */
.post-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16 / 9; background: var(--soft-green); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.post-card__title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--primary-dark); margin-bottom: .5rem; }
.post-card__excerpt { color: var(--muted); font-size: .92rem; flex: 1; }

/* ---------- Blog post ---------- */
.post-content {
    max-width: 720px;
    margin: 0 auto;
}
.post-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.post-content h2, .post-content h3 { margin-top: 2rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 1rem; left: 1rem; right: 1rem;
    max-width: 480px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1040;
    font-size: .9rem;
    display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin-bottom: .75rem; color: var(--muted); }

/* ---------- Utility ---------- */
.bg-soft-green { background: var(--soft-green); }
.bg-surface { background: var(--surface); }
.section-title { margin-bottom: .5rem; }
.section-subtitle { color: var(--muted); max-width: 640px; margin: 0 auto 3rem; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

::selection { background: var(--accent-soft); color: var(--primary-dark); }

/* ---------- Animações suaves ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms ease, transform 400ms ease;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}