/* ===================================================================
 *  infraestructura.css
 *  Estilos específicos y únicos para la página de Infraestructura.
 * =================================================================== */

/* --- 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 de Contadores Estilo "Alert" (NUEVO) --- */
.counters-alert-section {
    padding-top: 60px;
    padding-bottom: 20px;
}
.counters-alert-box {
    background-color: #011954; /* Color azul solicitado */
    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;
    text-align: center;
}
.counters-alert-box .stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    text-align: center;
}

/* --- Sección Tipos de Proyectos --- */
.icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.icon-title i {
    font-size: 2.5rem;
    color: #011954;
    margin-right: 20px;
}
.icon-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* --- Sección Parallax --- */
.parallax-section {
    padding: 120px 0;
    background-image: linear-gradient(rgba(1, 25, 84, 0.7), rgba(1, 25, 84, 0.7)), url('../imagenes/general.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
}
.parallax-section .section-title,
.parallax-section .subtitle {
    color: #ffffff;
}