/* =======================================
   RESET
======================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#050505;
    color:#fff;

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

}

/* =======================================
   CORES
======================================= */

:root{

    --primary:#8A2EFF;
    --secondary:#B84DFF;
    --dark:#050505;
    --card:#111111;
    --white:#ffffff;
    --glass:rgba(255,255,255,.08);

}

/* =======================================
   HERO
======================================= */

.hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

}

.hero video{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:linear-gradient(

        rgba(0,0,0,.55),

        rgba(0,0,0,.80)

    );

}

.hero-content{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

}

.logo{

    width:220px;

    margin-bottom:40px;

}

.hero h1{

    font-family:'Montserrat',sans-serif;

    font-size:58px;

    font-weight:900;

    letter-spacing:2px;

}

.hero h2{

    font-family:'Montserrat',sans-serif;

    color:var(--primary);

    font-size:34px;

    margin-top:10px;

}

.hero p{

    margin-top:25px;

    font-size:18px;

    max-width:650px;

    opacity:.85;

}

/* =======================================
   BOTÃO
======================================= */

.btn{

    margin-top:45px;

    padding:18px 45px;

    border-radius:50px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    text-decoration:none;

    color:white;

    font-weight:700;

    transition:.35s;

    box-shadow:

    0 0 25px rgba(138,46,255,.45);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 0 40px rgba(184,77,255,.70);

}

/* =======================================
   SEÇÕES
======================================= */

section{

    padding:90px 8%;

}

.titulo{

    text-align:center;

    font-size:42px;

    font-family:'Montserrat';

    margin-bottom:60px;

}

/* =======================================
   CARDS
======================================= */

.cards{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.card{

    background:var(--card);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.card:hover{

    transform:translateY(-10px);

}

.card img{

    width:100%;

    height:420px;

    object-fit:cover;

}

.card-content{

    padding:30px;

}

.card h3{

    font-size:28px;

    margin-bottom:18px;

}

.card p{

    opacity:.8;

    line-height:1.8;

}

.card a{

    display:inline-block;

    margin-top:25px;

    padding:15px 28px;

    border-radius:12px;

    background:var(--primary);

    color:white;

    text-decoration:none;

    font-weight:700;

}

/* =======================================
   REDES
======================================= */

.redes{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.redes a{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:white;

    background:#151515;

    font-size:28px;

    transition:.3s;

}

.redes a:hover{

    background:var(--primary);

}

/* =======================================
   BOTÃO WHATSAPP
======================================= */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    font-size:34px;

    z-index:999;

    animation:pulse 2s infinite;

    box-shadow:

    0 0 25px rgba(37,211,102,.45);

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

/* =======================================
   FOOTER
======================================= */

footer{

    padding:60px;

    text-align:center;

    background:#080808;

    opacity:.75;

}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

.badge{
    display:inline-block;
    background:#8A2EFF;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.info{
    margin:20px 0;
}

.info p{
    margin:6px 0;
    color:#cfcfcf;
}

.descricao{
    min-height:90px;
    color:#bfbfbf;
    line-height:1.7;
}

.acoes{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:25px;
}

.btn-evento{
    flex:1;
    text-align:center;
    background:#8A2EFF;
    color:#fff;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-evento:hover{
    background:#A94DFF;
}

.btn-whatsapp{
    flex:1;
    text-align:center;
    background:#25D366;
    color:#fff;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-whatsapp:hover{
    background:#1ebe5d;
}

.sem-eventos{
    width:100%;
    padding:80px;
    text-align:center;
    background:#111;
    border-radius:20px;
}
/* ===================================
   CONTATO
=================================== */

.contato{

    background:#090909;

    text-align:center;

}

.subtitulo{

    max-width:700px;

    margin:20px auto 60px;

    color:#cfcfcf;

    font-size:18px;

}

.social-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.social-card{

    background:#141414;

    padding:35px;

    border-radius:20px;

    text-decoration:none;

    color:white;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.social-card:hover{

    transform:translateY(-8px);

    border-color:#8A2EFF;

    box-shadow:0 0 30px rgba(138,46,255,.25);

}

.social-card i{

    font-size:42px;

    margin-bottom:18px;

    display:block;

}

.social-card span{

    font-size:18px;

    font-weight:600;

}

.instagram:hover{

    background:#1a1022;

}

.whatsapp:hover{

    background:#102217;

}

.maps:hover{

    background:#171717;

}

/* ===================================
   BOTÃO FLUTUANTE DO WHATSAPP
   Mantém apenas um ícone redondo, sem texto, sem sobreposição.
=================================== */

.whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;
    width:62px;
    height:62px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:34px;
    line-height:1;
    z-index:9999;
    box-shadow:0 0 25px rgba(37,211,102,.55);
    animation:pulse 2s infinite;
    overflow:hidden;
}

.whatsapp-float i{
    display:block;
    width:auto;
    height:auto;
    margin:0;
    padding:0;
    color:#fff;
    line-height:1;
}

.whatsapp-float span,
.whatsapp-float p,
.whatsapp-float strong{
    display:none !important;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

@media (max-width:768px){
    .whatsapp-float{
        width:52px;
        height:52px;
        right:14px;
        bottom:78px;
        font-size:28px;
    }

    .eventos{
        padding-bottom:110px;
    }

    .acoes{
        flex-direction:column;
        gap:12px;
    }

    .btn-evento,
    .btn-whatsapp{
        width:100%;
        flex:none;
        min-height:52px;
        display:flex;
        align-items:center;
        justify-content:center;
        white-space:normal;
    }
}

.countdown{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:20px;

    flex-wrap:wrap;

}

.countdown span{

    background:#8A2EFF;

    color:#fff;

    padding:10px 14px;

    border-radius:8px;

    font-weight:700;

    font-size:15px;

    min-width:60px;

    text-align:center;

}
/* ===========================
   HERO SLIDER
=========================== */

.hero-slider{

    position:relative;

    width:100%;

    overflow:hidden;

}

.hero-slider .slide{

    display:none;

    animation:fade .6s ease;

}

.hero-slider .slide.active{

    display:block;

}

@keyframes fade{

    from{

        opacity:0;

        transform:scale(1.02);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/* =======================================
   CORREÇÃO DA SOMBRA/BANNER DA HOME
   Faz o banner ocupar a tela toda e remove o retângulo preto central.
======================================= */
.hero{
    position:relative !important;
    width:100% !important;
    min-height:100vh;
    overflow:hidden !important;
    background-size:cover !important;
    background-position:center center;
    background-repeat:no-repeat !important;
}

.hero video{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    z-index:0 !important;
}

.hero .overlay,
.overlay{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
    background:linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.62)) !important;
    z-index:1 !important;
    pointer-events:none !important;
}

.hero-content{
    position:relative !important;
    z-index:2 !important;
    background:transparent !important;
    box-shadow:none !important;
}

/* =======================================
   AJUSTE RESPONSIVO DOS CARDS DE EVENTOS
   Mantém a imagem bonita no PC e evita corte/altura exagerada no celular.
======================================= */
.eventos,
section{
    max-width:100%;
}

.cards{
    align-items:stretch;
}

.card img{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    height:auto !important;
    object-fit:cover;
    object-position:center center;
}

@media (min-width: 900px){
    .cards{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .card img{
        height:auto !important;
        aspect-ratio:16/9;
    }
}

@media (max-width: 768px){
    section{
        padding:55px 18px;
    }

    .titulo{
        font-size:32px;
        margin-bottom:32px;
    }

    .cards{
        display:grid;
        grid-template-columns:1fr;
        gap:24px;
    }

    .card{
        border-radius:18px;
    }

    .card-content{
        padding:22px;
    }

    .card h3{
        font-size:22px;
        line-height:1.2;
    }

    .card img{
        width:100%;
        aspect-ratio:16/9;
        height:auto !important;
        object-fit:cover;
        object-position:center center;
    }

    .acoes{
        flex-direction:column;
    }

    .btn-evento,
    .btn-whatsapp{
        width:100%;
        flex:none;
    }
}

@media (max-width: 480px){
    section{
        padding:45px 14px;
    }

    .titulo{
        font-size:28px;
    }

    .card-content{
        padding:18px;
    }

    .card h3{
        font-size:20px;
    }

    .info p{
        font-size:14px;
    }
}


/* =====================================================
   AJUSTE 2026-06-30: WhatsApp + eventos mobile
   - Remove o botão duplicado causado pela classe .whatsapp antiga.
   - Usa somente .whatsapp-float como botão flutuante.
   - Faz os banners dos eventos no celular aparecerem inteiros.
===================================================== */

/* A classe .whatsapp também era usada no card social e estava virando botão fixo.
   Aqui neutralizamos isso para não duplicar o ícone flutuante. */
.social-card.whatsapp,
.social-card.whatsapp-card{
    position:relative !important;
    inset:auto !important;
    width:auto !important;
    height:auto !important;
    border-radius:20px !important;
    background:#141414 !important;
    display:block !important;
    color:#fff !important;
    font-size:inherit !important;
    animation:none !important;
    box-shadow:none !important;
    z-index:auto !important;
}

.social-card.whatsapp:hover,
.social-card.whatsapp-card:hover{
    background:#102217 !important;
}

.whatsapp-svg{
    width:1em;
    height:1em;
    display:block;
    color:currentColor;
}

.social-card .whatsapp-svg{
    width:42px !important;
    height:42px !important;
    max-width:42px !important;
    max-height:42px !important;
    margin:0 auto 18px !important;
}

.whatsapp-float{
    position:fixed !important;
    right:24px !important;
    bottom:24px !important;
    width:62px !important;
    height:62px !important;
    min-width:62px !important;
    min-height:62px !important;
    max-width:62px !important;
    max-height:62px !important;
    padding:0 !important;
    margin:0 !important;
    border-radius:50% !important;
    background:#25D366 !important;
    color:#fff !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-decoration:none !important;
    font-size:34px !important;
    line-height:1 !important;
    z-index:99999 !important;
    box-shadow:0 0 25px rgba(37,211,102,.55) !important;
    overflow:hidden !important;
}

.whatsapp-float .whatsapp-svg{
    width:34px !important;
    height:34px !important;
    margin:0 !important;
}

.whatsapp-float i,
.whatsapp-float span,
.whatsapp-float p,
.whatsapp-float strong{
    display:none !important;
}

/* Desktop: mantém os cards bonitos em grid. */
#eventos .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(360px, 1fr));
    gap:32px;
    align-items:start;
}

#eventos .card{
    overflow:hidden;
}

#eventos .card > img{
    display:block !important;
    width:100% !important;
    height:auto !important;
    aspect-ratio:auto !important;
    object-fit:contain !important;
    object-position:center center !important;
    background:#050505 !important;
}

/* Mobile: não corta, não dá zoom e não aperta o flyer. */
@media (max-width:768px){
    #eventos{
        padding-left:0 !important;
        padding-right:0 !important;
        overflow:hidden !important;
    }

    #eventos .container{
        width:100% !important;
        max-width:100% !important;
        padding-left:14px !important;
        padding-right:14px !important;
        margin:0 auto !important;
    }

    #eventos .cards{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:26px !important;
        width:100% !important;
        max-width:100% !important;
    }

    #eventos .card{
        width:100% !important;
        max-width:100% !important;
        margin:0 auto !important;
        border-radius:22px !important;
        overflow:hidden !important;
    }

    #eventos .card > img{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
        height:auto !important;
        min-height:0 !important;
        max-height:none !important;
        aspect-ratio:auto !important;
        object-fit:contain !important;
        object-position:center center !important;
        background:#050505 !important;
    }

    #eventos .card-content{
        padding:22px 18px 24px !important;
    }

    #eventos .card h3{
        font-size:24px !important;
        line-height:1.28 !important;
        word-break:normal !important;
        overflow-wrap:anywhere !important;
    }

    .acoes{
        flex-direction:column !important;
        gap:12px !important;
    }

    .btn-evento,
    .btn-whatsapp{
        width:100% !important;
        flex:none !important;
        min-height:52px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        margin-top:0 !important;
        text-align:center !important;
    }

    .whatsapp-float{
        width:54px !important;
        height:54px !important;
        min-width:54px !important;
        min-height:54px !important;
        max-width:54px !important;
        max-height:54px !important;
        right:14px !important;
        bottom:18px !important;
    }

    .whatsapp-float .whatsapp-svg{
        width:30px !important;
        height:30px !important;
    }
}

@media (max-width:480px){
    #eventos .container{
        padding-left:12px !important;
        padding-right:12px !important;
    }

    #eventos .card-content{
        padding:20px 16px 22px !important;
    }

    #eventos .card h3{
        font-size:22px !important;
    }
}
.leads-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-bottom:25px;
}

.leads-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.btn-hot{
    background:#e10808 !important;
    color:#fff !important;
    text-decoration:none;
    padding:13px 22px;
    border-radius:10px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.btn-hot:hover{
    background:#ff1f1f !important;
}

@media(max-width:768px){
    .leads-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .leads-actions{
        width:100%;
        flex-direction:column;
    }

    .leads-actions .btn,
    .leads-actions .btn-hot{
        width:100%;
        text-align:center;
    }
}