/* credito_style.css */

.credito-page {
    padding: 60px 0;
    background-image: linear-gradient(to bottom, var(--bg-body), #e4e7f0);
}

/* Tarjeta de Líneas */
.lineas-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.lineas-header {
    background-image: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: 25px;
    color: white;
    display: flex;
    align-items: center;
}

/* FIX COLOR */
.lineas-icon { 
    font-size: 2.5rem; 
    opacity: 0.9; 
    margin-right: 20px; 
    color: white;
}

.lineas-title h2 { 
    margin: 0; 
    font-size: 1.8rem; 
    color: white; /* FIX */
}
.lineas-body { padding: 30px; }
.lineas-intro { font-size: 1.1rem; color: #444; margin-bottom: 25px; }

/* Items de Líneas */
.linea-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}
.linea-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* FIX CÍRCULOS PERFECTOS */
.linea-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 25px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 64, 128, 0.3);
}

.linea-content { flex: 1; }
.linea-content h3 { color: var(--color-primary-dark); font-size: 1.4rem; margin-top: 0; margin-bottom: 10px; }
.linea-content p { margin: 0; color: var(--text-muted); font-size: 1rem; }

/* Tarjetas de Detalle */
.detalle-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detalle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.detalle-header { padding: 25px 20px; text-align: center; position: relative; }

/* Colores específicos */
.libre-inversion .detalle-header { background-color: #f0f7ff; }
.vivienda .detalle-header { background-color: #f0fff7; }
.educacion .detalle-header { background-color: #fff7f0; }

/* FIX CÍRCULOS PERFECTOS */
.detalle-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.libre-inversion .detalle-icon { color: #0066cc; }
.vivienda .detalle-icon { color: #00a67e; }
.educacion .detalle-icon { color: #e67e00; }

.detalle-header h3 { color: var(--color-primary-dark); margin: 0; font-size: 1.5rem; }
.detalle-body { padding: 25px 20px; }
.detalle-body p { color: var(--text-muted); margin-bottom: 20px; min-height: 80px; }

.detalle-features { padding-top: 10px; }
.feature-item { display: flex; align-items: center; margin-bottom: 12px; }
.feature-item:last-child { margin-bottom: 0; }
.feature-item i { margin-right: 10px; }
.libre-inversion .feature-item i { color: #0066cc; }
.vivienda .feature-item i { color: #00a67e; }
.educacion .feature-item i { color: #e67e00; }
.feature-item span { color: #444; }

/* Ventajas */
.ventajas-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.ventajas-card h2 {
    color: var(--color-primary-dark);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ventajas-card h2 i { color: var(--color-primary); margin-right: 10px; }

.ventaja-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.ventaja-item:hover { background-color: var(--bg-body); }

/* FIX CÍRCULOS PERFECTOS */
.ventaja-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    
    background-color: var(--bg-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.ventaja-item:hover .ventaja-icon { background-color: var(--color-primary); color: white; }
.ventaja-content { flex: 1; }
.ventaja-content h4 { color: var(--color-primary-dark); font-size: 1.2rem; margin-top: 0; margin-bottom: 8px; }
.ventaja-content p { color: var(--text-muted); margin: 0; }

/* Responsive */
@media (max-width: 992px) {
    .lineas-card, .ventajas-card { margin: 0 20px 30px; }
}

@media (max-width: 768px) {
    .credito-page { padding: 40px 0; }
    .lineas-header { flex-direction: column; text-align: center; }
    .lineas-icon { margin-bottom: 15px; margin-right: 0; }
    
    .linea-item { flex-direction: column; align-items: center; text-align: center; }
    .linea-icon { margin-bottom: 20px; margin-right: 0; }
    
    .ventajas-card { padding: 30px 20px; }
    .ventaja-item { flex-direction: column; text-align: center; }
    .ventaja-icon { margin-bottom: 15px; margin-right: 0; }
    
    .detalle-body p { min-height: auto; }
}

@media (max-width: 576px) {
    .credito-page { padding: 30px 0; }
    .lineas-body, .ventajas-card { padding: 20px; }
}