/* Compatible Banks Section Styles */

.compatible-banks {
    padding: 80px 0;
    background: linear-gradient(135deg, #002044 0%, #003767 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.compatible-banks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(8, 83, 156, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.compatible-banks .section-title {
    margin-bottom: 50px;
    position: relative;
}

.compatible-banks .section-title h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    -webkit-text-fill-color: white;
    background: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.compatible-banks .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.banks-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 40px;
    position: relative;
}

.bank-logo {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    pointer-events: none; /* Prevent all interactions */
}

/* Remove hover selector entirely */
/* .bank-logo:hover {
    transform: none;
} */

/* Modern metallic effect for logos */
.bank-logo img {
    width: 180px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    opacity: 0.95;
    filter: brightness(0) invert(1) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    pointer-events: none; /* Prevent interactions on the image itself */
}

/* Remove hover selector entirely */
/* .bank-logo:hover img {
    opacity: 0.95;
    transform: none;
    filter: brightness(0) invert(1) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
} */

/* Force white for all bank logos to ensure consistency */
.bank-logo img[src*="itau"],
.bank-logo img[src*="santander"] {
    filter: brightness(0) invert(1) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2)) !important;
}

.bank-logo h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
    color: white;
}

/* Responsive styles */
@media (max-width: 992px) {
    .compatible-banks {
        padding: 60px 0;
    }
    
    .compatible-banks .section-title h2 {
        font-size: 36px;
    }

    .banks-logo-container {
        gap: 60px;
    }

    .bank-logo img {
        width: 160px;
        max-height: 80px;
    }
}

@media (max-width: 768px) {
    .compatible-banks {
        padding: 50px 0;
    }

    .compatible-banks .section-title h2 {
        font-size: 32px;
    }

    .compatible-banks .section-title p {
        font-size: 16px;
    }

    .banks-logo-container {
        gap: 40px;
        padding: 0 20px;
    }

    .bank-logo img {
        width: 140px;
        max-height: 70px;
    }
    
    .bank-logo h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .compatible-banks {
        padding: 40px 0;
    }

    .compatible-banks .section-title h2 {
        font-size: 28px;
    }

    .compatible-banks .section-title p {
        font-size: 14px;
    }

    .banks-logo-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .bank-logo img {
        width: 120px;
        max-height: 60px;
    }

    .bank-logo h3 {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .compatible-banks .section-title h2 {
        font-size: 24px;
    }

    .banks-logo-container {
        gap: 25px;
    }

    .bank-logo img {
        width: 100px;
        max-height: 50px;
    }
} 