/* ===================================================================
 *  industria.css
 *  Estilos específicos y únicos para la página de Industria.
 * =================================================================== */

/* --- 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;
    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 de Contadores Estilo "Alert" --- */
.counters-alert-section {
    padding-top: 60px;
    padding-bottom: 20px;
}

.counters-alert-box {
    background-color: #011954;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(1, 25, 84, 0.3);
}

.counters-alert-box .stat-item h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.counters-alert-box .stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* --- Sección de Pestañas (Tabs) con Menú Superior --- */
.nav-pills .nav-item {
    margin: 0 5px;
    /* Espacio entre botones */
}

.nav-pills .nav-link {
    text-align: center;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 1rem;
    color: #555;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    /* Bordes de píldora */
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: #011954;
    color: #fff;
    border-color: #011954;
}

.tab-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    margin-top: -20px;
    /* Superposición sutil */
    position: relative;
    z-index: 2;
}

.tab-inner-content {
    text-align: center;
}

.tab-inner-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}


/* --- Sección Nuestro Enfoque --- */
.checklist {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checklist i {
    font-size: 1.2rem;
    color: #011954;
    margin-right: 15px;
    margin-top: 5px;
}

.checklist h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}