/* Configuración de Colores */
    :root {
        --bank-blue: #213877;
        --bank-lime: #C7D744;
        --bank-dark: #162652; /* Una variante más oscura para profundidad */
    }

    .bank-section {
        background: linear-gradient(135deg, var(--bank-dark) 0%, var(--bank-dark) 100%);
        padding: 100px 0;
        color: #ffffff;
    }

    .bank-header h2 {
        font-weight: 800;
        color: #ffffff;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .bank-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--bank-lime);
        border-radius: 2px;
    }

    /* Tarjeta Estilo Premium */
    .bank-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 45px 35px;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
    }

    .bank-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-10px);
        border-color: var(--bank-lime);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .bank-icon-box {
        width: 65px;
        height: 65px;
        background: rgba(199, 215, 68, 0.15); /* Verde con opacidad */
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: var(--bank-lime);
        font-size: 2rem;
        transition: 0.3s;
    }

    .bank-card:hover .bank-icon-box {
        background: var(--bank-lime);
        color: var(--bank-blue);
        transform: scale(1.1);
    }

    .bank-card h4 {
        font-weight: 700;
        margin-bottom: 18px;
        color: #ffffff;
    }

    .bank-card p {
        color: #cbd5e0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Enlace de Acción */
    .bank-link {
        margin-top: auto;
        padding-top: 25px;
        color: var(--bank-lime);
        text-decoration: none;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        display: inline-flex;
        align-items: center;
    }

    .bank-link i {
        margin-left: 8px;
        font-size: 1.1rem;
        transition: transform 0.3s;
    }

    .bank-link:hover {
        color: #ffffff;
    }

    .bank-link:hover i {
        transform: translateX(8px);
    }

    .bank-lead-pro {
        font-family: 'Inter', 'Montserrat', sans-serif;
        font-size: 1.35rem;
        font-weight: 300;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: 0.02em; /* Espaciado sutil para elegancia */
        padding-left: 25px;
        position: relative;
        max-width: 85%;
        margin-top: 15px;
        /* Suavizamos el renderizado de la fuente */
        -webkit-font-smoothing: antialiased;
    }

    /* La barra lateral imponente */
    .bank-lead-pro::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5%;
        height: 90%;
        width: 4px;
        background: linear-gradient(to bottom, #C7D744, #213877);
        border-radius: 4px;
        box-shadow: 0 0 15px rgba(199, 215, 68, 0.3);
    }

    /* Resaltado de palabras clave con tu color institucional */
    .bank-lead-pro strong {
        color: #C7D744;
        font-weight: 600;
        position: relative;
        display: inline-block;
    }

    /* Animación de entrada opcional para mayor impacto */
    .bank-lead-pro {
        animation: fadeInSlide 1s ease-out forwards;
    }

    @keyframes fadeInSlide {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

      /* Efecto de elevación al pasar el ratón */
    .card:hover {
        transform: translateY(-10px);
    }

.infopa{
  font-family: Roboto, Arial, "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* --- Navegación Base --- */
.custom-link {
    color: #213877 !important;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.custom-link:hover {
    color: #C7D744 !important;
}

/* --- Botón Educación Financiera --- */
.btn-edufin {
    background-color: #213877;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(33, 56, 119, 0.2);
    transition: all 0.3s ease;
}

.btn-edufin:hover {
    background-color: #C7D744;
    color: #213877 !important;
    transform: translateY(-2px);
}

/* --- Dropdown Estilo Banco Moderno --- */
@media (min-width: 992px) {
    .custom-dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        display: block;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .custom-dropdown:hover .dropdown-menu {
        pointer-events: auto;
    }
}

.dropdown-menu {
    min-width: 260px;
    border-radius: 16px;
    padding: 1rem;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.dropdown-header-box {
    padding: 0 1rem 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-header-box span {
    font-size: 0.7rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
}

.dropdown-item {
    color: #213877;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(199, 215, 68, 0.1);
    color: #213877;
    padding-left: 20px; /* Efecto de empuje */
}

/* Indicador de Créditos Abierto */
.custom-dropdown:hover > .nav-link {
    color: #C7D744 !important;
}