    /* ===================================================================
 *  suministro.css
 *  Estilos específicos para la página de Suministro.
 * =================================================================== */

/* --- Estilos Generales de Sección --- */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.subtitle {
    display: block;
    color: #011954; /* Color de tu marca */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* --- Cabecera de Página --- */
#page-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-image: url('../imagenes/cabecera.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
#page-header .page-title {
    position: relative;
    color: white;
    font-weight: 500;
    font-size: 3.5rem;
}

/* --- Sección Categorías de Suministro --- */
.category-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    border: 1px solid #e9ecef;
}
.category-card i {
    font-size: 3rem;
    color: #011954;
    margin-bottom: 20px;
}
.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* --- Sección Ventajas Competitivas --- */
.advantages-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}
.advantages-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.advantages-list i {
    font-size: 1.5rem;
    color: #28a745; /* Verde para el check */
    margin-right: 20px;
    margin-top: 5px;
}
.advantages-list h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}
.advantages-list p {
    margin-bottom: 0;
    color: #6c757d;
}