/*==================================================
MELHOR PLATAFORMAS
CARDS PREMIUM
Parte 1
==================================================*/

/* GRID */

.cards,
.cards-container{

    width:100%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:24px;

    padding:25px;

    align-items:stretch;

}

/* CARD */

.card{

    position:relative;

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border-radius:22px;

    background:linear-gradient(
        180deg,
        #16202f 0%,
        #0b1320 100%
    );

    border:1px solid rgba(0,255,120,.18);

    box-shadow:
        0 10px 25px rgba(0,0,0,.35),
        0 0 18px rgba(0,255,120,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

/* HOVER */

.card:hover{

    transform:translateY(-8px);

    border-color:#00ff73;

    box-shadow:
        0 18px 40px rgba(0,0,0,.45),
        0 0 25px rgba(0,255,120,.25);

}

/* BRILHO */

.card::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-60%;

    width:80%;

    height:320%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.12),

        transparent

    );

    transform:rotate(25deg);

    transition:.8s;

    pointer-events:none;

}

.card:hover::before{

    left:160%;

}

/* IMAGEM */

.card img{

    width:100%;

    height:205px;

    object-fit:cover;

    display:block;

    transition:
        transform .45s ease,
        filter .45s ease;

}

.card:hover img{

    transform:scale(1.05);

    filter:brightness(1.05);

}

/* ÁREA DOS SELOS */

.badge-area{

    position:absolute;

    top:15px;

    left:15px;

    display:flex;

    gap:10px;

    z-index:20;

}

/* SELO */

.badge{

    padding:7px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    color:#fff;

    text-transform:uppercase;

    letter-spacing:.5px;

    backdrop-filter:blur(8px);

    box-shadow:0 6px 15px rgba(0,0,0,.25);

}

/* DESTAQUE */

.badge.destaque{

    background:linear-gradient(
        90deg,
        #00c853,
        #00ff84
    );

    color:#04180d;

}

/* NOVO */

.badge.novo{

    background:linear-gradient(
        90deg,
        #ff9800,
        #ffd54f
    );

    color:#2b1b00;

}

/* ANIMAÇÃO */

.badge{

    animation:badgePulse 2.5s infinite;

}

@keyframes badgePulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.06);

    }

    100%{

        transform:scale(1);

    }

}/*==================================================
MELHOR PLATAFORMAS
CARDS PREMIUM
Parte 2
==================================================*/

/*=========================
CARD BODY
=========================*/

.card-body{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:22px;

    background:linear-gradient(
        180deg,
        #101827 0%,
        #0b1220 100%
    );

    color:#ffffff;

}

/*=========================
TÍTULO
=========================*/

.card-body h3{

    margin:0 0 12px;

    font-size:22px;

    font-weight:700;

    color:#ffffff;

    line-height:1.3;

}

/*=========================
AVALIAÇÃO
=========================*/

.avaliacao{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:14px;

    color:#FFD54A;

    font-size:17px;

    font-weight:700;

}

/*=========================
ONLINE
=========================*/

.online{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:16px;

    color:#00ff88;

    font-size:14px;

    font-weight:700;

}

.online::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:#00ff66;

    box-shadow:0 0 12px #00ff66;

    animation:pulseOnline 1.5s infinite;

}

@keyframes pulseOnline{

    0%{

        transform:scale(1);

        opacity:1;

    }

    50%{

        transform:scale(1.4);

        opacity:.6;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}

/*=========================
DESCRIÇÃO
=========================*/

.card-body p{

    margin:0 0 18px;

    color:#c8d1dc;

    line-height:1.7;

    font-size:15px;

}

/*=========================
BÔNUS
=========================*/

.bonus{

    margin-top:auto;

    margin-bottom:20px;

    padding:14px;

    border-radius:14px;

    background:rgba(0,255,120,.08);

    border:1px solid rgba(0,255,120,.20);

    color:#00ff88;

    font-weight:700;

    text-align:center;

    font-size:15px;

    transition:.3s;

}

.card:hover .bonus{

    background:rgba(0,255,120,.15);

    border-color:#00ff88;

    box-shadow:0 0 18px rgba(0,255,120,.25);

}/*==================================================
MELHOR PLATAFORMAS
CARDS PREMIUM
Parte 3
==================================================*/

/*=========================
BOTÃO JOGAR
=========================*/

.btn-jogar{

    width:100%;

    padding:15px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    color:#04180d;

    background:linear-gradient(
        90deg,
        #00c853,
        #00ff84
    );

    transition:.35s;

    box-shadow:
        0 8px 18px rgba(0,255,120,.25);

}

.btn-jogar:hover{

    transform:translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0,255,120,.45);

    filter:brightness(1.08);

}

.btn-jogar:active{

    transform:scale(.98);

}

/*=========================
LINK
=========================*/

.card a{

    text-decoration:none;

}

/*=========================
SKELETON
=========================*/

.card.skeleton{

    overflow:hidden;

}

.skeleton-img{

    width:100%;

    height:200px;

    background:#1b2738;

}

.skeleton-title{

    width:70%;

    height:22px;

    margin-bottom:18px;

    border-radius:8px;

    background:#1b2738;

}

.skeleton-text{

    width:100%;

    height:14px;

    margin-bottom:12px;

    border-radius:8px;

    background:#1b2738;

}

.skeleton-button{

    width:100%;

    height:46px;

    margin-top:20px;

    border-radius:12px;

    background:#1b2738;

}

.skeleton-img,
.skeleton-title,
.skeleton-text,
.skeleton-button{

    background:linear-gradient(
        90deg,
        #1b2738 25%,
        #2d3d54 50%,
        #1b2738 75%
    );

    background-size:300% 100%;

    animation:skeletonLoading 1.4s infinite;

}

@keyframes skeletonLoading{

    from{

        background-position:100% 0;

    }

    to{

        background-position:-100% 0;

    }

}

/*=========================
FADE
=========================*/

.fade{

    animation:fadeCard .5s ease;

}

@keyframes fadeCard{

    from{

        opacity:0;

        transform:translateY(18px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================
TOAST
=========================*/

.toast{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:9999;

    padding:14px 20px;

    border-radius:14px;

    background:#101827;

    color:#fff;

    border:1px solid #00ff88;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

    opacity:0;

    transform:translateY(20px);

    transition:.35s;

}

.toast.mostrar{

    opacity:1;

    transform:translateY(0);

}

/*=========================
RESPONSIVO
=========================*/

@media (max-width:1024px){

    .cards,
    .cards-container{

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }

}

@media (max-width:768px){

    .cards,
    .cards-container{

        grid-template-columns:1fr;

        padding:16px;

        gap:18px;

    }

    .card img{

        height:180px;

    }

    .card-body{

        padding:18px;

    }

    .card-body h3{

        font-size:20px;

    }

    .btn-jogar{

        font-size:15px;

        padding:14px;

    }

}

@media (max-width:480px){

    .card{

        border-radius:18px;

    }

    .card img{

        height:170px;

    }

    .card-body{

        padding:16px;

    }

    .badge{

        font-size:11px;

        padding:6px 12px;

    }

    .bonus{

        font-size:14px;

    }

    .btn-jogar{

        font-size:14px;

        padding:13px;

    }

}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
    gap:20px;
}
.newsletter-box{
    max-width:850px;
    margin:auto;
    padding:40px;
}

/* Catálogo de plataformas — somente mobile */
@media (max-width:768px){
    .cards,
    .cards-container{
        width:100%;
        min-width:0;
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:9px;
        padding:12px;
        align-items:stretch;
        overflow:visible;
    }

    .cards > .card,
    .cards-container > .card{
        width:100%;
        min-width:0;
        border-radius:13px;
        transform:none;
    }

    .cards .card:hover,
    .cards-container .card:hover{
        transform:none;
    }

    .cards .card img,
    .cards-container .card img{
        width:100%;
        height:auto;
        aspect-ratio:1 / 1;
        object-fit:cover;
        object-position:center;
        display:block;
    }

    .cards .card-body,
    .cards-container .card-body{
        min-width:0;
        padding:7px 6px 8px;
        text-align:center;
    }

    .cards .card-body h3,
    .cards-container .card-body h3{
        display:-webkit-box;
        min-height:2.4em;
        margin:0 0 6px;
        overflow:hidden;
        font-size:11px;
        line-height:1.2;
        text-align:center;
        overflow-wrap:anywhere;
        -webkit-box-orient:vertical;
        -webkit-line-clamp:2;
    }

    .cards .avaliacao,
    .cards .online,
    .cards .card-body > p,
    .cards .bonus,
    .cards-container .avaliacao,
    .cards-container .online,
    .cards-container .card-body > p,
    .cards-container .bonus{
        display:none;
    }

    .cards .badge-area,
    .cards-container .badge-area{
        top:5px;
        left:5px;
        right:5px;
        gap:3px;
    }

    .cards .badge,
    .cards-container .badge{
        max-width:100%;
        padding:3px 5px;
        border-radius:6px;
        overflow:hidden;
        font-size:8px;
        line-height:1.1;
        text-overflow:ellipsis;
        white-space:nowrap;
    }

    .cards .btn-jogar,
    .cards-container .btn-jogar{
        display:flex;
        align-items:center;
        justify-content:center;
        min-height:36px;
        margin-top:auto;
        padding:6px 4px;
        border-radius:8px;
        font-size:9px;
        line-height:1.15;
        text-align:center;
        white-space:normal;
    }
}

@media (max-width:330px){
    .cards,
    .cards-container{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:8px;
        padding-inline:10px;
    }

    .cards .card-body h3,
    .cards-container .card-body h3{
        font-size:12px;
    }

    .cards .btn-jogar,
    .cards-container .btn-jogar{
        font-size:10px;
    }
}

/*==================================================
ATIVIDADE / CLIQUES — DESKTOP
==================================================*/

.cliques-desktop {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: #00c96b;
}

.texto-cliques-desktop {
    font-size: 13px;
    font-weight: 700;
}

/*==================================================
BOLINHA AMARELA NEON PULSANDO
==================================================*/

.bolinha-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #ffe600;
    box-shadow:
        0 0 0 0 rgba(255, 230, 0, .75),
        0 0 7px rgba(255, 230, 0, .95);
    animation: bolinhaStatusPulse 1.4s infinite;
}

@keyframes bolinhaStatusPulse {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 230, 0, .75),
            0 0 7px rgba(255, 230, 0, .95);
    }
    70% {
        transform: scale(1.15);
        box-shadow:
            0 0 0 6px rgba(255, 230, 0, 0),
            0 0 10px rgba(255, 230, 0, .9);
    }
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 230, 0, 0),
            0 0 7px rgba(255, 230, 0, .95);
    }
}

/*==================================================
BOTÃO PREMIUM — DESKTOP + MOBILE
==================================================*/

.cards .btn-jogar,
.cards-container .btn-jogar {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    min-height: 46px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        #075f36 0%,
        #087a3e 45%,
        #0a9b50 100%
    ) !important;
    color: #ffffff !important;
    box-shadow:
        0 5px 12px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .15);
    overflow: hidden;
    text-decoration: none;
    transition:
        transform .2s ease,
        filter .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.cards .btn-jogar::before,
.cards-container .btn-jogar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255, 255, 255, .18),
        transparent
    );
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none;
}

.cards .btn-jogar:hover,
.cards-container .btn-jogar:hover {
    transform: translateY(-2px);
    filter: brightness(1.10);
    border-color: rgba(255, 230, 0, .40);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, .30),
        0 0 12px rgba(10, 155, 80, .25),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.cards .btn-jogar:hover::before,
.cards-container .btn-jogar:hover::before {
    left: 140%;
}

.cards .btn-jogar:active,
.cards-container .btn-jogar:active {
    transform: scale(.97);
    filter: brightness(1.15);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

/*==================================================
TEXTO DO BOTÃO
==================================================*/

.btn-texto {
    position: relative;
    z-index: 2;
    display: block;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

/*==================================================
ATIVIDADE NO BOTÃO
Desktop: escondida
Mobile: visível dentro do botão
==================================================*/

.btn-atividade {
    display: none;
}

.btn-atividade .numero-atividade {
    font-weight: 900;
}

.btn-cliques {
    font-weight: 700;
}

/*==================================================
MOBILE
==================================================*/

@media (max-width: 768px) {
    .cliques-desktop {
        display: none !important;
    }

    .btn-atividade {
        position: relative;
        z-index: 2;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #ffffff;
        font-size: 8px;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
    }

    .btn-atividade .numero-atividade {
        font-size: 9px;
        font-weight: 900;
    }

    .btn-cliques {
        font-size: 8px;
    }

    .btn-atividade .bolinha-status {
        width: 7px;
        height: 7px;
        flex: 0 0 7px;
    }

    .cards .btn-jogar,
    .cards-container .btn-jogar {
        min-height: 38px !important;
        padding: 5px 3px !important;
        gap: 2px;
        border-radius: 8px;
    }

    .cards .btn-texto,
    .cards-container .btn-texto {
        font-size: 8px;
        line-height: 1.1;
        white-space: nowrap;
    }
}

/*==================================================
TELAS MUITO PEQUENAS
==================================================*/

@media (max-width: 330px) {
    .cards .btn-jogar,
    .cards-container .btn-jogar {
        padding: 5px 2px !important;
    }

    .cards .btn-texto,
    .cards-container .btn-texto {
        font-size: 8px;
    }

    .btn-atividade {
        font-size: 8px;
    }
}