        :root {
            --black: #0a0a0c;
            --black-2: #111114;
            --primary: #3b82f6;
            --primary-2: #2563eb;
            --white: #ffffff;
            --muted: rgba(255, 255, 255, .6);
            --muted-2: rgba(255, 255, 255, .4);
            --border: rgba(255, 255, 255, .1);
            --border-2: rgba(255, 255, 255, .15);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--black);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .display {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            line-height: 0.95;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        /* ===== Logo Official Image ===== */
        .hero-logo-img {
            max-width: clamp(240px, 45vw, 420px);
            height: auto;
            object-fit: contain;
            margin-bottom: 1.25rem;
            filter: drop-shadow(0 0 30px rgba(47, 107, 255, 0.45));
            transition: transform 0.3s ease;
        }

        .hero-logo-img:hover {
            transform: scale(1.02);
        }

        .title-logo-img {
            display: inline-block;
            height: 0.88em;
            width: auto;
            vertical-align: -0.06em;
            margin-left: 0.25rem;
            filter: drop-shadow(0 0 25px rgba(47, 107, 255, 0.5));
            transition: transform 0.3s ease;
        }

        .title-logo-img:hover {
            transform: scale(1.04);
        }

        .text-logo-img {
            display: inline-block;
            height: 1.05em;
            width: auto;
            vertical-align: -0.18em;
            margin: 0 0.2rem;
            filter: drop-shadow(0 0 10px rgba(47, 107, 255, 0.35));
        }

        .footer-logo-img {
            max-width: 200px;
            height: auto;
            object-fit: contain;
            margin-bottom: 0.75rem;
            filter: drop-shadow(0 0 15px rgba(47, 107, 255, 0.3));
        }

        /* ===== Global Fixed Video Background ===== */
        .site-bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            z-index: -2;
            pointer-events: none;
            opacity: 0.55;
            filter: brightness(0.85) contrast(1.15);
        }

        .site-bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at center, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.88) 85%);
            z-index: -1;
            pointer-events: none;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 1.5rem;
            overflow: hidden;
            background: transparent;
        }

        .hero-bg-text {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            user-select: none;
            overflow: hidden;
            z-index: 1;
        }

        .hero-bg-text span {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-style: italic;
            text-transform: uppercase;
            white-space: nowrap;
            font-size: 18vw;
            line-height: 1;
            color: rgba(255, 255, 255, .04);
            letter-spacing: -.02em;
        }

        .glow-a {
            position: absolute;
            bottom: -6rem;
            right: 0;
            width: 50%;
            height: 40vh;
            border-radius: 999px;
            filter: blur(140px);
            pointer-events: none;
            background: color-mix(in oklab, var(--primary) 25%, transparent);
        }

        .glow-b {
            position: absolute;
            top: -6rem;
            left: 0;
            width: 33%;
            height: 35vh;
            border-radius: 999px;
            filter: blur(120px);
            pointer-events: none;
            background: color-mix(in oklab, var(--primary) 20%, transparent);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 60rem;
            animation: fadeUp .8s ease both;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            border: 1px solid var(--border-2);
            background: rgba(255, 255, 255, .05);
            padding: .4rem 1rem;
            border-radius: 999px;
            backdrop-filter: blur(6px);
            margin: 1.5rem 0;
        }

        .badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
        }

        .badge span.txt {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .8);
        }

        h1.hero-title {
            font-size: clamp(2.5rem, 7vw, 6rem);
            color: #fff;
        }

        h1.hero-title .accent {
            display: inline-flex;
            align-items: center;
            gap: .3em;
            white-space: nowrap;
        }

        h1.hero-title .accent b {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-style: italic;
            color: var(--primary);
            filter: drop-shadow(0 0 30px rgba(47, 107, 255, .35));
        }

        .mission {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .4rem;
            max-width: 44rem;
        }

        .mission .lead {
            font-size: .8rem;
            font-weight: 600;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .mission .big {
            font-size: clamp(2.5rem, 7vw, 6rem);
            color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: .75rem;
            padding: 1.25rem 2.5rem;
            font-size: .7rem;
            font-weight: 900;
            letter-spacing: .2em;
            text-transform: uppercase;
            transition: all .3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary-light {
            background: #fff;
            color: var(--black);
            margin-top: 3rem;
        }

        .btn-primary-light:hover {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary-light svg {
            transition: transform .3s ease;
        }

        .btn-primary-light:hover svg {
            transform: translateY(3px);
        }

        .btn-cta {
            background: var(--primary);
            color: #fff;
            padding: 1.5rem 2.5rem;
        }

        .btn-cta:hover {
            background: var(--primary-2);
            transform: translateY(-2px);
            box-shadow: 0 20px 50px -10px rgba(47, 107, 255, .4);
        }

        .btn-cta svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        /* ===== Section shared ===== */
        section {
            padding: 6rem 1.5rem;
            position: relative;
        }

        .wrap {
            max-width: 72rem;
            margin: 0 auto;
        }

        .eyebrow-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .eyebrow-row .line {
            height: 1px;
            width: 3rem;
            background: var(--border-2);
        }

        .eyebrow-row .label {
            font-size: .65rem;
            font-weight: 900;
            letter-spacing: .4em;
            text-transform: uppercase;
            color: var(--muted-2);
        }

        .section-head {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-head h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
        }

        .section-head h2 .primary {
            color: var(--primary);
        }

        .section-head p {
            margin-top: 1.5rem;
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 40rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== Apoiadores grid ===== */
        .grid-apoiadores {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        @media(min-width:640px) {
            .grid-apoiadores {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.25rem;
            }
        }

        @media(min-width:1024px) {
            .grid-apoiadores {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }

        .card-apoiador {
            aspect-ratio: 16/11;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, .04);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: .85rem;
            padding: 1.5rem 1rem;
            transition: all .3s ease;
            position: relative;
            overflow: hidden;
        }

        .card-apoiador:hover {
            border-color: var(--primary);
            background: rgba(47, 107, 255, .1);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px -10px rgba(47, 107, 255, 0.3);
        }

        .card-apoiador .logo-wrap {
            width: 100%;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.25rem;
        }

        .card-apoiador .logo-img {
            max-width: 85%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
            transition: transform .3s ease;
        }

        .card-apoiador:hover .logo-img {
            transform: scale(1.06);
        }

        .card-apoiador .name {
            font-size: .8rem;
            font-weight: 700;
            text-align: center;
            color: rgba(255, 255, 255, .85);
            letter-spacing: .05em;
            text-transform: uppercase;
        }

        /* ===== Parceria CTA ===== */
        .cta-panel {
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
            background: rgba(15, 15, 20, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 5rem 1.5rem;
            border-radius: 1rem;
        }

        @media(min-width:640px) {
            .cta-panel {
                padding: 5.5rem 3rem;
            }
        }

        .cta-bg-text {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            pointer-events: none;
            user-select: none;
        }

        .cta-bg-text span {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-style: italic;
            text-transform: uppercase;
            white-space: nowrap;
            font-size: 22vw;
            line-height: 1;
            color: rgba(255, 255, 255, .04);
            letter-spacing: -.02em;
        }

        .cta-grid {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 2.5rem;
        }

        @media(min-width:1024px) {
            .cta-grid {
                grid-template-columns: 1.2fr 1fr;
                align-items: center;
            }
        }

        .cta-grid h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
        }

        .cta-grid h2 .primary {
            color: var(--primary);
        }

        .cta-grid p {
            margin-top: 1.5rem;
            max-width: 34rem;
            color: rgba(255, 255, 255, .7);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .cta-right {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        @media(min-width:1024px) {
            .cta-right {
                align-items: flex-end;
            }
        }

        .cta-right .sub {
            font-size: .65rem;
            font-weight: 900;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: var(--muted-2);
        }

        /* ===== Footer ===== */
        footer {
            border-top: 1px solid var(--border);
            padding: 5rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            gap: 3rem;
            max-width: 72rem;
            margin: 0 auto;
        }

        @media(min-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr auto;
                align-items: end;
            }
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        @media(min-width:768px) {
            .footer-left {
                align-items: flex-start;
                text-align: left;
            }
        }

        .footer-left .tagline {
            margin-top: 1.5rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-style: italic;
            text-transform: uppercase;
            font-size: 1.5rem;
        }

        .footer-left .motto {
            margin-top: .25rem;
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--primary);
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        @media(min-width:768px) {
            .footer-right {
                align-items: flex-end;
            }
        }

        .footer-right .label {
            font-size: .65rem;
            font-weight: 900;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: var(--muted-2);
        }

        .social-row {
            display: flex;
            align-items: center;
            gap: .75rem;
        }

        .social-icon {
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-2);
            transition: all .25s ease;
        }

        .social-icon:hover {
            border-color: var(--primary);
            background: var(--primary);
            transform: translateY(-2px);
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            max-width: 72rem;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-size: .65rem;
            font-weight: 700;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--muted-2);
        }

        @media(min-width:768px) {
            .footer-bottom {
                flex-direction: row;
            }
        }

/* ===== Utilitários (extraídos de estilos inline por CSP) ===== */
.badge--flush {
    margin-top: 0;
}

.icon-cta {
    width: 1.25rem;
    height: 1.25rem;
}
