/* ==========================================
   INKA CORP - HERO EXCLUSIVO Créditos Preferenciales
   Estilos completamente independientes
   ========================================== */

/* HERO SECTION */
.creditos-pref-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.hero-bg-creditos-pref {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content-creditos-pref {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-icon-creditos-pref {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-icon-creditos-pref i {
    font-size: 1.75rem;
    color: var(--gold);
}

.hero-title-creditos-pref {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.hero-subtitle-creditos-pref {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* STATS CARDS */
.creditos-pref-hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.creditos-pref-hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0.75rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
}

.creditos-pref-hero-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.creditos-pref-hero-stat.warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.2);
}

.creditos-pref-hero-stat.highlight {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.creditos-pref-hero-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

.creditos-pref-hero-stat.warning .creditos-pref-hero-value {
    color: var(--gold);
}

.creditos-pref-hero-stat.highlight .creditos-pref-hero-value {
    color: #FFFFFF;
}

.creditos-pref-hero-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}
