/* =========================================================
   AÇÃO MANINHO
   HERO PRINCIPAL - 2 PRÊMIOS
   ========================================================= */

.premios-banner {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: none;

    margin: 0 auto;
    padding: 0;

    background: #050403;

    overflow: hidden;
}

.premios-banner img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0 auto;

    border: 0;
    border-radius: 0;

    object-fit: cover;
}


/* CTA ABAIXO DA ARTE */

.premios-banner::after {
    content: "🎟  ESCOLHER MEUS NÚMEROS  →";

    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 330px;
    height: 58px;

    padding: 0 32px;

    border: 1px solid rgba(255, 206, 72, .75);
    border-radius: 14px;

    background:
        linear-gradient(135deg, #c90919, #ef172a);

    color: #fff;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: .7px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.45),
        0 0 25px rgba(222, 18, 37, .28);

    pointer-events: none;
}


/* COMO PARTICIPAR SOBE E ENCAIXA NO HERO */

.premios-banner + .como {
    width: min(1320px, 94%);

    margin: -1px auto 35px;

    border-top-left-radius: 0;
    border-top-right-radius: 0;

    position: relative;
    z-index: 8;
}


/* NOTEBOOK */

@media (max-width: 1400px) {

    .premios-banner::after {
        bottom: 18px;
        height: 52px;
    }

}


/* TABLET */

@media (max-width: 900px) {

    .premios-banner::after {
        min-width: 280px;
        height: 48px;

        bottom: 12px;

        padding: 0 20px;

        font-size: 13px;
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .premios-banner {
        width: 100%;
    }

    .premios-banner img {
        width: 100%;
        height: auto;
    }

    .premios-banner::after {
        content: "🎟 ESCOLHER NÚMEROS";

        min-width: 0;
        width: 72%;

        height: 42px;

        bottom: 8px;

        padding: 0 12px;

        border-radius: 10px;

        font-size: 11px;
    }

    .premios-banner + .como {
        width: 94%;
        margin: 0 auto 25px;
    }

}

/* BOTÃO REAL */

.premios-banner::after {
    display: none;
}

.premios-cta {
    position: absolute;

    left: 50%;
    bottom: 24px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-width: 360px;
    height: 58px;

    padding: 0 30px;

    border: 1px solid rgba(255, 208, 72, .75);
    border-radius: 14px;

    background: linear-gradient(135deg, #bd0717, #ef172b);

    color: #fff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: .6px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.50),
        0 0 28px rgba(221,17,37,.30);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.premios-cta:hover {
    transform: translateX(-50%) translateY(-2px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.55),
        0 0 34px rgba(221,17,37,.45);
}

.premios-cta span {
    font-size: 22px;
}


@media (max-width: 600px) {

    .premios-cta {
        width: 76%;
        min-width: 0;

        height: 42px;

        bottom: 8px;

        padding: 0 14px;

        border-radius: 10px;

        font-size: 11px;
    }

    .premios-cta span {
        font-size: 16px;
    }

}
