@font-face {
    font-family: "Source Sans 3";
    src: url("fonts/source-sans-3-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Source Sans 3";
    src: url("fonts/source-sans-3-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Source Sans 3";
    src: url("fonts/source-sans-3-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    color-scheme: light;
    --brand: #c73636;
    --brand-dark: color-mix(in srgb, #c73636 80%, #000);
    --text: #152033;
    --muted: #5a6778;
    --surface: #ffffff;
    --surface-alt: #f3f1ee;
    --bg: #f7f5f2;
    --border: #e4dfd8;
    --footer-bg: #141c2b;
    --footer-text: #e8edf3;
    --footer-muted: #94a3b8;
    --footer-strong: #ffffff;
    --footer-border: color-mix(in srgb, var(--brand) 22%, transparent);
    --radius: 14px;
    --section-y: clamp(3.5rem, 8vw, 5.5rem);
    --section-y-sm: clamp(2.5rem, 7vw, 3.75rem);
    --header-h: 4.25rem;
    --font-sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}
:root[data-theme="dark"] {
    color-scheme: dark;
    --brand: #e85c5c;
    --brand-dark: #f07171;
    --text: #e8edf3;
    --muted: #94a3b8;
    --surface: #1a2438;
    --surface-alt: #121a2b;
    --bg: #0e1526;
    --border: #2a3548;
    --footer-bg: #060b14;
    --footer-text: #cbd5e1;
    --footer-muted: #94a3b8;
    --footer-strong: #f1f5f9;
}
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        color-scheme: dark;
        --brand: #e85c5c;
        --brand-dark: #f07171;
        --text: #e8edf3;
        --muted: #94a3b8;
        --surface: #1a2438;
        --surface-alt: #121a2b;
        --bg: #0e1526;
        --border: #2a3548;
        --footer-bg: #060b14;
        --footer-text: #cbd5e1;
        --footer-muted: #94a3b8;
        --footer-strong: #f1f5f9;
    }
}
* { box-sizing: border-box; }
html {
    background: var(--bg);
    scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: clip;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }
:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    left: 1rem;
    top: -100%;
    z-index: 50;
    padding: 0.7rem 1.2rem;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
}
.skip-link:focus {
    top: calc(0.75rem + env(safe-area-inset-top, 0px));
    color: #fff;
    outline-color: #fff;
}
.wrap {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 0 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}
.site-header {
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 40;
    padding-top: env(safe-area-inset-top, 0px);
}
.site-header .wrap { position: relative; }
.header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}
.logo { justify-self: start; min-width: 0; }
.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
    text-decoration: none;
}
.logo-text:hover { color: var(--text); }
.logo-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 5px;
}
.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.site-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}
.site-nav a:hover { color: var(--brand); }
.header-end {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    place-items: center;
    padding: 0;
    flex-shrink: 0;
}
.nav-toggle:hover {
    border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
}
.nav-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}
.nav-toggle .nav-icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-close { display: block; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: #fff;
    color: var(--brand-dark) !important;
    min-height: 2.85rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    text-align: center;
}
.btn:hover { color: var(--brand-dark) !important; }
.btn-brand {
    background: var(--brand);
    color: #fff !important;
}
.btn-brand:hover { color: #fff !important; }
.btn-nav {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    min-height: 2.5rem;
}
.theme-toggle {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0;
    flex-shrink: 0;
}
.theme-toggle:hover {
    border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
}
.theme-toggle svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.theme-toggle .theme-icon { display: none; }
html.is-dark .theme-toggle .theme-icon-light { display: block; }
html:not(.is-dark) .theme-toggle .theme-icon-dark { display: block; }
.btn-brand:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}
.btn-whatsapp {
    background: #0b7a34;
    color: #fff !important;
}
.btn-whatsapp:hover { color: #fff !important; }
.btn-whatsapp svg,
.wa-float svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
    flex-shrink: 0;
}
.muted { color: var(--muted); }

.hero {
    position: relative;
    color: #fff;
    min-height: clamp(28rem, 68vh, 40rem);
    display: grid;
    align-items: end;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 62%;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgb(15 18 24 / 0.12) 0%,
            rgb(15 18 24 / 0.08) 38%,
            rgb(15 18 24 / 0.55) 72%,
            rgb(15 18 24 / 0.82) 100%
        );
}
.hero-content {
    position: relative;
    padding: clamp(4rem, 10vw, 6rem) 0 clamp(2.75rem, 6vw, 3.75rem);
}
.eyebrow {
    display: inline-block;
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.82);
}
.hero h1 {
    font-weight: 700;
    font-size: clamp(2.05rem, 5vw, 3.05rem);
    margin: 0 0 0.85rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}
.hero p {
    max-width: 34rem;
    margin: 0 0 1.6rem;
    font-size: 1.12rem;
    line-height: 1.6;
    color: rgb(255 255 255 / 0.92);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.5rem;
}
.hero-secondary {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgb(255 255 255 / 0.45);
    padding-bottom: 0.1rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
}
.hero-secondary:hover { color: #fff; border-bottom-color: #fff; }
.hero .btn:focus-visible { outline-color: #fff; }

section {
    padding: var(--section-y) 0;
    background: var(--bg);
}
section[id] { scroll-margin-top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); }
section h1,
section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.55rem, 3vw, 1.95rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
section h1 { font-size: clamp(1.75rem, 4vw, 2.2rem); }
#over-ons {
    padding-top: calc(var(--section-y) + 1.75rem);
}

.about-layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 840px) {
    .about-layout {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 3.25rem;
    }
}
.about-photo {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--surface-alt);
}
.about-photo picture {
    display: block;
    width: 100%;
    height: 100%;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% 45%;
    display: block;
}
.about-copy > p {
    margin: 0;
    max-width: 40rem;
}
.about-copy > p + p {
    margin-top: 0.85rem;
}
.highlights {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.15rem 2.5rem;
}
@media (min-width: 840px) {
    .highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.highlights li {
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}
.highlights strong {
    display: block;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}
.highlights span {
    display: block;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.trial-intro {
    margin: -0.15rem 0 2.25rem;
    color: var(--text);
}
.trial-support {
    display: block;
    margin: 0.55rem 0 0.7rem;
    color: var(--muted);
    font-weight: 400;
}
.trial-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}
@media (min-width: 800px) {
    .trial-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
    }
}
.trial-steps li {
    counter-increment: step;
    position: relative;
    padding-top: 3rem;
}
.trial-steps li::before {
    content: counter(step);
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
    line-height: 1;
}
.trial-steps strong {
    display: block;
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}
.trial-steps .muted { display: block; }
.trial-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.35rem;
}
.trial-cta .btn-whatsapp {
    min-height: 3.15rem;
    padding-inline: 1.4rem;
}
.trial-alt {
    color: var(--muted);
    font-size: 0.98rem;
    white-space: nowrap;
}
.trial-alt a {
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--brand) 40%, transparent);
}
.trial-alt a:hover { color: var(--brand-dark); }

.offer-panel {
    background: color-mix(in srgb, var(--brand) 9%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
    border-top: 4px solid var(--brand);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.25rem);
}
.offer-panel .eyebrow,
.offer-eyebrow {
    color: var(--brand);
}
.offer-panel h2 {
    font-size: clamp(1.85rem, 4vw, 2.45rem);
}
.offer-intro {
    margin: -0.15rem 0 2rem;
    max-width: 40rem;
    color: var(--text);
    font-size: 1.08rem;
}
@media (min-width: 800px) {
    .offer-intro { max-width: none; }
}
.offer-cta {
    margin-top: 1.75rem;
}
.offer-cta .btn-whatsapp {
    min-height: 3.15rem;
    padding-inline: 1.4rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.85rem 1.6rem 1.6rem;
}
.pricing-grid {
    display: grid;
    gap: 1.35rem;
    grid-template-columns: 1fr;
}
@media (min-width: 800px) {
    .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.package-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.price {
    font-size: clamp(1.7rem, 3vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    line-height: 1.15;
    margin: 0 0 0.25rem;
    color: var(--text);
    white-space: nowrap;
}
.price-was {
    margin: 0 0 0.45rem;
    color: var(--muted);
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
    text-decoration: line-through;
    white-space: nowrap;
}
.price-save {
    margin: 0 0 0.85rem;
    font-weight: 700;
    color: var(--brand);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.package-card .muted {
    margin: 0;
    font-size: 0.95rem;
}
.package-cta {
    margin-top: 1.15rem;
}
.package-card .btn-whatsapp {
    width: 100%;
    min-height: 2.75rem;
    font-size: 0.95rem;
    padding-inline: 1rem;
}
.extras-heading {
    margin: 2.75rem 0 0.65rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.extras-intro {
    margin: 0 0 1.15rem;
    max-width: 40rem;
}
.price-list { margin: 0; padding: 0; }
.price-list .price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: baseline;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}
.price-list .price-row:first-child { padding-top: 0; }
.price-list .price-row:last-child { border-bottom: none; padding-bottom: 0; }
.price-list dt {
    margin: 0;
    font-weight: 600;
    overflow-wrap: break-word;
}
.price-list dd {
    margin: 0;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.faq-intro {
    margin: -0.15rem 0 0.5rem;
    max-width: 40rem;
}
.faq-list {
    margin: 0;
    padding: 0;
}
.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 1.05rem 0;
}
.faq-list details:first-child { padding-top: 0.35rem; }
.faq-list summary {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
    padding-right: 1.75rem;
    position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "";
    position: absolute;
    right: 0.15rem;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
}
.faq-list details[open] summary::after {
    top: 0.7rem;
    transform: rotate(-135deg);
}
.faq-list details p {
    margin: 0.65rem 0 0.15rem;
    color: var(--muted);
    line-height: 1.65;
}

.contact-lead {
    margin: 0 0 1.5rem;
    max-width: 40rem;
}
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 800px) {
    .contact-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.contact-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.4rem;
}
.contact-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text);
}
a.contact-row:hover { color: var(--brand); }
.contact-label {
    font-weight: 700;
    font-size: 0.92rem;
}
.contact-value {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.85rem;
}
.contact-actions {
    display: inline-flex;
    gap: 0.85rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: clamp(1.75rem, 4vw, 2.5rem) 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--footer-border);
}
.site-footer a { color: var(--footer-strong); }
.site-footer a:hover {
    color: color-mix(in srgb, var(--brand) 55%, #fff);
}
.site-footer .muted { color: var(--footer-muted); }
.footer-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.35rem;
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: center;
}
.footer-line strong {
    color: var(--footer-strong);
    font-weight: 700;
}

.wa-float {
    display: none;
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 25;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: #0b7a34;
    color: #fff;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgb(15 18 24 / 0.22);
}
.wa-float:hover { color: #fff; }
.wa-float svg {
    width: 1.85rem;
    height: 1.85rem;
}

.legal { max-width: 42rem; }
.legal h2 {
    font-size: 1.2rem;
    margin: 2rem 0 0.5rem;
}
.legal p,
.legal li { color: var(--muted); }
.legal ul { padding-left: 1.2rem; }
.legal .legal-updated {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

.site-nav .site-nav-mobile-cta { display: none; }

body.nav-open { overflow: hidden; }
body.nav-open .site-header { background: var(--surface); }
body.nav-open .wa-float { display: none !important; }

@media (max-width: 900px) {
    :root { --header-h: 4.05rem; }
    .header-bar {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.5rem;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }
    .nav-toggle { display: grid; }
    .header-end { position: relative; z-index: 2; }
    .header-end .btn-nav { display: none; }
    .site-nav {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        width: 100%;
        height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0px));
        z-index: 30;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 1.5rem max(1.25rem, env(safe-area-inset-right, 0px)) max(1.75rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
        background: var(--bg);
        overflow: auto;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a {
        white-space: normal;
        padding: 1.1rem 0;
        min-height: 3rem;
        display: flex;
        align-items: center;
        font-size: 1.15rem;
        border-bottom: 1px solid var(--border);
    }
    .site-nav .site-nav-mobile-cta {
        display: inline-flex;
        justify-content: center;
        margin-top: 1.5rem;
        padding: 0.85rem 1.25rem;
        min-height: 3.15rem;
        border: none;
        border-radius: 999px;
        background: var(--brand);
        color: #fff !important;
        font-size: 1.05rem;
        font-weight: 700;
    }
    .site-nav .site-nav-mobile-cta:hover { color: #fff !important; }
}
@media (max-width: 640px) {
    body { font-size: 1rem; }
    .wrap {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }
    .logo-text { font-size: 1rem; gap: 0.4rem; }
    .logo-mark { width: 24px; height: 24px; }
    .hero { min-height: min(32rem, 78dvh); }
    .hero-bg img { object-position: 50% 35%; }
    .hero-bg::after {
        background:
            linear-gradient(
                180deg,
                rgb(15 18 24 / 0.35) 0%,
                rgb(15 18 24 / 0.72) 50%,
                rgb(15 18 24 / 0.88) 100%
            );
    }
    .hero .wrap {
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }
    .hero-content { padding: 3.75rem 0 2.5rem; }
    .hero h1 { font-size: clamp(1.7rem, 8vw, 2.15rem); }
    .hero p { font-size: 1rem; margin-bottom: 1.25rem; }
    .trial-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .trial-alt {
        width: 100%;
        text-align: center;
    }
    .trial-cta .btn,
    .offer-cta .btn { width: 100%; }
    section { padding: var(--section-y-sm) 0; }
    #over-ons { padding-top: calc(var(--section-y-sm) + 1.25rem); }
    .about-photo { aspect-ratio: 3 / 2; }
    .price-list .price-row {
        grid-template-columns: 1fr;
        gap: 0.15rem;
        padding: 0.75rem 0;
    }
    .footer-line { font-size: 0.85rem; }
    .site-footer {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    }
    .wa-float {
        display: grid;
        bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
