    /* ===== RESET E BASE ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        background-color: #0A0F1E;
        color: #E8ECF5;
        scroll-behavior: smooth;
        line-height: 1.6;
    }

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

    /* ===== CORES DA MARCA (AZUL + LILÁS) ===== */
    :root {
        --blue-dark: #0F1F4A;
        --blue-primary: #1A2B6B;
        --blue-mid: #2A4A9E;
        --lilac: #7B5EA7;
        --lilac-light: #A88BD4;
        --lilac-soft: #C4B0E6;
        --gradient-main: linear-gradient(135deg, #1A2B6B 0%, #7B5EA7 100%);
        --gradient-hover: linear-gradient(135deg, #2A4A9E 0%, #9B7FD4 100%);
        --dark: #0A0F1E;
        --dark-card: #121A30;
        --text-light: #E8ECF5;
        --text-muted: #A8B5D9;
    }

    /* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
    .whatsapp-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        background: #25d366;
        color: #fff;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
        z-index: 999;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        transform: scale(1.08);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
    }

    /* ===== HEADER ===== */
    header {
        background: rgba(10, 15, 30, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 16px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(123, 94, 167, 0.2);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 26px;
        font-weight: 600;
        letter-spacing: -0.5px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        background: var(--gradient-main);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #fff;
        font-weight: 700;
    }

    .logo span {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
        font-weight: 400;
        /* Mais leve: 400 em vez de 600 */
        font-size: 15px;
        letter-spacing: 0.3px;
        /* Espaçamento sutil entre letras */
    }

    .nav-links a {
        color: #C8D0E8;
        /* Cor mais suave e clara */
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        opacity: 0.85;
        /* Leve transparência para suavizar */
    }

    .nav-links a:hover {
        color: #FFFFFF;
        /* Fica totalmente branco ao passar o mouse */
        opacity: 1;
    }


    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 2px;
        background: var(--lilac-light);
        transition: width 0.3s;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .mobile-menu {
        display: none;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }

    /* ===== HERO COM IMAGEM DE FUNDO E ANIMAÇÃO ===== */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        margin-top: 72px;
        padding: 60px 0;
    }


    /* Efeito de zoom lento na imagem (opcional) */
    @keyframes zoomBackground {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.08);
        }
    }

    /* Overlay para escurecer e dar contraste ao texto */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 15, 30, 0.55);
        z-index: -2;
    }

    /* Partículas flutuantes - ficam entre a imagem e o texto */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        animation: floatParticle linear infinite;
        pointer-events: none;
    }

    .particle:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 5%;
        animation-duration: 18s;
    }

    .particle:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 70%;
        left: 80%;
        animation-duration: 22s;
    }

    .particle:nth-child(3) {
        width: 60px;
        height: 60px;
        top: 40%;
        left: 20%;
        animation-duration: 14s;
    }

    .particle:nth-child(4) {
        width: 100px;
        height: 100px;
        top: 80%;
        left: 10%;
        animation-duration: 20s;
    }

    .particle:nth-child(5) {
        width: 50px;
        height: 50px;
        top: 20%;
        left: 70%;
        animation-duration: 16s;
    }

    .particle:nth-child(6) {
        width: 90px;
        height: 90px;
        top: 50%;
        left: 50%;
        animation-duration: 24s;
    }

    @keyframes floatParticle {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 0.3;
        }

        25% {
            transform: translate(50px, -80px) scale(1.2);
            opacity: 0.6;
        }

        50% {
            transform: translate(-30px, -150px) scale(0.9);
            opacity: 0.4;
        }

        75% {
            transform: translate(70px, -60px) scale(1.1);
            opacity: 0.7;
        }

        100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.3;
        }
    }

    /* Conteúdo do Hero - fica acima de tudo */
    .hero-content {
        max-width: 700px;
        position: relative;
        z-index: 2;
        animation: fadeUp 1s ease-out;
    }

    .hero-content h1 {
        font-size: 58px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-content h1 span {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-content p {
        font-size: 20px;
        color: #C4D0E8;
        margin-bottom: 36px;
        max-width: 540px;
    }

    .btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .btn-primary {
        background: var(--gradient-main);
        color: #fff;
        font-weight: 700;
        padding: 16px 40px;
        border-radius: 60px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
        box-shadow: 0 8px 28px rgba(26, 43, 107, 0.4);
        border: none;
        font-size: 16px;
        cursor: pointer;
    }

    .btn-primary:hover {
        transform: translateY(-4px);
        background: var(--gradient-hover);
        box-shadow: 0 12px 36px rgba(123, 94, 167, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: #fff;
        font-weight: 600;
        padding: 16px 36px;
        border-radius: 60px;
        text-decoration: none;
        display: inline-block;
        border: 2px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s;
    }

    .btn-secondary:hover {
        border-color: var(--lilac-light);
        background: rgba(123, 94, 167, 0.1);
        color: var(--lilac-light);
    }

    /* ===== SEÇÕES PADRÃO ===== */
    section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 42px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .section-title span {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        color: #A8B5D9;
        font-size: 18px;
        max-width: 600px;
        margin-bottom: 56px;
    }

    /* ===== SOBRE ===== */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-text p {
        color: #C4D0E8;
        font-size: 17px;
        margin-bottom: 24px;
    }

    .about-stats {
        display: flex;
        gap: 40px;
        margin-top: 32px;
    }

    .stat-item h3 {
        font-size: 36px;
        font-weight: 800;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-item p {
        color: #A8B5D9;
        font-size: 14px;
    }

    .about-image {
        background: linear-gradient(145deg, #121A30, #1A2B4A);
        border-radius: 28px;
        padding: 40px;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(123, 94, 167, 0.15);
    }

    .about-image i {
        font-size: 56px;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0.8;
        margin: 8px;
    }

    /* ===== EXPERIÊNCIA ===== */
    #experiencia {
        background: #0C1428;
    }

    .experience-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .exp-card {
        background: #121A30;
        padding: 32px 24px;
        border-radius: 24px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.4s;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .exp-card:hover {
        transform: translateY(-12px);
        border-color: var(--lilac);
        box-shadow: 0 20px 40px rgba(123, 94, 167, 0.1);
    }

    .exp-card i {
        font-size: 48px;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        display: inline-block;
    }

    .exp-card h4 {
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .exp-card p {
        color: #A8B5D9;
        font-size: 14px;
    }

    /* ===== ONDE ESTAMOS ===== */
    #onde-estamos {
        background: #0A0F1E;
    }

    .locations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .location-card {
        background: #121A30;
        border-radius: 24px;
        padding: 28px 24px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }

    .location-card:hover {
        transform: translateY(-8px);
        border-color: var(--lilac);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    }

    .location-card .badge {
        display: inline-block;
        background: var(--gradient-main);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 4px 14px;
        border-radius: 60px;
        margin-bottom: 12px;
    }

    .location-card h3 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .location-card .city-sub {
        color: #A8B5D9;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .location-card .country {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #C4D0E8;
        font-size: 14px;
        margin-bottom: 16px;
        background: rgba(255, 255, 255, 0.04);
        padding: 4px 12px;
        border-radius: 60px;
    }

    .location-card .btn-detail {
        background: transparent;
        color: var(--lilac-light);
        border: 1px solid rgba(123, 94, 167, 0.3);
        padding: 8px 20px;
        border-radius: 60px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
    }

    .location-card .btn-detail:hover {
        background: var(--gradient-main);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 16px rgba(123, 94, 167, 0.3);
    }

    .location-card.global {
        border: 2px solid var(--lilac);
        background: linear-gradient(145deg, #1A2B4A, #121A30);
    }

    .location-card.global .badge {
        background: var(--gradient-main);
        box-shadow: 0 0 20px rgba(123, 94, 167, 0.3);
    }

    /* ===== LOCALIZADOR DE CÉLULAS ===== */
    #celulas {
        background: #0C1428;
        padding: 80px 0;
    }

    .cell-finder {
        background: linear-gradient(145deg, #121A30, #1A2B4A);
        border-radius: 32px;
        padding: 50px 40px;
        border: 1px solid rgba(123, 94, 167, 0.15);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    }

    .cell-finder .finder-title {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .cell-finder .finder-title span {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cell-finder .finder-sub {
        color: #A8B5D9;
        margin-bottom: 28px;
    }

    .finder-form {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }

    .finder-form input[type="text"] {
        flex: 1;
        min-width: 240px;
        padding: 16px 24px;
        border-radius: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(10, 15, 30, 0.6);
        color: #fff;
        font-size: 16px;
        outline: none;
        transition: 0.3s;
    }

    .finder-form input[type="text"]::placeholder {
        color: #6A7AA8;
    }

    .finder-form input[type="text"]:focus {
        border-color: var(--lilac);
        box-shadow: 0 0 0 3px rgba(123, 94, 167, 0.2);
    }

    .finder-form .btn-finder {
        padding: 16px 32px;
        border-radius: 60px;
        border: none;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
        font-size: 16px;
    }

    .btn-finder-primary {
        background: var(--gradient-main);
        color: #fff;
        box-shadow: 0 4px 16px rgba(26, 43, 107, 0.3);
    }

    .btn-finder-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(123, 94, 167, 0.4);
    }

    .btn-finder-secondary {
        background: rgba(255, 255, 255, 0.05);
        color: #C4D0E8;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-finder-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .finder-result {
        margin-top: 30px;
        padding: 24px;
        background: rgba(10, 15, 30, 0.5);
        border-radius: 20px;
        border: 1px dashed rgba(123, 94, 167, 0.2);
        color: #A8B5D9;
        display: none;
    }

    .finder-result.active {
        display: block;
        animation: fadeUp 0.5s ease;
    }

    .finder-result .result-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .finder-result .result-item:last-child {
        border-bottom: none;
    }

    .result-item .marker {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--gradient-main);
        flex-shrink: 0;
    }

    /* ===== DEPOIMENTOS ===== */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    .testimonial-card {
        background: #121A30;
        border-radius: 24px;
        padding: 28px;
        border-left: 4px solid var(--lilac);
        transition: 0.3s;
    }

    .testimonial-card:hover {
        background: #1A2B4A;
    }

    .testimonial-card .avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--gradient-main);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 22px;
        margin-bottom: 16px;
        color: #fff;
    }

    .testimonial-card blockquote {
        font-style: italic;
        color: #C4D0E8;
        margin-bottom: 12px;
    }

    .testimonial-card cite {
        font-weight: 600;
        color: #fff;
        font-style: normal;
    }

    .testimonial-card .video-icon {
        color: var(--lilac-light);
        margin-right: 6px;
    }

    /* ===== EVENTOS ===== */
    #eventos {
        background: #0C1428;
    }

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

    /* ===== EVENT ITEM ===== */
    .event-item {
        background: #121A30;
        padding: 20px 22px;
        border-radius: 18px;
        display: flex;
        align-items: stretch;
        gap: 16px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.3s ease;
        cursor: pointer;
        min-height: 110px;
        width: 100%;
        box-sizing: border-box;
    }

    .event-item:hover {
        border-color: var(--lilac);
        background: #1A2B4A;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    /* 🔥 DATA DO EVENTO */
    .event-date {
        background: var(--gradient-main);
        color: #fff;
        font-weight: 800;
        padding: 10px 14px;
        border-radius: 14px;
        text-align: center;
        min-width: 56px;
        max-width: 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .event-date .day {
        font-size: 22px;
        display: block;
        line-height: 1;
    }

    .event-date .month {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* 🔥 INFORMAÇÕES DO EVENTO */
    .event-info {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .event-info h5 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .event-info p {
        color: #A8B5D9;
        font-size: 13px;
        margin-bottom: 2px;
    }

    /* ========================================== */
    /* 🔥 RESPONSIVIDADE - TABLET (2 colunas) */
    /* ========================================== */
    @media (max-width: 992px) {
        .calendar-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .event-item {
            padding: 16px 18px;
            min-height: 100px;
            gap: 14px;
        }

        .event-date {
            min-width: 50px;
            padding: 8px 12px;
        }

        .event-date .day {
            font-size: 20px;
        }

        .event-date .month {
            font-size: 10px;
        }

        .event-info h5 {
            font-size: 16px;
        }
    }

    /* ========================================== */
    /* 🔥 RESPONSIVIDADE - CELULAR (1 coluna FULL WIDTH) */
    /* ========================================== */
    @media (max-width: 768px) {
        .calendar-grid {
            grid-template-columns: 1fr;
            /* 🔥 UMA COLUNA OCUPANDO TODA LARGURA */
            gap: 16px;
        }

        .event-item {
            padding: 18px 20px;
            min-height: 90px;
            gap: 16px;
            border-radius: 16px;
            width: 100%;
            box-sizing: border-box;
        }

        .event-date {
            min-width: 56px;
            max-width: 60px;
            padding: 10px 12px;
            border-radius: 14px;
        }

        .event-date .day {
            font-size: 22px;
        }

        .event-date .month {
            font-size: 11px;
        }

        .event-info h5 {
            font-size: 17px;
            margin-bottom: 4px;
        }

        .event-info p {
            font-size: 13px;
        }
    }

    /* ========================================== */
    /* 🔥 CELULAR PEQUENO (até 480px) */
    /* ========================================== */
    @media (max-width: 480px) {
        .calendar-grid {
            gap: 12px;
        }

        .event-item {
            padding: 14px 16px;
            min-height: 80px;
            gap: 12px;
            border-radius: 14px;
        }

        .event-date {
            min-width: 44px;
            max-width: 48px;
            padding: 6px 8px;
            border-radius: 12px;
        }

        .event-date .day {
            font-size: 18px;
        }

        .event-date .month {
            font-size: 9px;
        }

        .event-info h5 {
            font-size: 15px;
            margin-bottom: 4px;
        }

        .event-info p {
            font-size: 12px;
        }
    }

    /* ===== BLOG ===== */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .blog-card {
        background: #121A30;
        border-radius: 24px;
        overflow: hidden;
        transition: 0.3s;
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    }

    .blog-card .blog-img {
        height: 160px;
        background: var(--gradient-main);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        color: #fff;
        opacity: 0.8;
    }

    .blog-card .blog-body {
        padding: 24px;
    }

    .blog-card .blog-body h4 {
        margin-bottom: 8px;
    }

    .blog-card .blog-body p {
        color: #A8B5D9;
        font-size: 14px;
    }

    .blog-card .blog-body a {
        color: var(--lilac-light);
        font-weight: 600;
        text-decoration: none;
    }

    /* ===== CTA ===== */
    .cta-section {
        background: linear-gradient(145deg, #121A30, #0A0F1E);
        border-radius: 48px;
        padding: 80px 60px;
        text-align: center;
        border: 1px solid rgba(123, 94, 167, 0.1);
        margin-bottom: 0;
    }

    .cta-section h2 {
        font-size: 44px;
        font-weight: 500;
    }

    .cta-section h2 span {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-section p {
        color: #A8B5D9;
        font-size: 18px;
        max-width: 500px;
        margin: 16px auto 40px;
    }

    /* ===== RODAPÉ ===== */
    footer {
        padding: 40px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        color: #A8B5D9;
        font-size: 14px;
    }

    footer a {
        color: #B0BCD9;
        text-decoration: none;
        margin-left: 24px;
        transition: color 0.3s;
    }

    footer a:hover {
        color: var(--lilac-light);
    }

    /* ===== ANIMAÇÕES ===== */
    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ===== RESPONSIVIDADE ===== */
    @media (max-width: 992px) {
        .hero-content h1 {
            font-size: 44px;
        }

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

        .cta-section {
            padding: 50px 24px;
        }

        .cell-finder {
            padding: 30px 24px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            gap: 16px;
            background: #0A0F1E;
            padding: 30px;
            position: absolute;
            top: 72px;
            right: 0;
            width: 200px;
            border-radius: 0 0 20px 20px;
            border: 1px solid rgba(123, 94, 167, 0.1);
        }

        .nav-links.open {
            display: flex;
        }

        .mobile-menu {
            display: block;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .section-title {
            font-size: 32px;
        }

        .about-stats {
            flex-direction: column;
            gap: 16px;
        }

        .cta-section h2 {
            font-size: 32px;
        }

        .whatsapp-float {
            width: 56px;
            height: 56px;
            font-size: 28px;
            bottom: 20px;
            right: 20px;
        }

        .cell-finder .finder-title {
            font-size: 26px;
        }

        .finder-form {
            flex-direction: column;
        }

        .finder-form input[type="text"] {
            width: 100%;
            min-width: unset;
        }

        .finder-form .btn-finder {
            width: 100%;
            text-align: center;
        }

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

    @media (max-width: 480px) {
        .btn-group {
            flex-direction: column;
            width: 100%;
        }

        .btn-primary,
        .btn-secondary {
            text-align: center;
            width: 100%;
        }

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

    /* ===== BANNER POPUP ===== */
    .banner-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        z-index: 9998;
        display: none;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.5s ease;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        padding: 20px;
    }

    .banner-overlay.active {
        display: flex;
    }

    .banner-popup {
        position: relative;
        max-width: 90%;
        max-height: 90vh;
        animation: zoomIn 0.6s ease;
        cursor: pointer;
    }

    .banner-popup img {
        width: 100%;
        height: auto;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
        display: block;
    }

    /* Botão fechar */
    .banner-close {
        position: absolute;
        top: -16px;
        right: -16px;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        color: #1A2B6B;
        font-size: 24px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        z-index: 10;
        font-weight: 700;
    }

    .banner-close:hover {
        transform: rotate(90deg) scale(1.1);
        background: #fff;
    }

    /* Animações */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes zoomIn {
        from {
            opacity: 0;
            transform: scale(0.85);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .banner-popup {
            max-width: 95%;
        }

        .banner-close {
            top: -12px;
            right: -12px;
            width: 36px;
            height: 36px;
            font-size: 18px;
        }

        .banner-overlay {
            padding: 12px;
        }
    }

    @media (max-width: 480px) {
        .banner-close {
            top: -8px;
            right: -8px;
            width: 32px;
            height: 32px;
            font-size: 16px;
        }

        .banner-overlay {
            padding: 8px;
        }
    }

    /* ===== LOADER EVENTOS ===== */
    #eventosLoader {
        text-align: center;
        padding: 40px 0;
    }

    #eventosLoader i {
        font-size: 40px;
        color: #7B5EA7;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    #eventosLoader p {
        color: #A8B5D9;
        margin-top: 12px;
    }

    /* Mensagem de nenhum evento */
    .no-events {
        grid-column: 1/-1;
        text-align: center;
        padding: 40px;
        color: #A8B5D9;
    }

    .no-events i {
        font-size: 40px;
        color: #7B5EA7;
        margin-bottom: 16px;
        display: block;
    }