    /* ── RESET & VARS ── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    :root {
        --cyan: #24DFFE;
        --yellow: #F1EE09;
        --navy: #0a0e2e;
        --navy2: #060c2a;
        --white: #ffffff;
    }

    body {
        font-family: 'Karla', sans-serif;
        background: var(--navy);
        color: var(--white);
        overflow-x: hidden;
    }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
        position: fixed;
        bottom: 32px;
        right: 32px;
        z-index: 200;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .wa-btn {
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .3);
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
        animation: waPulse 2.5s ease infinite;
    }

    .wa-btn:hover {
        transform: scale(1.12);
        box-shadow: 0 6px 32px rgba(37, 211, 102, .6), 0 0 0 10px rgba(37, 211, 102, .1);
        animation: none;
    }

    .wa-btn svg {
        width: 30px;
        height: 30px;
        fill: #fff;
    }

    @keyframes waPulse {
        0% {
            box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .3);
        }

        60% {
            box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 14px rgba(37, 211, 102, .0);
        }

        100% {
            box-shadow: 0 4px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .0);
        }
    }

    .wa-label {
        background: rgba(10, 14, 46, .92);
        border: 1px solid rgba(37, 211, 102, .35);
        color: #fff;
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .06em;
        padding: 7px 14px;
        border-radius: 4px;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(10px);
        transition: opacity .25s, transform .25s;
        pointer-events: none;
    }

    .wa-float:hover .wa-label {
        opacity: 1;
        transform: translateX(0);
    }

    @media (max-width: 600px) {
        .wa-float {
            bottom: 20px;
            right: 20px;
        }

        .wa-btn {
            width: 52px;
            height: 52px;
        }

        .wa-btn svg {
            width: 26px;
            height: 26px;
        }
    }

    /* ── NAV ── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 60px;
        background: linear-gradient(to bottom, rgba(10, 14, 46, .97) 0%, transparent 100%);
        backdrop-filter: blur(6px);
    }

    .nav-toggle {
        display: none;
        background: transparent;
        border: 0;
        cursor: pointer;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 36px;
        height: 30px;

        gap: 6px;
        /* ESSENCIAL */
    }

    .nav-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .nav-logo img {
        height: 80px;
        width: auto;
        display: block;
    }

    .nav-brand {
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: .15em;
    }

    .nav-brand img {
        height: 52px;
        width: auto;
        display: block;
        object-fit: contain;
    }

    @media (max-width: 450px) {

        nav {
            padding: 14px 18px;
        }

        .nav-brand img {
            height: 30px;
        }
    }
    
    .foot-brand .fl img {
        height: 42px;
        width: auto;
        display: block;
        object-fit: contain;
    }

    @media (max-width: 450px) {

        .foot-brand .fl img {
            height: 34px;
        }

    }
    .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
    }

    .nav-links a {
        color: rgba(255, 255, 255, .7);
        text-decoration: none;
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        transition: color .2s;
    }

    .nav-links a:hover {
        color: var(--cyan);
    }

    .nav-cta {
        background: var(--yellow);
        color: var(--navy);
        border: none;
        padding: 10px 26px;
        font-family: 'Karla', sans-serif;
        font-size: .78rem;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer;
        clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
        transition: background .2s, transform .2s;
        text-decoration: none;
        display: inline-block;
    }

    .nav-cta:hover {
        background: var(--cyan);
        transform: scale(1.04);
    }

    @font-face {
        font-family: 'Besides';
        src: url('../fonts/Besides.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    .section-title,
    .cta-title,
    .nav-brand,
    .hero-date-strong {
        font-family: 'Besides', sans-serif;
    }

    

    /* ── SHARED ── */
    section {
        padding: 100px 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .section-label {
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--cyan);
        margin-bottom: 12px;
    }

    .section-label::before {
        content: '// ';
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 800;
        line-height: 1.05;
        margin-bottom: 20px;
    }

    .section-title em {
        color: var(--yellow);
        font-style: normal;
    }

    .section-desc {
        font-size: 1rem;
        color: rgba(255, 255, 255, .6);
        max-width: 520px;
        line-height: 1.7;
    }

    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── HERO ── */
    #hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 120px 0 80px;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(5, 10, 31, .30) 0%, rgba(5, 10, 31, .18) 35%, rgba(5, 10, 31, .28) 100%),
            url('../img/fundo.png') no-repeat left 10% center;
        background-size: cover;
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 60px;
        display: grid;
        grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
        gap: 48px;
        align-items: center;
    }

    .hero-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-main-logo {
        width: 100%;
        max-width: clamp(240px, 32vw, 380px);
        height: auto;
        display: block;

    }

    .hero-right {
        max-width: 620px;
        margin-left: auto;
    }

    .hero-copy {
        font-size: clamp(1.4rem, 2.2vw, 2.2rem);
        line-height: 1.25;
        font-weight: 400;
        color: #fff;
        margin-bottom: 28px;
    }

    .hero-copy strong {
        font-weight: 800;
        color: #fff;
    }

    .hero-divider {
        width: 100%;
        max-width: 460px;
        height: 1px;
        background: rgba(255, 255, 255, .18);
        margin-bottom: 22px;
    }

    .hero-date-line {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .hero-date-strong {
        font-size: clamp(2.1rem, 3.4vw, 4rem);
        line-height: 1;
        font-weight: 800;
        letter-spacing: .02em;
        color: #fff;
    }

    .hero-date-sep {
        font-size: clamp(1.8rem, 3vw, 3.2rem);
        line-height: 1;
        color: rgba(255, 255, 255, .85);
        font-weight: 300;
    }

    .hero-location {
        font-size: clamp(0.95rem, 1vw, 1.2rem);
        line-height: 1.35;
        color: #fff;
        margin-bottom: 40px;
    }

    .hero-org {
        display: flex;
        align-items: center;
        /* alinha verticalmente */
        justify-content: center;
        /* centraliza tudo */
        gap: 15px;
        flex-wrap: wrap;
        /* quebra bonito no mobile */
        text-align: center;
    }

    .hero-org-label {
        white-space: nowrap;
        /* evita quebrar "Realização:" */
    }

    .hero-org-logos {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .hero-org-logos img {
        height: 36px;
        max-width: 100%;
    }

    .hero-org-logos img:hover {
        transform: scale(1.05);
    }

    .hero-cta-row {
        display: flex;
        gap: 16px;
        flex-wrap: nowrap;
        margin-top: 30px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 0 28px;
        border-radius: 10px;
        text-decoration: none;
        font-size: .95rem;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        transition: .25s ease;
    }

    .btn-hero-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
        padding: 14px 22px;
    }
    @media (max-width: 480px) {
        .hero-cta-row {
            gap: 8px;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            font-size: 13px;
            padding: 9px 12px;
        }
    }

    .btn-hero-primary {
        background: var(--yellow);
        color: var(--navy);
        border: 2px solid var(--yellow);
    }

    .btn-hero-primary:hover {
        background: var(--cyan);
        border-color: var(--cyan);
        color: var(--navy);
        transform: translateY(-2px);
    }

    .btn-hero-secondary {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, .75);
    }

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, .08);
        border-color: #fff;
        transform: translateY(-2px);
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(28px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(3.5rem, 7vw, 6rem);
        font-weight: 800;
        line-height: .9;
        margin-bottom: 8px;
        animation: fadeUp .7s .15s ease both;
    }

    .hero-title .t-anp {
        color: var(--yellow);
        display: block;
    }

    .hero-title .t-tech {
        color: var(--yellow);
        display: block;
    }

    .hero-title .t-sum {
        color: var(--cyan);
        font-size: .55em;
        letter-spacing: .05em;
        display: block;
        font-weight: 700;
    }

    .hero-sub {
        font-size: 1rem;
        color: rgba(255, 255, 255, .75);
        line-height: 1.6;
        margin: 28px 0 36px;
        max-width: 420px;
        animation: fadeUp .7s .3s ease both;
    }

    .hero-sub strong {
        color: var(--white);
    }

    .hero-ctas {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeUp .7s .45s ease both;
    }

    .btn-prim {
        background: var(--yellow);
        color: var(--navy);
        border: none;
        padding: 14px 32px;
        font-family: 'Karla', sans-serif;
        font-size: .85rem;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        transition: background .2s, transform .15s;
    }

    .btn-prim:hover {
        background: var(--cyan);
        transform: translateY(-2px);
    }

    .btn-sec {
        border: 1.5px solid var(--cyan);
        color: var(--cyan);
        background: transparent;
        padding: 13px 32px;
        font-family: 'Karla', sans-serif;
        font-size: .85rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: background .2s, color .2s, transform .15s;
    }

    .btn-sec:hover {
        background: var(--cyan);
        color: var(--navy);
        transform: translateY(-2px);
    }

    .hero-card {
        width: 100%;
        max-width: 420px;
        background: rgba(13, 21, 69, .7);
        border: 1px solid rgba(36, 223, 254, .2);
        backdrop-filter: blur(16px);
        padding: 40px;
        position: relative;
        overflow: hidden;
        animation: fadeUp .9s .2s ease both;
    }

    .hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--cyan), var(--yellow));
    }

    .card-top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 28px;
    }

    .card-top svg {
        width: 54px;
        height: 54px;
    }

    .card-name-l1 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--yellow);
        line-height: 1;
    }

    .card-name-l2 {
        font-size: .75rem;
        font-weight: 700;
        color: var(--cyan);
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .card-div {
        height: 1px;
        background: rgba(255, 255, 255, .08);
        margin: 24px 0;
    }

    .card-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-n {
        font-size: 2rem;
        font-weight: 800;
        color: var(--yellow);
        line-height: 1;
    }

    .stat-n span {
        color: var(--cyan);
        font-size: 1.2rem;
    }

    .stat-l {
        font-size: .7rem;
        color: rgba(255, 255, 255, .55);
        text-transform: uppercase;
        letter-spacing: .1em;
        margin-top: 4px;
    }

    .card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 24px;
    }

    .ctag {
        padding: 4px 12px;
        border: 1px solid rgba(36, 223, 254, .3);
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .6);
    }

    .ctag.hi {
        border-color: var(--yellow);
        color: var(--yellow);
    }

    .hero-date {
        position: absolute;
        bottom: 56px;
        left: 60px;
        display: flex;
        align-items: flex-end;
        gap: 12px;
        animation: fadeUp .7s .6s ease both;
    }

    .date-num {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 800;
        line-height: 1;
        color: var(--white);
        letter-spacing: -.03em;
    }

    .date-sep {
        color: var(--cyan);
        font-size: .5em;
    }

    .date-meta {
        padding-bottom: 8px;
    }

    .date-meta .month {
        font-size: .9rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--cyan);
        font-weight: 700;
    }

    .date-meta .city {
        font-size: .75rem;
        color: rgba(255, 255, 255, .55);
        letter-spacing: .08em;
    }

    .scroll-hint {
        position: absolute;
        bottom: 30px;
        right: 60px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .68rem;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .4);
        animation: fadeUp .7s .9s ease both;
    }

    .scroll-line {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--cyan));
    }

    /* ── ABOUT ── */
    #about {
        background: linear-gradient(to bottom, var(--navy) 0%, var(--navy2) 100%);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .about-map-card {
        background: rgba(13, 21, 69, .6);
        border: 1px solid rgba(36, 223, 254, .15);
        padding: 28px;
        overflow: hidden;
    }

    .about-map-card svg {
        width: 100%;
        display: block;
    }

    .about-corner-tag {
        display: inline-block;
        background: var(--yellow);
        color: var(--navy);
        padding: 8px 18px;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .about-bullets {
        list-style: none;
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .about-bullets li {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        font-size: .92rem;
        color: rgba(255, 255, 255, .75);
        line-height: 1.5;
    }

    .about-bullets li::before {
        content: '▸';
        color: var(--cyan);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .about-bullets li strong {
        color: var(--white);
    }

    /* ── SCHEDULE ── */
    #schedule {
        background: var(--navy2);
    }

    .sched-tabs {
        display: flex;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        margin-bottom: 48px;
    }

    .stab {
        padding: 12px 32px;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .45);
        border-bottom: 2px solid transparent;
        cursor: pointer;
        transition: color .2s, border-color .2s;
        margin-bottom: -1px;
        background: none;
        border-top: none;
        border-left: none;
        border-right: none;
        font-family: 'Karla', sans-serif;
    }

    .stab.on {
        color: var(--yellow);
        border-bottom-color: var(--yellow);
    }

    .stab:hover:not(.on) {
        color: rgba(255, 255, 255, .8);
    }

    .sched-list {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .sitem {
        display: grid;
        grid-template-columns: 120px 1fr auto;
        align-items: center;
        gap: 24px;
        padding: 20px 28px;
        background: rgba(13, 21, 69, .4);
        border: 1px solid rgba(255, 255, 255, .05);
        border-left: 3px solid transparent;
        transition: border-left-color .2s, background .2s;
        cursor: default;
    }

    .sitem:hover {
        border-left-color: var(--cyan);
        background: rgba(36, 223, 254, .04);
    }

    .sitem.key {
        border-left-color: var(--yellow);
        background: rgba(241, 238, 9, .03);
    }

    .stime {
        font-size: .78rem;
        font-weight: 700;
        color: var(--cyan);
        letter-spacing: .05em;
    }

    .stitle {
        font-size: .92rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .sspkr {
        font-size: .75rem;
        color: rgba(255, 255, 255, .5);
    }

    .stag {
        padding: 3px 10px;
        font-size: .6rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        border: 1px solid;
        white-space: nowrap;
    }

    .stag.c {
        border-color: var(--cyan);
        color: var(--cyan);
    }

    .stag.y {
        border-color: var(--yellow);
        color: var(--yellow);
    }

    .stag.g {
        border-color: rgba(255, 255, 255, .3);
        color: rgba(255, 255, 255, .4);
    }

    /* ── CTA ── */
    #cta {
        background: linear-gradient(135deg, #050a1f 0%, #0a1030 100%);
        position: relative;
        overflow: hidden;
    }

    #cta::before {
        content: '';
        position: absolute;
        top: -40%;
        left: 50%;
        width: 900px;
        height: 900px;
        transform: translateX(-50%);
        background: radial-gradient(circle, rgba(36, 223, 254, .06) 0%, transparent 60%);
    }

    .cta-inner {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .cta-inner .section-label {
        display: block;
        text-align: center;
        margin-bottom: 16px;
    }

    .cta-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1;
        margin-bottom: 24px;
    }

    .cta-title span {
        color: var(--yellow);
        display: block;
    }

    .cta-sub {
        font-size: 1rem;
        color: rgba(255, 255, 255, .6);
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .cta-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-big {
        padding: 18px 48px;
        font-size: .9rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        cursor: pointer;
        border: none;
        text-decoration: none;
        display: inline-block;
        transition: transform .2s, background .2s;
    }

    .btn-big:hover {
        transform: translateY(-3px);
    }

    .btn-big.p {
        background: var(--yellow);
        color: var(--navy);
        clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    }

    .btn-big.p:hover {
        background: var(--cyan);
    }

    .btn-big.s {
        background: transparent;
        border: 1.5px solid var(--cyan);
        color: var(--cyan);
    }

    .btn-big.s:hover {
        background: var(--cyan);
        color: var(--navy);
    }

    /* ── FOOTER ── */
    footer {
        background: #030712;
        border-top: 1px solid rgba(36, 223, 254, .1);
        padding: 60px 0 30px;
    }

    .foot-in {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .foot-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 48px;
        gap: 40px;
        flex-wrap: wrap;
    }

    .foot-brand .fl {
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: .05em;
    }

    .foot-brand .fl em {
        color: var(--yellow);
        font-style: normal;
    }

    .foot-brand .ft {
        font-size: .72rem;
        color: rgba(255, 255, 255, .4);
        margin-top: 6px;
        letter-spacing: .1em;
    }

    .foot-col h4 {
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .18em;
        color: var(--cyan);
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .foot-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .foot-col ul li a {
        text-decoration: none;
        font-size: .82rem;
        color: rgba(255, 255, 255, .5);
        transition: color .2s;
    }

    .foot-col ul li a:hover {
        color: var(--white);
    }

    .foot-bot {
        border-top: 1px solid rgba(255, 255, 255, .06);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .foot-bot p {
        font-size: .72rem;
        color: rgba(255, 255, 255, .3);
    }

    .foot-bot .cr {
        font-size: .7rem;
        color: rgba(255, 255, 255, .2);
    }

    .foot-bot .cr span {
        color: var(--cyan);
        font-weight: 700;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        nav {
            padding: 16px 24px;

        }

        .hero-org {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-org-label {
            margin-right: 8px;
            white-space: nowrap;
        }

        .hero-org-logos {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-toggle {
            display: flex;
            z-index: 101;
        }

        .nav-cta {
            display: none;
        }

        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            list-style: none;
            padding: 24px;
            background: rgba(10, 14, 46, .98);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, .08);

            opacity: 0;
            pointer-events: none;
            transform: translateY(-10px);
            transition: opacity .25s ease, transform .25s ease;
        }

        .nav-links.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .hero-content {
            grid-template-columns: 1fr;
            padding: 0 24px;
        }

        .hero-card {
            display: none;
        }

        .hero-date {
            left: 24px;
        }

        .scroll-hint {
            right: 24px;
        }

        .about-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .aud-grid {
            grid-template-columns: 1fr;
        }

        .container {
            padding: 0 24px;
        }

        section {
            padding: 70px 0;
        }

        .foot-in {
            padding: 0 24px;
        }
    }

    @media (max-width: 600px) {
        .sitem {
            grid-template-columns: 80px 1fr;
        }

        .stag {
            display: none;
        }

        .hero-bg::before {
            background-position: left 80px;
            background-size: auto 70%;
        }

        .hero-bg::after {
            background: linear-gradient(to bottom, rgba(5, 10, 31, 0.0) 20%, rgba(5, 10, 31, 0.7) 55%, rgba(5, 10, 31, 0.98) 100%);
        }
    }

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--yellow);
        border-radius: 2px;

        transition: all 0.3s ease;
    }

    .about-grid {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .about-grid>div {
        flex: 1;
        /* 50% para cada lado */
    }

    /* Garantir que o conteúdo não estoure */
    .about-grid .reveal {
        width: 100%;
    }

    /* Responsivo */
    @media (max-width: 768px) {
        .about-grid {
            flex-direction: column;
            gap: 30px;
        }

        .nav-cta {
            display: inline-block;
            font-size: 13px;
            padding: 8px 12px;
        }
    }

    .about-map-card {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-map-img {
        max-width: 100%;
        height: auto;
    }

    .cr-link {
        position: relative;
        text-decoration: none !important;
        /* remove o traço */
        color: #24DFFE;
        font-weight: 600;
    }

    .cr-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 1px;
        background: #F1EE09;
        transition: width 0.3s ease;
    }

    .cr-link:hover::after {
        width: 100%;
    }

