/* ==========================================================================
   SEÇÃO 4 / SUPER BLOCO 4 - LAZER (CSS FINAL - FUNDO DO CARD AJUSTADO)
   ========================================================================== */

.leisure-section {
    padding: 100px 0;
    background-image: url('/assets/images/img 2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
}

.leisure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.leisure-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 92;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O CARD QUADRADO COM O AJUSTE FINAL */
.gradient-card {
    position: relative;
    width: 350px;
    height: 350px;
    max-width: 100%; 
    border-radius: 20px;
    
    /* --- A CORREÇÃO ESTÁ AQUI --- */
    /* ANTES: background: radial-gradient(...) */
    /* AGORA: Preto com 97% de opacidade (97% de transparência) */
    background-color: rgba(0, 0, 0, 0.3);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.gradient-card-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 20px;
}

.gradient-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px 0;
}

.gradient-card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.leisure-swiper {
    padding: 10px 40px !important;
}
.leisure-swiper .swiper-button-next,
.leisure-swiper .swiper-button-prev {
    color: #fff;
}
.leisure-swiper .swiper-pagination {
    bottom: -30px !important;
}
.leisure-swiper .swiper-pagination-bullet-active {
    background: #fff;
}
