/* Betting Sites Cards */
.betting-sitesShortReview {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.betting-site-card {
    background-color: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.betting-site-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.betting-site-card:first-child:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-header {
    background-color: var(--site-color, #333);
    padding: 5px 10px;
    position: relative;
}

.card-bodyShortReview {
    padding: 15px;
    background-color: var(--site-color, #333);
    color: white;
    border-radius: 16px 16px 0 0;
}

.card-footer {
    padding: 10px 15px;
    background-color: white;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 0.85rem;
    border-radius: 0 0 16px 16px;
}

/* Site Logo */
.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.betting-logo {
    max-width: 100%;
    height: auto;
}

.site-logo-img {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--site-color); /* Usa a mesma cor do card */
    border-radius: 8px;
    padding: 5px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .site-logo-img {
        justify-content: flex-start;
    }
}

.site-logo-img img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

/* Este bloco foi removido para evitar duplicação */
.site-bonus{
    text-decoration: none !important;
}
/* Site Bonus */
.site-bonus h3 {
    color:#fff;
    margin: 0 0 5px 0;
    font-size: 1.2rem; /* Aumentado de 1rem para 1.2rem */
    font-weight: 700; /* Aumentado de 600 para 700 (mais bold) */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    letter-spacing: -0.01em; /* Ligeiramente ajustado para melhor legibilidade */
}

.bonus-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9em;
    vertical-align: middle;
}

.site-bonus p {
    color:#fff;
    text-decoration: none !important;
    margin: 0;
    font-size: 0.85rem; /* Aumentado de 0.75rem para 0.85rem */
    opacity: 0.85;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .site-bonus h3 {
        font-size: 1.4rem; /* Aumentado de 1.2rem para 1.4rem */
    }
}

/* Offer Button */
.btn-offer {
    background-color: #FFCC00;
    color: #333;
    font-weight: bold;
    border: none;
    padding: 10px 40px;
    border-radius: 30px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    position: relative;
    font-size: 1.05rem;
}

/* Botão Get Offer maior para betting-site-cards */
.betting-site-card .btn-offer {
    font-weight: 700; /* Texto mais forte */
    box-shadow: 0 2px 4px rgba(0,0,0,0.15); /* Adiciona uma sombra */
}

.btn-offer::after {
    content: "\f35d";  /* Font Awesome external link icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 8px;
    font-size: 0.85em;
}

.btn-offer:hover {
    background-color: #e6b800;
    color: #333;
}

/* Subtle Responsible Gambling Message */
.subtle-responsible {
    font-size: 0.7rem;
    text-align: center;
    opacity: 0.7;
    margin-top: 6px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.subtle-responsible .terms-link {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
}

.subtle-responsible .terms-link i {
    font-size: 0.55rem;
    margin-right: 1px;
}

/* Centralizar apenas na versão desktop, alinhar à esquerda em mobile */
.col-3.col-md-3 {
    display: flex;
    flex-direction: column;
    align-items: end;
}

/* Contraste automático para cores claras/escuras */
.betting-site-card[data-color="bet365"] .subtle-responsible,
.betting-site-card[data-color="betano"] .subtle-responsible,
.betting-site-card[data-color="bwin"] .subtle-responsible,
.betting-site-card[data-color="casino-portugal"] .subtle-responsible {
    color: #fff; /* Texto branco para fundos escuros */
}

.betting-site-card[data-color="betclic"] .subtle-responsible,
.betting-site-card[data-color="solverde"] .subtle-responsible,
.betting-site-card[data-color="nossa-aposta"] .subtle-responsible,
.betting-site-card[data-color="luckia"] .subtle-responsible,
.betting-site-card[data-color="esc-online"] .subtle-responsible {
    color: #333; /* Texto escuro para fundos claros */
}



/* Promotional Tags */
.promo-tag {
    position: absolute;
    top: 0;
    left: 15px;
    background: linear-gradient(135deg, #ffcc00 0%, #ffbb00 100%);
    color: #333;
    font-size: 0.72rem;
    font-weight: bold;
    padding: 5px 14px 6px 14px;
    border-radius: 5px 5px 0 0;
    z-index: -1;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1), 0 -2px 6px rgba(0,0,0,0.15);
    transform: translateY(-85%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: promo-pulse 2s infinite alternate;
}

/* Limited Time Offer Badge */
.limited-time-tag {
    position: absolute;
    top: 0;
    right: 15px;
    background: linear-gradient(135deg, #e6193c 0%, #c61534 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 4px 12px 6px 12px;
    border-radius: 5px 5px 0 0;
    z-index: -1;
    box-shadow: 0 -4px 10px rgba(230, 25, 60, 0.3), 0 -2px 6px rgba(230, 25, 60, 0.2);
    transform: translateY(-85%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    min-width: 110px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: urgent-pulse 1.5s infinite alternate;
    backdrop-filter: brightness(1.05);
}

.limited-time-tag i {
    margin-right: 3px;
    font-size: 0.65rem;
}

/* Estilo para o tempo com os dois pontos piscando */
.time-display {
    display: inline-block;
    position: relative;
}

.blink-colon {
    animation: blinkColon 1s infinite;
}

@keyframes blinkColon {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Responsividade para o badge de tempo limitado */
@media (max-width: 767px) {
    .limited-time-tag {
        top: 0;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
        border-radius: 5px 5px 0 0;
        transform: translateY(-80%);
    }
    
    .limited-time-tag i {
        margin-right: 2px;
        font-size: 0.6rem;
    }
}

/* Licensed Badge */
.licensed-badge {
    position: absolute;
    top: 75px; /* Ajustado para uma posição mais adequada */
    left: 0;
    background-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.58rem;
    font-weight: 500;
    padding: 2px 8px 2px 6px;
    border-radius: 0 12px 12px 0;
    border-left: none;
    letter-spacing: 0.3px;
    z-index: 1;
    text-transform: uppercase;
    backdrop-filter: blur(1px);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.licensed-badge i {
    font-size: 0.52rem;
    margin-right: 2px;
    color: rgba(255, 255, 255, 0.95);
}

/* Review Links */
.review-link {
    color: #FFCC00;
    font-weight: 600;
    text-decoration: none;
}


.betting-site-card:first-child .card-bodyShortReview {
    border-radius: 16px 16px 0 0; /* Arredonda apenas o topo */
}

.betting-site-card:first-child .card-footer {
    border-radius: 0 0 16px 16px; /* Arredonda apenas a parte inferior */
}

.review-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: white !important;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    
    .betting-site-card:first-child .card-bodyShortReview {
        border-radius: 16px 16px 0 0; /* Mantém os cantos superiores arredondados no mobile */
    }
    
    .betting-site-card:first-child .card-footer {
        border-radius: 0 0 16px 16px; /* Mantém os cantos inferiores arredondados no mobile */
    }
    
    
    .betting-site-card:nth-child(2) .card-bodyShortReview,
    .betting-site-card:nth-child(3) .card-bodyShortReview,
    .betting-site-card:nth-child(4) .card-bodyShortReview,
    .betting-site-card:nth-child(5) .card-bodyShortReview {
        border-radius: 0; /* Remove todos os cantos arredondados do card-bodyShortReview */
    }
    
    .betting-site-card:nth-child(2) .card-footer,
    .betting-site-card:nth-child(3) .card-footer,
    .betting-site-card:nth-child(4) .card-footer,
    .betting-site-card:nth-child(5) .card-footer {
        border-radius: 0 0 16px 16px; /* Adiciona cantos arredondados somente na parte inferior do card-footer */
    }
    
    /* Reorganizar o layout para dispositivos móveis */
    .card-bodyShortReview .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    /* Primeira linha - Logo à esquerda e Bônus à direita */
    .card-bodyShortReview .col-3.col-md-2 {
        order: 1;
        width: 30% !important;
        flex: 0 0 30% !important;
        max-width: 30% !important;
        text-align: left;
        padding: 8px 8px 8px 15px; /* Aumentado o padding à esquerda */
        margin-bottom: 0;
    }
    
    .card-bodyShortReview .col-6.col-md-7 {
        order: 2;
        width: 70% !important;
        flex: 0 0 70% !important;
        max-width: 70% !important;
        padding: 8px 15px 8px 8px; /* Aumentado o padding à direita */
        text-align: left;
        margin-bottom: 0;
    }
    
    /* Segunda linha - Botão e mensagem de jogo responsável */
    .card-bodyShortReview .col-3.col-md-3 {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 5px; /* Reduzido de 10px para 5px */
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    
    .card-bodyShortReview .col-3.col-md-3 .btn-offer {
        width: 100%;
        min-width: unset;
    }

    
    /* Estilo para o texto de jogo responsável no mobile */
    .subtle-responsible {
        font-size: 0.65rem;
        margin-top: 4px;
    }
    
    .site-logo-container img {
        max-height: 32px;
        max-width: 90px;
    }
    
    .site-logo-container {
        padding: 8px;
    }

    .site-bonus h3 {
        font-size: 1.1rem; /* Aumentado para 1.1rem */
        margin: 3px 0px 5px 0px; /* Margem ajustada conforme solicitado */
        text-align: left;
    }
    
    .site-bonus p {
        font-size: 0.75rem; /* Reduzido para 0.75rem */
        margin-bottom: 3px; /* Reduzido de 6px para 3px */
        text-align: left;
    }
    
    .site-description {
        font-size: 0.75rem;
        margin-bottom: 3px; /* Reduzido de 6px para 3px */
    }
    
    .review-link {
        font-size: 0.75rem;
    }

    .btn-offer {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 130px;
    }
    
    /* Estilo para o texto de jogo responsável em tablets */
    .subtle-responsible {
        font-size: 0.65rem;
        margin-top: 4px;
    }
    
    .info-icon {
        width: 14px;
        height: 14px;
        font-size: 0.65rem;
    }
    
    .promo-tag {
        font-size: 0.7rem;
        padding: 5px 12px 7px 12px; /* Ajustado padding inferior para melhor alinhamento vertical */
        top: 0;
        left: 10px;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        border-radius: 5px 5px 0 0;
        clip-path: none;
        transform: translateY(-80%);
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 18px; /* Altura fixa para centralizar texto */
    }
    
    /* Ajustes do badge de licença para mobile */
    .licensed-badge {
        font-size: 0.55rem;
        padding: 2px 6px 2px 5px;
        top: auto; /* Removido posicionamento top */
        bottom: 3px; /* Posicionado na parte inferior com pequeno espaçamento */
        left: 0;
    }
    
    .licensed-badge i {
        font-size: 0.5rem;
        margin-right: 2px;
    }
}

@media (max-width: 480px) {
    
    .betting-site-card:first-child .card-bodyShortReview {
        border-radius: 16px 16px 0 0; /* Mantém os cantos superiores arredondados em telas muito pequenas */
    }
    
    .betting-site-card:first-child .card-footer {
        border-radius: 0 0 16px 16px; /* Mantém os cantos inferiores arredondados em telas muito pequenas */
    }
    
    
    .betting-site-card:nth-child(2) .card-bodyShortReview,
    .betting-site-card:nth-child(3) .card-bodyShortReview,
    .betting-site-card:nth-child(4) .card-bodyShortReview,
    .betting-site-card:nth-child(5) .card-bodyShortReview {
        border-radius: 0; /* Remove todos os cantos arredondados do card-bodyShortReview */
    }
    
    .betting-site-card:nth-child(2) .card-footer,
    .betting-site-card:nth-child(3) .card-footer,
    .betting-site-card:nth-child(4) .card-footer,
    .betting-site-card:nth-child(5) .card-footer {
        border-radius: 0 0 16px 16px; /* Adiciona cantos arredondados somente na parte inferior do card-footer */
    }
    
    .site-bonus h3 {
        font-size: 1rem;
        margin: 0px;
        padding: 0px;
    }
    
    .site-bonus p {
        font-size: 0.7rem;
        margin: 0px;
        padding: 0px; /* Reduzido para 0.7rem em telas muito pequenas */
    }
    
    /* Ajustes para telas muito pequenas - manter logo à esquerda */
    .card-bodyShortReview .col-3.col-md-2 {
        width: 30%;
        flex: 0 0 30%;
        padding-left: 15px; /* Aumentada a margem à esquerda */
    }
    
    .card-bodyShortReview .col-6.col-md-7 {
        width: 70%;
        flex: 0 0 70%;
        padding-right: 15px; /* Aumentada a margem à direita */
    }
    
    .site-logo-img {
        height: 35px;
        display: flex;
        justify-content: flex-start;
        margin-left: 5px; /* Aumenta espaçamento interno do logo */
    }
    
    .site-logo-img img {
        max-height: 28px;
    }
    
    /* Ajustes dos botões para telas pequenas */
    .card-bodyShortReview .col-3.col-md-3 {
        margin-top: 2px; /* Reduzido ainda mais a margem entre logo/descrição e o botão */
        align-items: flex-start; /* Alinhado à esquerda por padrão */
    }
    
    /* Cards 1-5 com botão centralizado em telas muito pequenas */
    .betting-site-card:nth-child(-n+5) .card-bodyShortReview .col-3.col-md-3 {
        align-items: center; /* Centralizado para os 5 primeiros cards */
    }
    
    .card-bodyShortReview .col-3.col-md-3 .btn-offer {
        width: 100%;
        margin-bottom: 4px; /* Reduzido de 5px para 4px */
    }
    
    .btn-offer {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    /* Ajuste os botões das betting-site-cards em telas muito pequenas */
    .betting-site-card .btn-offer {
        padding: 6px 12px;
        font-size: 0.85rem;
        font-weight: 700; /* Manter o texto em negrito forte */
        box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    }
    
    /* Estilo para o texto de jogo responsável em telas pequenas */
    .subtle-responsible {
        font-size: 0.6rem;
        margin-top: 3px;
    }
    
    /* Ajuste do badge de licença para telas muito pequenas */
    .licensed-badge {
        font-size: 0.5rem;
        padding: 1px 5px 1px 4px;
        top: auto;
        bottom: 3px; /* Posicionado com o mesmo espaçamento de 3px do fundo */
    }
    
    .licensed-badge i {
        font-size: 0.45rem;
        margin-right: 1px;
    }
}

/* Estilos para a seção de alternativas com apostas desportivas */
.alternatives-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.alternatives-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.base-link {
    color: #FFCC00;
    text-decoration: none;
    font-weight: 600;
}

.base-link:hover {
    text-decoration: underline;
}

.alternatives-grid {
    display: flex;
    flex-direction: column;
    gap: 35px; /* Aumentado de 25px para 35px para ainda mais espaçamento entre os cartões */
    margin-bottom: 40px; /* Reduzido de 50px para 40px */
}

.alternative-card, .compare-card {
    border-radius: 16px; /* Atualizado para 16px para corresponder com os betting-site-cards */
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
    overflow: visible;
    background-color: white;
    transform: translateZ(0);
    transition: transform 0.3s, box-shadow 0.3s;
    will-change: transform, box-shadow;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alternative-card:hover, .compare-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.alternative-content {
    display: flex;
    padding: 0;
    position: relative;
    overflow: visible;
    border-radius: 16px; /* Atualizado para 16px para corresponder com os betting-site-cards */
}

.alternative-left {
    width: 180px; /* Aumentado de 160px para 180px */
    min-width: 180px; /* Aumentado de 160px para 180px */
    padding: 10px; /* Reduzido de 12px para 10px */
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo verticalmente */
    text-align: center; /* Centraliza o texto */
    border-right: 1px solid #eee;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.alternative-logo {
    width: 100%;
    height: 131px; /* Aumentado de 105px para 131px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    padding: 6px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    transform: translateZ(5px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.alternative-settings {
    width: 150px;
    min-width: 150px;
    padding: 12px;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-right: 1px solid #eee;
}

.brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    text-align: center;
}

.settings-icons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    align-items: center;
    justify-content: flex-start; /* Alterado para alinhar à esquerda */
    margin-bottom: 10px;
}

.game-type {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

/* Alinha os game-types à esquerda em dispositivos móveis */
@media (max-width: 767px) {
    .game-type {
        align-items: flex-start;
    }
}

.game-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.game-icon i {
    font-size: 1rem;
    color: #444;
}

.game-label {
    font-size: 0.65rem;
    color: #555;
    text-align: center;
}

/* Alinhar o texto do label à esquerda em mobile */
@media (max-width: 767px) {
    .game-label {
        text-align: left;
    }
}

.settings-licensed {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.settings-licensed i {
    margin-right: 4px;
    color: #2cbb5d;
}

.brand-casinopt {
    background-color: #122b5e;
}

.brand-esc {
    background-color: #000;
}

.alternative-logo img {
    max-width: 90%;
    max-height: 120px; /* Aumentado de 100px para 120px */
    object-fit: contain;
}

/* Regra específica para o logo do ESC Online que está saindo da box */
.alternative-logo[style*="background-color: #333333"] img {
    max-width: 80%; /* Reduzido para garantir que o logo fique dentro da box */
    max-height: 80%; /* Reduzido para garantir proporção adequada */
}

.rating {
    display: flex;
    margin-top: 2px;
}

.rating i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin: 0 1px;
}

.alternative-features {
    flex: 1;
    border-right: 1px solid #eee;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 6px; /* Reduzido de 8px para 6px */
    font-size: 0.95rem; /* Reduzido de 1.1rem para 0.95rem */
    color: #444;
    display: flex;
    align-items: flex-start; /* Mantém flex-start para alinhar no topo quando houver múltiplas linhas */
    line-height: 1.3; /* Adicionado para garantir espaçamento correto */
}

.feature-check {
    color: #2cbb5d;
    margin-right: 5px; /* Reduzido de 6px para 5px */
    font-size: 0.9rem; /* Reduzido de 1rem para 0.9rem para combinar com o texto */
    margin-top: 2px; /* Ajustado de 3px para 2px para melhor alinhamento com a primeira linha */
    flex-shrink: 0; /* Garante que o ícone não encolha */
}

.alternative-payments {
    width: 175px; /* Reduzido de 210px para 190px */
    padding: 10px;
    background-color: #f2f8f2;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-info-item {
    margin-bottom: 6px; /* Reduzido de 8px para 6px - menos espaço entre itens */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.payment-info-label {
    font-size: 0.7rem;
    color: #666;
    display: flex;
    align-items: center;
}

.payment-info-label i {
    margin-right: 5px;
    color: #555;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.payment-info-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.promotions-count {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.promotions-count-value {
    background-color: #28a745;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 12px;
}

.alternative-apps {
    width: 175px; /* Aumentado muito sutilmente de 160px para 165px */
    padding: 10px 10px 21px 10px; /* Padding bottom aumentado para 21px */
    background-color: #f8f8f8;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.app-title, .payment-title, .review-title {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 5px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.app-badges {
    display: flex;
    margin-bottom: 3px;
    justify-content: space-around
}

.review-section {
    margin-bottom: 6px;
}

.review-link {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #0066cc;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.review-link i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.review-link:hover {
    color: #004499;
    text-decoration: underline;
}

.app-badges i {
    font-size: 1rem;
    color: #555;
    position: relative;
    cursor: pointer;
    margin-right: 5px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.app-badges i:hover {
    transform: translateY(-2px);
    color: #333;
}

.app-badges i::after {
    content: attr(data-app);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 10;
    font-family: sans-serif;
}

.app-badges i:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.app-label {
    font-size: 0.7rem;
    color: #777;
    margin-top: 3px;
    padding: 2px 6px;
    background-color: #e9e9e9;
    border-radius: 4px;
    display: inline-block;
}

.payment-section {
    margin-top: 10px;
    margin-bottom: 10px; /* Adicionado margem abaixo da seção Payment Methods */
}

.payment-methods {
    display: flex;
    gap: 6px;
    align-items: center;
}

.payment-icon {
    width: 35px;
    height: 20px;
    object-fit: contain;
    background-color: white;
    padding: 2px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.payment-count {
    font-size: 0.6rem;
    color: #666;
    margin-left: 4px;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 0px 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    z-index: 10; /* Aumenta o z-index para garantir que o popup fique visível */
}

.payment-count:hover {
    background-color: #e6e6e6;
    color: #333;
}

/* Payment Speed Styles */
.payment-speed-section,
.payment-info-section {
    margin-top: 10px;
    margin-bottom: 10px;
}

.payment-speed-title {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 0; /* Removido margin-bottom */
    margin-right: 8px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block; /* Para alinhar com o ícone */
}

.payment-speed {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.speed-indicator {
    font-size: 1.1rem; /* Aumentado para destacar o ícone */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px; /* Adicionado espaço à esquerda */
    position: relative;
}

.speed-indicator.slow {
    color: #ff4d4d; /* Vermelho para velocidade lenta */
}

.speed-indicator.normal {
    color: #ffa64d; /* Laranja para velocidade normal */
}

.speed-indicator.fast {
    color: #4dae50; /* Verde para velocidade rápida */
}

.speed-indicator.instant {
    color: #2196F3; /* Azul para velocidade instantânea */
}

.speed-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 4px;
}

.payment-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 12px;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2000; /* Aumentado para garantir que fique acima de todos os outros elementos, incluindo colapsáveis */
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .payment-popup {
        /* Posicionamento ajustado para mobile */
        position: absolute;
        bottom: auto;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        margin-top: 5px;
        margin-bottom: 0;
        width: 220px;
        z-index: 2000;
    }
}

/* Estilo específico para popups em compare-cards */
.compare-card .payment-popup {
    z-index: 2000; /* Maior z-index para garantir que esteja acima de tudo */
}

.payment-count:hover .payment-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.payment-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

@media (max-width: 767px) {
    .payment-popup::after {
        /* Em mobile, reposicionar a seta para apontar para cima */
        top: auto;
        bottom: 100%;
        border-top: none;
        border-bottom: 8px solid white;
    }
}

.payment-popup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
}

.popup-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.popup-payment-icon {
    width: 40px;
    height: 24px;
    object-fit: contain;
    background-color: white;
    padding: 3px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.alternative-bonus {
    width: 350px; /* Aumentado de 300px para 350px para seção de bônus mais ampla */
    padding: 16px; /* Reduzido de 18px para 16px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff9e6 0%, #ffefcc 100%);
    position: relative;
    border-top-right-radius: 18px; /* Reduzido de 20px para 18px */
    border-bottom-right-radius: 18px; /* Reduzido de 20px para 18px */
    box-shadow: inset 0 0 15px rgba(255, 204, 0, 0.2), 0 0 0 1px rgba(255, 204, 0, 0.1);
    transform: translateZ(0);
    perspective: 1000px;
}

.alternative-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,204,0,0.1) 0%, rgba(255,204,0,0) 70%);
    pointer-events: none;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    transform: translateZ(10px);
    z-index: 1;
}

.alternative-bonus::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.12) 100%);
    pointer-events: none;
    border-radius: 15px;
    z-index: 2;
    opacity: 0.6;
    transform: translateZ(25px);
}

/* Estilos específicos para os badges nos cartões alternativos */
.alternative-promo-tag {
    top: 0;
    left: 15px;
    z-index: -1;
    white-space: nowrap;
    width: auto;
    min-width: 120px; /* Garante uma largura mínima consistente */
    max-width: calc(100% - 30px);
    position: absolute;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 0.72rem; /* Aumentado para corresponder ao promo-tag nos betting-site-cards */
}

/* Estilos para o ícone de T&Cs removido conforme solicitado */

.alternative-licensed-badge {
    top: 55px;
    z-index: 6;
}

.alternative-bonus .subtle-responsible {
    font-size: 0.6rem;
    opacity: 0.7;
    margin-top: 4px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.subtle-responsible .terms-link {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
}

.subtle-responsible .terms-link i {
    font-size: 0.55rem;
    margin-right: 1px;
}

.bonus-offer {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.bonus-title {
    font-size: 1.2rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Aumento da fonte para o título do bônus apenas nos alternative cards */
.alternative-bonus .bonus-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.bonus-info {
    display: none;
}

/* t-and-c class removida a pedido do usuário */

.bonus-terms {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    padding: 2px 5px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 10px;
    display: inline-block;
}

.btn-bonus {
    background-color: #FFCC00;
    color: #333;
    font-weight: 700;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    min-width: 280px; /* Adicionado min-width conforme solicitado */
    text-align: center;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-bonus i {
    font-size: 1em;
}

.btn-bonus:hover {
    background-color: #ffdd33;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsividade para a seção de alternativas */
@media (max-width: 991px) {
    .alternative-content {
        flex-wrap: wrap;
    }
    
    .alternative-left {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .alternative-logo {
        width: 120px;
        height: 80px;
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .alternative-settings {
        width: 100%;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
    }
    
    .settings-icons {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }
    
    .settings-licensed {
        margin-top: 10px;
    }
    
    /* Modificação para que o licensed apareça abaixo do rating */
    .alternative-left {
        display: flex;
        flex-wrap: wrap;
    }
    
    .alternative-logo {
        width: 120px;
        height: 80px;
    }
    
    /* Em telas mobile, reorganiza o layout do conteúdo de informações */
    .alternative-name {
        order: 1;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .alternative-left .rating {
        order: 2;
        margin-right: 8px;
    }
    
    .alternative-left .settings-licensed {
        order: 3;
        margin-top: 5px;
        margin-left: 0;
    }
    
    /* Aplicar os mesmos estilos para alternative-card e compare-card apenas em mobile */
    .alternative-card .alternative-left,
    .compare-card .alternative-left {
        flex-wrap: wrap;
    }
    
    /* Ajuste para mobile: Logo à esquerda, à direita rating com licensed abaixo */
    .alternative-card .alternative-left,
    .compare-card .alternative-left {
        justify-content: space-between;
    }
    
    .alternative-card .alternative-left .alternative-logo,
    .compare-card .alternative-left .alternative-logo {
        width: 120px;
        order: 1;
        margin-right: 0;
    }
    
    /* Adicionar um container flex para agrupar rating e licensed */
    .alternative-card .alternative-left::before,
    .compare-card .alternative-left::before {
        content: "";
        display: none;
    }
    
    /* Modificar HTML dinamicamente via CSS para criar estrutura flexível */
    @media (max-width: 991px) {
        .alternative-card .alternative-left,
        .compare-card .alternative-left {
            position: relative;
        }
        
        /* Cria um wrapper para rating e licensed */
        .alternative-card .alternative-left::before,
        .compare-card .alternative-left::before {
            content: "";
            display: block;
            order: 2;
            width: 40%;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            height: 80%;
        }
        
        /* Posiciona rating e licensed no wrapper */
        .alternative-card .alternative-left .rating,
        .compare-card .alternative-left .rating {
            position: absolute;
            right: 15px;
            top: calc(50% - 20px);
            transform: translateY(-50%);
            margin: 0;
            z-index: 5;
            width: 100px;
            display: flex;
            justify-content: center;
        }
        
        .alternative-card .alternative-left .settings-licensed,
        .compare-card .alternative-left .settings-licensed {
            position: absolute;
            right: 15px;
            top: calc(50% + 20px);
            transform: translateY(-50%);
            margin: 0;
            z-index: 5;
            width: 100px;
            min-width: 100px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }
    
    /* Ajuste flexbox para alternative-text na versão mobile */
    .alternative-left .alternative-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .alternative-features {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .alternative-payments {
        width: 50%;
        border-right: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    
    .alternative-apps {
        width: 50%;
        border-right: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    
    .alternative-bonus {
        width: 60%;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 767px) {
    .alternative-payments, .alternative-apps, .alternative-bonus {
        width: 100%;
        border-right: none;
    }
    
    /* Estilos para seções colapsáveis em mobile */
    .collapsible-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        cursor: pointer;
        font-weight: 600;
        color: #333;
        transition: all 0.25s ease;
        border-radius: 0;
        position: relative;
        margin-bottom: 1px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        overflow: hidden;
        font-size: 0.85rem;
    }
    
    .collapsible-header::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        transition: all 0.25s ease;
    }
    
    /* Estilo específico para o cabeçalho de pagamentos */
    .payment-header {
        background: linear-gradient(to right, rgba(232, 245, 233, 0.5), rgba(232, 245, 233, 0.1));
    }
    
    .payment-header::before {
        background-color: rgba(76, 175, 80, 0.6);
    }
    
    .payment-header:hover {
        background: linear-gradient(to right, rgba(232, 245, 233, 0.7), rgba(232, 245, 233, 0.3));
        transform: translateY(0);
        box-shadow: none;
    }
    
    .payment-header.active {
        background: linear-gradient(to right, rgba(232, 245, 233, 0.9), rgba(232, 245, 233, 0.5));
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .payment-header.active::before {
        background-color: rgba(76, 175, 80, 0.9);
    }
    
    /* Estilo específico para o cabeçalho de apps */
    .apps-header {
        background: linear-gradient(to right, rgba(238, 238, 238, 0.6), rgba(238, 238, 238, 0.2));
    }
    
    .apps-header::before {
        background-color: rgba(118, 118, 118, 0.6);
    }
    
    .apps-header:hover {
        background: linear-gradient(to right, rgba(238, 238, 238, 0.8), rgba(238, 238, 238, 0.4));
        transform: translateY(0);
        box-shadow: none;
    }
    
    .apps-header.active {
        background: linear-gradient(to right, rgba(238, 238, 238, 0.9), rgba(238, 238, 238, 0.5));
        margin-bottom: 0;
        border-radius: 0;
    }
    
    .apps-header.active::before {
        background-color: rgba(118, 118, 118, 0.9);
    }
    
    .collapsible-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-out;
        padding: 0 10px;
        opacity: 0;
        border-radius: 0;
        box-shadow: none;
        transform: translateY(-4px);
    }
    
    .collapsible-content.active {
        max-height: 500px; /* Valor grande o suficiente para conter o conteúdo */
        padding: 10px;
        opacity: 1;
        margin-bottom: 0;
        transform: translateY(0);
        box-shadow: none;
        overflow: visible; /* Adicionado para permitir que os popups sejam visíveis */
        position: relative; /* Para garantir posicionamento correto dos elementos filhos */
    }
    
    /* Adiciona uma borda colorida à esquerda do conteúdo para combinar com o cabeçalho */
    .payment-header + .collapsible-content.active {
        border-left: 4px solid rgba(76, 175, 80, 0.3);
    }
    
    .apps-header + .collapsible-content.active {
        border-left: 4px solid rgba(118, 118, 118, 0.3);
    }
    
    .toggle-icon {
        transition: transform 0.3s ease;
        opacity: 0.7;
        font-size: 0.85rem;
    }
    
    .collapsible-header.active .toggle-icon {
        transform: rotate(180deg);
        opacity: 1;
    }
    
    /* Estilo dos ícones nos cabeçalhos */
    .collapsible-header i:not(.toggle-icon) {
        margin-right: 8px;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }
    
    .payment-header i:not(.toggle-icon) {
        color: rgba(0, 120, 0, 0.9);
    }
    
    .payment-header.active i:not(.toggle-icon) {
        background: rgba(255, 255, 255, 0.9);
        color: rgba(76, 175, 80, 1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .apps-header i:not(.toggle-icon) {
        color: rgba(70, 70, 70, 0.9);
    }
    
    .apps-header.active i:not(.toggle-icon) {
        background: rgba(255, 255, 255, 0.9);
        color: rgba(80, 80, 80, 1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* Mantém os títulos originais em mobile quando colapsível está ativo */
    .mobile-collapsible .payment-title,
    .mobile-collapsible .app-title {
        display: block;
        margin-top: 10px;
        margin-bottom: 8px;
    }
    
    /* Ajuste de espaçamento para seções colapsáveis */
    .mobile-collapsible.alternative-payments,
    .mobile-collapsible.alternative-apps {
        padding: 0;
    }
    
    .features-list li {
        font-size: 0.95rem; /* Mantendo o mesmo tamanho do desktop */
    }
    
    .bonus-title {
        font-size: 1.05rem;
    }
    
    /* Mantém o tamanho da fonte aumentado nos alternative cards mesmo em mobile */
    .alternative-bonus .bonus-title {
        font-size: 1.3rem;
        font-weight: 800;
    }
    
    .btn-bonus {
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .alternatives-title {
        font-size: 1.5rem;
    }
    
    .alternatives-intro {
        font-size: 0.95rem;
    }
    
    .alternative-left {
        padding: 12px;
        min-height: 90px; /* Aumenta a altura para acomodar o logo maior */
    }
    
    .alternative-logo {
        width: 200px !important;
        height: 60px !important;
        margin-right: 10px;
        max-width: 200px !important;
        min-width: 200px !important;
    }
    
    /* Container do logo deve ter tamanho fixo */
    .alternative-card .alternative-left .alternative-logo,
    .compare-card .alternative-left .alternative-logo {
        width: 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
    }
    
    /* Ajustes específicos para telas menores */
    .alternative-card .alternative-left::before,
    .compare-card .alternative-left::before {
        width: 35%;
    }
    
    .alternative-card .alternative-left .rating,
    .compare-card .alternative-left .rating {
        right: 10px;
        text-align: center;
        width: 100px;
    }
    
    .alternative-card .alternative-left .settings-licensed,
    .compare-card .alternative-left .settings-licensed {
        right: 10px;
        font-size: 0.58rem;
        padding: 2px 6px;
        text-align: center;
        width: 100px;
    }
    
    
    .features-list li {
        font-size: 0.9rem; /* Reduzido ainda mais para mobile */
        margin-bottom: 8px;
    }
    
    .feature-check {
        font-size: 0.85rem; /* Reduzido proporcionalmente */
    }
    
    .alternative-payments, .alternative-apps, .alternative-bonus {
        padding: 12px;
    }
    
    .app-title, .payment-title, .review-title {
        font-size: 0.7rem;
    }
    
    .app-badges i {
        font-size: 1rem;
    }
    
    .bonus-title {
        font-size: 1rem;
    }
    
    /* Mantém o tamanho da fonte aumentado nos alternative cards mesmo em telas pequenas */
    .alternative-bonus .bonus-title {
        font-size: 1.2rem;
    }
    
    /* Mantém o tamanho da fonte aumentado para a descrição nos alternative cards */
    .alternative-bonus .bonus-descriptionShortReview {
        font-size: 0.95rem;
    }
    
    .bonus-terms {
        font-size: 0.7rem;
    }
    
    .btn-bonus {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

/* Separador de seção */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    max-width: 600px;
    padding: 0 15px;
}

/* Espaçamento para as cards após o separador */
.alternatives-list .alternative-card, 
.alternatives-list .compare-card {
    margin-bottom: 50px; /* Aumentado de 40px para 50px para ainda mais espaço entre as cards */
}

/* Arredondamento em dispositivos desktop */
@media (min-width: 768px) {
    .compare-card .alternative-bonus {
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    
    .compare-card .alternative-content {
        border-radius: 18px;
        overflow: visible; /* Permite que os popups sejam exibidos completamente */
    }
    
    /* Arredondamento para o último elemento no lado direito da compare-card */
    .compare-card .alternative-apps {
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }
}

/* Arredondamento apenas para o card externo em dispositivos mobile */
@media (max-width: 767px) {
    .alternative-card,
    .compare-card {
        border-radius: 18px;
        overflow: visible; /* Alterado para visible para permitir popups */
    }
    
    /* Cantos superiores arredondados para a primeira seção */
    .alternative-card .alternative-left,
    .compare-card .alternative-left {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }
    
    /* Configuração das bordas em mobile */
    /* Primeiro, zeramos todas as bordas para reconstruir */
    .alternative-card .alternative-features,
    .alternative-card .alternative-payments,
    .alternative-card .alternative-apps,
    .alternative-card .alternative-bonus,
    .compare-card .alternative-features,
    .compare-card .alternative-payments,
    .compare-card .alternative-apps,
    .compare-card .alternative-bonus {
        border-radius: 0;
    }
    
    /* Aplicar cantos arredondados para a última seção (inferior) */
    .alternative-card .alternative-bonus,
    .compare-card .alternative-bonus {
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    
    /* Se não houver .alternative-bonus, aplicar aos elementos que podem ser os últimos */
    .alternative-card .alternative-apps:last-child,
    .compare-card .alternative-apps:last-child,
    .alternative-card .alternative-payments:last-child,
    .compare-card .alternative-payments:last-child,
    .alternative-card .alternative-features:last-child,
    .compare-card .alternative-features:last-child {
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    
    /* Ajuste para as barras coloridas nos headers colapsáveis quando são os últimos elementos e estão fechados */
    .alternative-card .alternative-payments:last-child .collapsible-header:not(.active),
    .compare-card .alternative-payments:last-child .collapsible-header:not(.active),
    .alternative-card .alternative-apps:last-child .collapsible-header:not(.active),
    .compare-card .alternative-apps:last-child .collapsible-header:not(.active) {
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    
    /* Ajuste para a barra colorida à esquerda do header quando é o último elemento e está fechado */
    .alternative-card .alternative-payments:last-child .collapsible-header:not(.active)::before,
    .compare-card .alternative-payments:last-child .collapsible-header:not(.active)::before,
    .alternative-card .alternative-apps:last-child .collapsible-header:not(.active)::before,
    .compare-card .alternative-apps:last-child .collapsible-header:not(.active)::before {
        border-bottom-left-radius: 18px;
    }
    
    /* Ajuste para o conteúdo quando é o último elemento e está aberto */
    .alternative-card .alternative-payments:last-child .collapsible-content.active,
    .compare-card .alternative-payments:last-child .collapsible-content.active,
    .alternative-card .alternative-apps:last-child .collapsible-content.active,
    .compare-card .alternative-apps:last-child .collapsible-content.active {
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }
    
    /* Ajuste para a borda colorida do conteúdo quando é o último elemento e está aberto */
    .alternative-card .alternative-payments:last-child .payment-header.active + .collapsible-content.active,
    .compare-card .alternative-payments:last-child .payment-header.active + .collapsible-content.active {
        border-left: 4px solid rgba(76, 175, 80, 0.3);
        border-bottom-left-radius: 18px;
    }
    
    .alternative-card .alternative-apps:last-child .apps-header.active + .collapsible-content.active,
    .compare-card .alternative-apps:last-child .apps-header.active + .collapsible-content.active {
        border-left: 4px solid rgba(118, 118, 118, 0.3);
        border-bottom-left-radius: 18px;
    }
    
    .alternative-content {
        border-radius: 18px;
        overflow: visible; /* Alterado para visible para permitir popups */
        position: relative; /* Garante posicionamento correto dos popups */
    }
}

/* Garante que os popups funcionem corretamente nas compare-cards */
.compare-card .payment-count {
    position: relative;
    z-index: 100; /* Garante que o contador fique acima de outros elementos */
}

.compare-card .payment-methods {
    position: relative;
    z-index: 10;
}

/* Novos estilos para os bônus nas cards especiais */
.bonus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: flex-start;
    padding-top: 5px;
    position: relative;
}

/* Menu deslizante para bonus-tags em mobile apenas na compare-card */
@media (max-width: 767px) {
    /* Restaurar menu deslizante horizontal conforme solicitado */
    .compare-card .bonus-tags {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 6px;
        margin-bottom: 5px;
        position: relative;
        gap: 8px;
    }
    
    .compare-card .bonus-tags::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    /* Garantir que o ícone e texto estejam na mesma linha */
    .compare-card .bonus-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-right: 2px;
    }
    
    /* Ajusta o ícone do relógio para ficar na mesma linha */
    .compare-card .bonus-tag .icon-wrapper {
        font-size: 0.75rem;
        margin-right: 5px;
        display: flex;
        align-items: center;
    }
    
    /* Ajusta a posição do countdown container para ficar abaixo do menu deslizante */
    .compare-card .countdown-container {
        position: static;
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 10px;
        background-color: #ff6a00;
        color: white;
        padding: 5px;
        border-radius: 6px;
        font-size: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

.bonus-tag {
    background-color: #FFCC00;
    color: #333;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    transform: translateZ(0);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Esta regra foi incorporada na nova estrutura de grid */

.bonus-tag:hover {
    background-color: #ffdd33;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.bonus-tag.active {
    background-color: #ffbb00;
    box-shadow: 0 0 0 2px rgba(255, 187, 0, 0.3);
}

/* Hide non-active bonus details */
.bonus-details {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    flex-direction: column;
    height: 100%;
    min-height: 130px; /* Reduzido ainda mais para diminuir altura */
}

.bonus-details.active {
    display: flex;
}

.bonus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    background-color: #FFCC00;
    color: #333;
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    gap: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.1);
    transform: translateZ(15px);
    position: relative;
    overflow: hidden;
}

.bonus-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0), rgba(255,255,255,0.3));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.bonus-btn:hover {
    background-color: #ffdd33;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Estilos para a oferta temporária */
.temporary-bonus {
    background-color: #ff6a00;
    color: white;
    animation: pulse 1.5s infinite alternate;
    position: relative;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center; /* Centralizar o conteúdo */
    gap: 4px; /* Espaço entre o ícone e o texto */
}

.temporary-bonus:hover {
    background-color: #ff8c00;
}

.temporary-bonus.active {
    background-color: #ff5500;
    box-shadow: 0 0 0 2px rgba(255, 85, 0, 0.3);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-icon {
    font-size: 0.8rem;
}

.bonus-text {
    display: inline-block;
}

@media (max-width: 767px) {
    /* Garante que o ícone e texto do bônus temporário estejam na mesma linha no mobile */
    .compare-card .temporary-bonus {
        padding: 5px 12px;
        gap: 5px;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
    
    /* Otimiza o layout do conteúdo em compare-cards para mobile */
    .compare-card .alternative-content {
        flex-direction: column;
    }
    
    .compare-card .alternative-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    /* Reduz o espaço entre os elementos para economizar espaço vertical */
    .compare-card .alternative-features {
        padding: 10px;
    }
    
    /* Compacta a visualização mobile das compare cards */
    .compare-card .bonus-content {
        margin-top: 5px;
        min-height: 120px;
    }
    
    .compare-card .bonus-value {
        font-size: 1.3rem;
    }
    
    .compare-card .bonus-descriptionShortReview {
        font-size: 0.8rem;
    }
    
    .compare-card .bonus-btn {
        padding: 6px 14px;
        margin-top: 8px;
    }
    
    /* Torna as seções Payment e Apps colapsáveis por padrão */
    .compare-card .collapsible-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .compare-card .collapsible-content.active {
        max-height: 300px;
    }
}

.countdown-container {
    position: absolute;
    right: 10px;
    top: 15px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff5500 100%);
    color: white;
    padding: 3px 10px 5px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3), 0 2px 4px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    height: 20px;
    min-width: 160px;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    animation: countdown-glow 2s infinite alternate;
}

/* Posicionamento específico para desktop */
.alternative-features {
    position: relative;
}

/* Condição de exibição do countdown quando o casino está ativo */
.bonus-tag[data-bonus-type="casino"].active ~ .countdown-container {
    display: flex;
}

@media (max-width: 767px) {
    .compare-card .countdown-container {
        position: static; /* Remove o posicionamento absolute */
        display: none; /* Inicialmente oculto */
        width: 100%;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #ff6a00 0%, #ff5500 100%);
        color: white;
        padding: 4px 6px 6px 6px; /* Ajustado para melhor alinhamento vertical */
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        height: 22px; /* Altura fixa para alinhamento consistente */
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
        animation: countdown-glow 2s infinite alternate;
    }
    
    /* Exibir o countdown em mobile apenas quando o botão casino estiver ativo */
    .compare-card .bonus-tag[data-bonus-type="casino"].active ~ .countdown-container {
        display: flex;
    }
}

.countdown-label {
    margin-right: 5px;
    font-weight: 500;
}

.countdown {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.time-separator {
    margin: 0 2px;
}

.time-separator.blink {
    animation: blink 1s infinite;
}

.limited-time-btn {
    background-color: #ff6a00 !important;
    color: white;
    animation: pulse 1.5s infinite alternate;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    padding: 6px 14px;
}

.limited-time-btn:hover {
    background-color: #ff8c00;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    100% { 
        transform: scale(1.05);
        box-shadow: 0 3px 8px rgba(255, 106, 0, 0.4);
    }
}

@keyframes promo-pulse {
    0% {
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1), 0 -2px 6px rgba(0,0,0,0.15);
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 -4px 12px rgba(255, 204, 0, 0.3), 0 -2px 8px rgba(255, 204, 0, 0.2);
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    }
}

@keyframes countdown-glow {
    0% {
        box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3), 0 2px 4px rgba(0,0,0,0.2);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.5), 0 2px 6px rgba(255, 106, 0, 0.3);
    }
}

@keyframes urgent-pulse {
    0% {
        transform: translateY(-85%);
    }
    100% {
        transform: translateY(-85%) scale(1.03);
    }
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.3; }
}

.bonus-footer {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    line-height: 1.2;
    padding: 0 5px;
}

.responsible-text {
    color: #666;
}

.tc-text {
    color: #777;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 3px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.bonus-content {
    margin-top: 8px;
    padding: 0 10px;
    min-height: 130px; /* Reduzido ainda mais para diminuir altura */
    display: flex;
    flex-direction: column;
}

.bonus-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.bonus-descriptionShortReview {
    font-size: 0.85rem;
    color: #555;
    margin-top: 2px;
}

/* Aumento da fonte para a descrição do bônus apenas nos alternative cards */
.alternative-bonus .bonus-descriptionShortReview {
    font-size: 1rem;
    line-height: 1.4;
}

.separator-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0.05), rgba(0,0,0,0.15), rgba(0,0,0,0.05));
}

.separator-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #FFCC00;
    border-radius: 50%;
    margin: 0 15px;
    color: #333;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.separator-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
    .section-separator {
        margin: 25px auto;
    }
    
    .separator-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin: 0 10px;
    }
    
    /* Estilos para o feedback visual de swipe */
    .swipe-feedback {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 204, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 100;
        animation: swipeFeedbackFade 0.5s ease-out forwards;
        pointer-events: none;
        border-radius: 10px;
    }
    
    .swipe-feedback i {
        font-size: 3rem;
        color: rgba(255, 204, 0, 0.6);
        animation: swipeFeedbackMove 0.5s ease-out forwards;
    }
    
    .swipe-feedback.left i {
        transform: translateX(-30px);
    }
    
    .swipe-feedback.right i {
        transform: translateX(30px);
    }
    
    @keyframes swipeFeedbackFade {
        0% { opacity: 0.9; }
        100% { opacity: 0; }
    }
    
    @keyframes swipeFeedbackMove {
        0% { transform: translateX(0); opacity: 0.9; }
        100% { 
            transform: translateX(var(--direction, 0)); 
            opacity: 0;
        }
    }
    
    .swipe-feedback.left {
        --direction: 30px;
    }
    
    .swipe-feedback.right {
        --direction: -30px;
    }
    
    /* Adiciona indicações visuais para mostrar que é possível deslizar */
    .compare-card .bonus-content {
        position: relative;
    }
    
    .compare-card .bonus-content::after {
        content: '< swipe >';
        position: absolute;
        bottom: 5px;
        right: 10px;
        font-size: 0.7rem;
        color: rgba(0, 0, 0, 0.2);
        opacity: 1;
        animation: fadeInOut 3s infinite;
        pointer-events: none;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.2; }
        50% { opacity: 0.5; }
    }
}


/* 
 * CSS para os badges especiais no topo do primeiro card
 * Estes badges aparecem vindo de trás do card (parcialmente escondidos) 
 */

/* Estilo base para os badges de topo */
.top-badge {
    position: absolute;
    top: -10px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-35%); /* Ajustado para parecer vindo de trás do card */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Badge "No Deposit Bonus" à esquerda */
.top-badge-bonus {
    left: 10px;
    background: linear-gradient(135deg, #ffd700, #FFCC00);
    color: #333;
    animation: pulsate 1.5s infinite alternate;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Badge "Expires in" à direita */
.top-badge-expires {
    right: 10px;
    background: linear-gradient(135deg, #ff5e62, #ff9966);
    color: white;
    animation: glow 2s infinite alternate;
    box-shadow: 0 0 8px rgba(255, 94, 98, 0.6);
}

/* Animações */
@keyframes pulsate {
    0% {
        transform: translateY(-35%) scale(1);
    }
    100% {
        transform: translateY(-35%) scale(1.05);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 94, 98, 0.6);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 94, 98, 0.8);
    }
}

/* Ajustes para o ícone de relógio */
.top-badge-expires i {
    margin-right: 5px;
}

/* Ajuste para o elemento piscante (colon) */
.top-badge-expires .blink-colon {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Ajustes para hover nos cards com badges */
.first-card:hover .top-badge,
.second-card:hover .top-badge,
.alt-first-card:hover .top-badge {
    transform: translateY(-50%); /* Levanta os badges ao passar o mouse */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Posicionamento no cartão alternativo */
.alt-first-card .top-badge {
    top: -8px; /* Ajustado para o design do card alternativo */
}

/* Ajustes para mobile */
@media (max-width: 767.98px) {
    .top-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        top: -8px;
        border-radius: 16px;
    }
    
    /* Menos deslocamento em mobile */
    .top-badge {
        transform: translateY(-25%);
    }
    
    .first-card:hover .top-badge,
    .second-card:hover .top-badge,
    .alt-first-card:hover .top-badge {
        transform: translateY(-40%);
    }
    
    /* Ajustes específicos para o ícone em mobile */
    .top-badge-expires i {
        margin-right: 3px;
        font-size: 0.6rem;
    }
}

