

/* =========================================================
🌟 SEÇÃO CLUBE VIP
========================================================= */
.clube-vip {
    padding: 80px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #f7f9fa;
    /* ADICIONADO: Fonte Roboto */
    font-family: 'Roboto', sans-serif;
}

.clube-vip-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.clube-vip-texto {
    flex: 1 1 45%;
    min-width: 300px;
}

.clube-vip-texto h2 {
    font-size: 2rem;
    color: #ed3056;
    margin-bottom: 25px;
    font-weight: 700; /* Peso Bold */
}

.clube-vip-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.clube-vip-lista li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    display: flex;
    align-items: center;
    /* ADICIONADO: Peso e altura de linha para legibilidade */
    font-weight: 400; /* Regular */
    line-height: 1.5;
}

.clube-vip-lista li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px; /* AJUSTADO: Alinhamento vertical do ícone */
    color: #f40a45;
    font-size: 1.1rem;
    line-height: 1.4;
}

.clube-vip-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ed3056;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600; /* Semibold */
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
    /* ADICIONADO: Garante a fonte no botão */
    font-family: 'Roboto', sans-serif;
}

.clube-vip-btn:hover {
    background: #d43350;
    transform: scale(1.05);
}

.clube-vip-slider {
    position: relative;
    flex: 1 1 45%;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #eee;
    aspect-ratio: 16 / 9;
}

.clube-vip-slider .slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.clube-vip-slider .slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease;
}

.clube-vip-slider .slider img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* !!! ALTERAÇÃO IMPORTANTE !!!
   Substituímos o 'display: none !important' 
   por estilos interativos e acessíveis.
*/
.clube-vip-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Garante que fiquem acima da imagem */
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    
    /* Esconde por padrão */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Mostra os botões no hover do slider */
.clube-vip-slider:hover button,
.clube-vip-slider:focus-within button {
    opacity: 1;
    visibility: visible;
}

.clube-vip-slider button.prev {
    left: 10px;
}

.clube-vip-slider button.next {
    right: 10px;
}
/* Fim da alteração dos botões */


/* RESPONSIVIDADE CLUBE VIP */
@media (max-width: 1024px) { /* Tablet */
    .clube-vip {
        padding: 60px 40px;
    }
    .clube-vip-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .clube-vip-texto {
        order: 2;
    }
    .clube-vip-slider {
        order: 1;
        max-width: 600px;
    }
    .clube-vip-btn {
        justify-content: center; /* Centraliza o botão no tablet/mobile */
    }
    .clube-vip-lista li {
         justify-content: center; /* Centraliza o texto da lista */
         text-align: center; /* Garante alinhamento */
    }
}

@media (max-width: 768px) { /* Mobile */
    .clube-vip {
        padding: 50px 20px;
    }
    .clube-vip-slider {
        aspect-ratio: 16 / 10;
    }
    .clube-vip-texto h2 {
        font-size: 1.6rem;
    }
    .clube-vip-lista li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) { /* Small Mobile */
    .clube-vip-slider {
        aspect-ratio: 4 / 3;
    }
    .clube-vip-texto h2 {
        font-size: 1.3rem;
    }
    .clube-vip-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}