/* =============================================
   BANNER 1 - VENTAJAS (CSS ULTRA SIMPLE)
============================================= */

/* Sección principal - Solo fondo amarillo */
.ventajas-section {
    padding: 40px 0;
    background-color: #FFD700;
}

/* Título principal */
.ventajas-titulo-principal {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Línea divisoria simple */
.ventajas-divisor {
    width: 50px;
    height: 2px;
    background: #007bff;
    margin: 15px 0;
}

/* Descripción */
.ventajas-descripcion {
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Tarjetas de ventajas - Muy simples */
.ventaja-card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
}

/* Iconos simples */
.ventaja-icono {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Títulos de ventajas */
.ventaja-titulo {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Texto de ventajas */
.ventaja-texto {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive básico */
@media (max-width: 768px) {
    .ventajas-section {
        padding: 30px 15px;
    }
    
    .ventajas-titulo-principal {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .ventajas-divisor {
        margin: 15px auto;
    }
    
    .ventajas-descripcion {
        text-align: center;
    }
}