/* ===================================================================
 *  fabricacion.css
 *  Estilos específicos para la página de Fabricación.
 * =================================================================== */

/* --- 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 Capacidades de Fabricación --- */
.capability-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    height: 100%;
    border-bottom: 4px solid #011954;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.capability-card h4 {
    font-size: 1.3rem;
    color: #333;
    display: flex;
    align-items: center;
    font-weight: 700;
}
.capability-card h4 i {
    color: #011954;
    margin-right: 15px;
    font-size: 1.5rem;
}

/* --- Sección Proceso de Calidad (Línea de Tiempo) --- */
.timeline-step {
    position: relative;
    padding: 20px;
}
.timeline-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.timeline-step h3 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #011954;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 700;
}

/* Línea de conexión para la línea de tiempo en escritorio */
@media (min-width: 768px) {
    .timeline {
        position: relative;
    }
    .timeline::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #e9ecef;
        z-index: 0;
    }
    .timeline-step {
        z-index: 1;
    }
}