    :root {
        --bg: #070708;
        --card: #0f0f12;
        --text: #f4f4f5;
        --muted: #b7b7c2;
        --red: #ff1b2d;
        --line: rgba(255, 255, 255, .10);
        --shadow: 0 18px 50px rgba(0, 0, 0, .55);
        --r16: 16px;
        --r20: 20px;
        --r24: 24px;
        --max: 1100px;
        --ring: 0 0 0 3px rgba(255, 27, 45, .25);
        --safe-bottom: env(safe-area-inset-bottom, 0px);
        --safe-top: env(safe-area-inset-top, 0px);
    }

    * {
        box-sizing: border-box
    }

    html,
    body {
        height: 100%
    }

    body {
        margin: 0;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
        color: var(--text);
        background:
            radial-gradient(900px 550px at 70% 10%, rgba(255, 27, 45, .22), transparent 60%),
            radial-gradient(700px 500px at 12% 18%, rgba(255, 255, 255, .06), transparent 60%),
            linear-gradient(180deg, #050506 0%, #0b0b0c 30%, #050506 100%);
        overflow-x: hidden;
    }

    a {
        color: inherit;
        text-decoration: none
    }

    .container {
        width: min(var(--max), calc(100% - 28px));
        margin: 0 auto
    }

    /* Header (mobile-first, no cut) */
    header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(7, 7, 8, .70);
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        backdrop-filter: blur(12px);
        padding-top: var(--safe-top);
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        flex: 1 1 260px;
        /* deixa quebrar elegante no mobile */
    }

    .brand img {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        object-fit: cover;
        border: 1px solid rgba(255, 255, 255, .12);
        background: #111;
        flex: 0 0 auto;
    }

    .brand .t1 {
        font-weight: 950;
        letter-spacing: -.02em;
        line-height: 1.1
    }

    .brand .t2 {
        color: var(--muted);
        font-size: 12px;
        margin-top: 2px
    }

    .navcta {
        display: flex;
        gap: 10px;
        align-items: center;
        flex: 1 1 220px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 14px;
        font-weight: 900;
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .04);
        color: var(--text);
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
        cursor: pointer;
        user-select: none;
        white-space: nowrap;
    }

    .btn:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, .07);
        border-color: rgba(255, 255, 255, .18)
    }

    .btn:focus {
        outline: none;
        box-shadow: var(--ring)
    }

    .btn.primary {
        background: linear-gradient(135deg, var(--red) 0%, #ff3c4b 55%, #ff6a75 100%);
        border-color: rgba(255, 27, 45, .55);
        color: #0b0b0c;
    }

    .btn.ghost {
        background: transparent;
        border-color: rgba(255, 255, 255, .10)
    }

    .btn.small {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 13px
    }

    /* Mobile tweaks */
    @media (max-width: 520px) {
        .container {
            width: calc(100% - 22px);
        }

        .nav {
            justify-content: center
        }

        .brand {
            flex: 1 1 100%;
            justify-content: center;
            text-align: center
        }

        .navcta {
            flex: 1 1 100%;
            justify-content: center
        }

        .btn {
            flex: 1 1 160px
        }

        .btn.primary {
            flex: 1 1 220px
        }
    }

    /* Sections */
    main {
        padding-bottom: calc(86px + var(--safe-bottom));
    }

    /* espaço para barra fixa */
    section {
        padding: 22px 0
    }

    .pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border: 1px solid var(--line);
        border-radius: 999px;
        color: var(--muted);
        background: rgba(255, 255, 255, .03);
        backdrop-filter: blur(10px);
        font-weight: 800;
        font-size: 13px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--red);
        box-shadow: 0 0 0 4px rgba(255, 27, 45, .15)
    }

    .hero {
        padding: 22px 0 6px;
        display: grid;
        gap: 14px;
    }

    .hero h1 {
        margin: 12px 0 8px;
        font-size: clamp(30px, 6vw, 46px);
        letter-spacing: -.03em;
        line-height: 1.05;
    }

    .hero p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
        font-size: 15.5px;
        max-width: 70ch;
    }

    .heroActions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 14px
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    @media (max-width: 900px) {
        .cards {
            grid-template-columns: 1fr
        }
    }

    .card {
        border: 1px solid rgba(255, 255, 255, .10);
        background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
        border-radius: var(--r24);
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .pad {
        padding: 16px
    }

    .kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: 14px;
        background: rgba(255, 27, 45, .12);
        border: 1px solid rgba(255, 27, 45, .30);
        color: #ffd5d9;
        font-weight: 950;
        font-size: 13px;
    }

    .miniLine {
        height: 1px;
        background: rgba(255, 255, 255, .08);
        margin: 14px 0
    }

    .row {
        display: flex;
        gap: 12px;
        align-items: center
    }

    .avatar {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        background:
            radial-gradient(circle at 35% 30%, rgba(255, 27, 45, .85), transparent 55%),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .12), transparent 55%),
            linear-gradient(135deg, #111, #060607);
        border: 1px solid rgba(255, 255, 255, .12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 950;
    }

    .muted {
        color: var(--muted)
    }

    .h2 {
        margin: 0 0 6px;
        font-size: 22px;
        letter-spacing: -.02em;
    }

    .sub {
        margin: 0;
        color: var(--muted);
        line-height: 1.6
    }

    /* Feature tiles */
    .tile {
        border: 1px solid rgba(255, 255, 255, .10);
        background: rgba(255, 255, 255, .03);
        border-radius: var(--r20);
        padding: 14px;
    }

    .tile .icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 27, 45, .35);
        background: rgba(255, 27, 45, .10);
        margin-bottom: 10px;
        font-size: 18px;
    }

    .tile h3 {
        margin: 0 0 6px;
        font-size: 16px
    }

    .tile p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
        font-size: 14px
    }

    /* Schedule (mobile-native accordion) */
    .schedule {
        display: grid;
        gap: 10px;
    }

    details.day {
        border-radius: var(--r20);
        border: 1px solid rgba(255, 255, 255, .10);
        background: rgba(255, 255, 255, .03);
        overflow: hidden;
    }

    details.day[open] {
        background:
            radial-gradient(700px 250px at 20% 10%, rgba(255, 27, 45, .16), transparent 60%),
            rgba(255, 255, 255, .03);
        border-color: rgba(255, 27, 45, .25);
    }

    summary.daySum {
        list-style: none;
        cursor: pointer;
        padding: 14px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-weight: 950;
    }

    summary.daySum::-webkit-details-marker {
        display: none
    }

    .tag {
        font-size: 11px;
        font-weight: 950;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .12);
        color: var(--muted);
        background: rgba(255, 255, 255, .03);
        white-space: nowrap;
    }

    .slots {
        padding: 0 14px 14px;
        display: grid;
        gap: 10px;
    }

    .slot {
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, .10);
        background: rgba(0, 0, 0, .18);
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .slot .left {
        display: grid;
        gap: 2px
    }

    .time {
        font-weight: 950;
        letter-spacing: -0.01em
    }

    .type {
        font-size: 12px;
        color: var(--muted);
        font-weight: 850
    }

    .type b {
        color: #ffd5d9
    }

    .mini {
        padding: 10px 12px;
        border-radius: 14px;
        font-size: 12px;
        font-weight: 950;
        border: 1px solid rgba(255, 27, 45, .30);
        background: rgba(255, 27, 45, .10);
        white-space: nowrap;
    }

    .mini:hover {
        background: rgba(255, 27, 45, .16)
    }

    .legend {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 10px
    }

    /* FAQ */
    .faq {
        display: grid;
        gap: 10px
    }

    details.faqItem {
        border-radius: var(--r20);
        border: 1px solid rgba(255, 255, 255, .10);
        background: rgba(255, 255, 255, .03);
        padding: 12px 14px;
    }

    summary.faqSum {
        cursor: pointer;
        font-weight: 950;
        list-style: none;
    }

    summary.faqSum::-webkit-details-marker {
        display: none
    }

    details.faqItem p {
        margin: 10px 0 0;
        color: var(--muted);
        line-height: 1.6
    }

    /* Map card */
    .mapCard iframe {
        width: 100%;
        height: 320px;
        border: 0;
        display: block
    }

    /* Floating WhatsApp */
    .fab {
        position: fixed;
        right: 14px;
        bottom: calc(86px + 14px + var(--safe-bottom));
        z-index: 80;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .fab a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        border-radius: 18px;
        border: 1px solid rgba(255, 27, 45, .40);
        background: linear-gradient(135deg, rgba(255, 27, 45, .95), rgba(255, 80, 90, .95));
        box-shadow: 0 14px 35px rgba(0, 0, 0, .5);
        font-weight: 950;
        color: #0b0b0c;
    }

    .fab a:focus {
        outline: none;
        box-shadow: var(--ring)
    }

    /* Bottom sticky bar (mobile-native) */
    .bottomBar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        padding: 10px 12px calc(10px + var(--safe-bottom));
        background: rgba(7, 7, 8, .75);
        border-top: 1px solid rgba(255, 255, 255, .08);
        backdrop-filter: blur(12px);
    }

    .bottomBar .wrap {
        width: min(var(--max), calc(100% - 16px));
        margin: 0 auto;
        display: flex;
        gap: 10px;
    }

    .bottomBar .wrap a {
        flex: 1 1 0;
        text-align: center;
        padding: 12px 12px;
        border-radius: 16px;
        font-weight: 950;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .04);
    }

    .bottomBar .wrap a.primary {
        background: linear-gradient(135deg, var(--red) 0%, #ff3c4b 55%, #ff6a75 100%);
        border-color: rgba(255, 27, 45, .55);
        color: #0b0b0c;
    }

    footer {
        padding: 18px 0 8px;
        color: var(--muted);
        font-size: 13px;
        border-top: 1px solid rgba(255, 255, 255, .06);
        margin-top: 16px;
    }

    .footRow {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center
    }

    .links {
        display: flex;
        gap: 10px;
        flex-wrap: wrap
    }

    .links a {
        padding: 8px 10px;
        border-radius: 12px
    }

    .links a:hover {
        background: rgba(255, 255, 255, .05);
        color: var(--text)
    }