/* ════════════════════════════════
   HERO — base
════════════════════════════════ */
.landing-hero-promotion {
    background: #130d0f !important;
    padding: 0 !important;
    gap: 0;
    min-height: 100dvh;
    /* remove decorações originais */
}
.landing-hero-promotion .decoracao1,
.landing-hero-promotion .decoracao2,
.landing-hero-promotion .decoracao3,
.landing-hero-promotion .decoracao4,
.landing-hero-promotion::before { display: none !important; }

/* ════════════════════════════════
   DESKTOP: duas colunas
════════════════════════════════ */
@media (min-width: 768px) {
    .landing-hero-promotion {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    /* Coluna esquerda — padding-left sincronizado com .container do Bootstrap */
    .hero-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0.85rem;
        padding: 3rem 2.5rem 3rem max(1.5rem, calc((100vw - 1140px) / 2 + 1.5rem));
        flex: 0 0 50%;
        overflow: hidden;
        z-index: 1;
    }

    /* Coluna direita */
    .hero-lineup-wrap {
        flex: 0 0 50%;
        display: flex;
        align-items: stretch;
    }
    .hero-lineup {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        display: block;
        background: #130d0f;
    }

    /* Decorativos de fundo */
    .hero-deco {
        position: absolute;
        top: 50%;
        width: 300px;
        opacity: 0.05;
        pointer-events: none;
        user-select: none;
    }
    .hero-deco--left  { left: -80px;  transform: translateY(-50%) rotate(-20deg); }
    .hero-deco--right { right: -80px; transform: translateY(-50%) rotate(20deg); }

    /* Graffiti deco */
    .hero-graffiti {
        width: 180px;
        opacity: 0.08;
        position: absolute;
        bottom: -30px;
        right: 20px;
        pointer-events: none;
        user-select: none;
        mix-blend-mode: screen;
    }

    /* Esconde versões mobile */
    .hero-countdown--mobile,
    .hero-lineup--mobile { display: none !important; }

    /* Mostra countdown desktop */
    .hero-countdown--desktop { display: flex; }

    /* Logo */
    .hero-inner .img-banner {
        max-height: 15vh !important;
        width: auto !important;
        max-width: clamp(160px, 28vw, 320px) !important;
        position: relative; z-index: 1;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Headline desktop */
    .hero-headline-wrap {
        text-align: left !important;
        max-width: 520px;
        margin: 0;
        position: relative; z-index: 1;
    }
    .hero-title {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
        color: #F6EFDF;
        line-height: 1.1;
        margin: 0 0 0.3rem;
    }
    .hero-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.3rem);
        color: #C7241E;
        font-weight: 700;
        line-height: 1.4;
        margin: 0;
    }

    .landing-btn--hero,
    .hero-urgency,
    .hero-countdown--desktop { position: relative; z-index: 1; align-self: flex-start; }
}

/* ════════════════════════════════
   MOBILE: coluna única
════════════════════════════════ */
@media (max-width: 767px) {
    .landing-hero-promotion {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    /* Esconde elementos desktop */
    .hero-lineup-wrap,
    .hero-countdown--desktop,
    .hero-graffiti { display: none !important; }

    /* hero-inner vira container flex-col com posição relativa para os decos */
    .hero-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        padding: 0 0 1.25rem;
        overflow: hidden;
    }

    /* Hambúrgueres decorativos no mobile */
    .hero-deco {
        display: block !important;
        position: absolute;
        width: 200px;
        opacity: 0.06;
        pointer-events: none;
        user-select: none;
    }
    .hero-deco--left  { left: -50px;  bottom: 60px; transform: rotate(-20deg); top: auto; }
    .hero-deco--right { right: -50px; bottom: 60px; transform: rotate(20deg);  top: auto; }

    /* 1º: countdown — sem margem, colado no topo */
    .hero-countdown--mobile {
        display: flex;
        order: 1;
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
        background: rgba(199, 36, 30, 0.12);
        border-bottom: 1px solid rgba(199, 36, 30, 0.2);
        border-radius: 0;
        margin: 0;
    }

    /* 2º: lineup — full-width sem gaps */
    .hero-lineup--mobile {
        display: block !important;
        order: 2;
        width: 100%;
        height: auto;
        margin: 0;
    }

    /* 3º em diante: logo, headline, cta, urgency */
    .hero-inner .img-banner  { order: 3; margin-top: 0.75rem; }
    .hero-headline-wrap      { order: 4; }
    .landing-btn--hero       { order: 5; }
    .hero-urgency            { order: 6; }

    /* Logo mobile */
    .hero-inner .img-banner {
        max-height: 12vh !important;
        width: auto !important;
        max-width: clamp(150px, 45vw, 240px) !important;
    }

    /* Headline mobile */
    .hero-headline-wrap {
        padding: 0 1rem;
        text-align: center !important;
        position: relative; z-index: 1;
    }
    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4rem);
        color: #F6EFDF;
        line-height: 1.05;
        margin: 0 0 0.3rem;
    }
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        color: #C7241E;
        font-weight: 700;
        line-height: 1.4;
        margin: 0;
    }
}

/* ════════════════════════════════
   COUNTDOWN — compartilhado
════════════════════════════════ */
.hero-countdown {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(246, 239, 223, 0.06);
    border: 1px solid rgba(246, 239, 223, 0.1);
    border-radius: 12px;
    padding: 0.6rem 1.3rem;
}
.hero-countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 2.8rem;
}
.hero-countdown__num {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #C7241E;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.hero-countdown__label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(246, 239, 223, 0.5);
    margin-top: 0.2rem;
}
.hero-countdown__sep {
    font-size: 1.6rem;
    font-weight: 800;
    color: #C7241E;
    line-height: 1;
    align-self: flex-start;
    padding-top: 0.05rem;
}

/* hero btn */
.landing-btn--hero {
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
}

/* urgency */
.hero-urgency {
    color: #C7241E;
    font-size: 0.82rem;
    font-weight: 700;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-urgency::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #C7241E;
    flex-shrink: 0;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Mapa do evento ── */
.evento-mapa {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.evento-mapa iframe {
    border-radius: 12px;
}
