
img {
    display: block;  /* Esto hace que cada imagen ocupe una línea nueva */
    margin-bottom: 10px;  /* Espacio entre las imágenes */
    width: 100%;
}


/* 🔹 Contenedor Principal */
.header-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ajusta la altura del contenedor */
    background: url("https://elearning.explor-k.cl/CDN/explork/PNG_A_WEBP/newnew_carretera-vacia.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* 🔹 Contenido dentro del Header */
.header-content {
    color: white;
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

/* 🔹 Título */
.header-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

/* 🔹 Subtítulo con efecto de resplandor */
.header-content p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 1px rgb(0, 0, 0);
    margin-bottom: 70px;
    margin-top: 8%;
}

/* 🔹 Contenedor de los 3 recuadros */
.header-boxes {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    margin-top: 30px; /* Baja los recuadros */
}

/* 🔹 Estilo de cada recuadro */
.box {
    background: rgba(19, 30, 48, 0.842); /* Semi-azul transparente */
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 8px;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.459);
}



/* 🔹 Ajustes Responsivos */
@media screen and (max-width: 768px) {
    .header-container {
        height: 100vh;
        padding: 10px;
        margin-top: 5%;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .header-boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }


    .box {
        width: 80%;
        max-width: 250px;
        font-size: 1rem;
        padding: 10px;
    }
}





/* 🔹 Contenedor Principal */
.header-monitoreo {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("https://elearning.explor-k.cl/CDN/explork/PNG_A_WEBP/newnew_ccti.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrar todo el contenido */
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* 🔹 Centrar el Logo */
.image-1 {
    width: 20%;
    height: auto;
    margin: 0 auto 20px; /* Centrado horizontal con margen inferior */
    display: block;
}

/* 🔹 Contenedor de los 4 recuadros */
.header-boxes-monitoreo {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* En móvil se apilan */
    width: 100%;
    padding: 10px 5%;
}

/* 🔹 Estilo de cada recuadro */
.box-monitoreo {
    background: rgba(0, 31, 63, 0.95); /* Azul sólido */
    color: white;
    padding: 20px;
    font-size: 1rem;
    text-align: center;
    border-radius: 8px;
    width: 23%; /* Ajustar ancho para cubrir más */
    height: 190px;
    min-height: 150px; /* Asegurar que cubra el texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* 🔹 Íconos */
.box-monitoreo i {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
}

/* 🔹 Títulos dentro de los recuadros */
.box-monitoreo h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.description-monitoreo {
    font-size: 1rem;
    color: white;
    /* Efecto de resplandor aumentado */
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.281),
      0 0 20px rgba(255, 255, 255, 0.9),
      0 0 30px rgba(255, 255, 255, 0.486);
    margin-top: 15px;
    max-width: 900px;
    margin-left: 13%;
    
    /* Fondo y recuadro negro para mejorar la legibilidad */
    background: rgba(19, 30, 48, 0.842);
    padding: 15px; /* Espacio interno */
    text-shadow: 2px 2px 1px rgb(0, 0, 0);
    border-radius: 4px; /* Opcional: bordes redondeados */
}


/* 🔹 Responsive - En móvil se apilan */
@media screen and (max-width: 768px) {
    .header-monitoreo{
        height: 130vh;
    }

    .header-boxes-monitoreo {
        flex-direction: column;
        gap: 15px;
    }

    .box-monitoreo {
        width: 90%;
        max-width: 300px;
        margin-left: 6%;
    }

    .image-1 {
        width: 40%; /* Asegura que el logo se vea en móvil */
        margin-top: 10px;
    }

    .description-monitoreo {
        font-size: 1rem;
        color: white;
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
        margin-top: 10px;
        margin-left: 4%;
    }
}








/* 🔹 Contenedor Principal */
.header-capacitacion {
    position: relative;
    width: 100%;
    height: 130vh;
    background: url("https://elearning.explor-k.cl/CDN/explork/PNG_A_WEBP/banner_poligonos_2.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column; /* Organiza en columna */
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* 🔹 Contenedor General */
.content-capacitacion {
    display: flex;
    justify-content: space-between; /* Espacio entre elementos */
    align-items: center;
    width: 90%;
    max-width: 1200px;
    flex-grow: 1; /* Permite que ocupe espacio disponible */
}

/* 🔹 Título y Subtítulo (Centrados Arriba) */
.text-container {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    background: rgba(19, 30, 48, 0.842);
    text-shadow: 2px 2px 1px rgb(0, 0, 0);
    padding: 20px; /* Espaciado interno */
    border-radius: 8px; /* Opcional: bordes redondeados */
}

.text-container h1 {
    font-size: 3rem; /* Tamaño aumentado */
    font-weight: bold;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    margin-bottom: 10px;
    color: white;
}

.text-container .subtitulo {
    font-size: 1.5rem; /* Tamaño aumentado */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    color: white;
}




/* 🔹 Recuadro Azul con Información (100% a la Derecha) */
.info-box {
    background: rgba(19, 30, 48, 0.9);
    color: white;
    padding: 20px;
    font-size: 1.1rem;
    text-align: left;
    border-radius: 8px;
    max-width: 450px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-left: auto; /* Lo empuja a la derecha */
}

/* 🔹 Lista dentro del recuadro */
.info-box ul {
    list-style-type: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 10px;
}

/* 🔹 Ajustes Responsivos */
@media screen and (max-width: 768px) {
    .header-capacitacion {
        background: url("https://elearning.explor-k.cl/CDN/explork/PNG_A_WEBP/poligonos_celular_new.webp") no-repeat center center;
        background-size: cover;
        height: auto;
        padding: 30px 15px;
        text-align: center;
        justify-content: center;
    }

    .content-capacitacion {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-container {
        width: 100%;
        margin-top: 130%;
    }

    .text-container h1 {
        font-size: 2rem;
    }

    .text-container .subtitulo {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .info-box {
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }
}












/* 🔹 Contenedor Principal */
.header-inspeccion {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("https://elearning.explor-k.cl/CDN/explork/PNG_A_WEBP/toma-velocidad-camioneta.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
/* 🔹 Contenido */
.content-inspeccion {
    color: white;
    max-width: 1000px;
    text-align: center;
    z-index: 2;
    transform: translateY(-10px); /* Sube el contenido un poco */
    
}

/* 🔹 Título */
.content-inspeccion h1 {
    
    font-size: 2.5rem;
    font-weight: bold;
    /* Efecto de resplandor brillante */
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.425),
        0 0 10px rgba(255, 255, 255, 0.267),
        0 0 20px rgba(255, 255, 255, 0.24);
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    transform: translateY(-10px); /* Sube el título un poco */
}

/* 🔹 Subtítulo */
.subtitulo {
    font-size: 1.5rem;
    /* Efecto de resplandor brillante */
    text-shadow: 
        0 0 4px rgba(255, 255, 255, 0.096),
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(255, 255, 255, 0.233);
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    transform: translateY(-10px); /* Sube el subtítulo un poco */
}

/* 🔹 Contenedor de imágenes con texto */
.grid-inspeccion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* 🔹 Imágenes con descripción */
.imagen-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px;
}

.imagen-texto img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

.texto-imagen {
    background: rgba(19, 30, 48, 0.85);
    color: white;
    padding: 12px;
    font-size: 1rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 10px;
    max-width: 350px;
}

/* 🔹 Ajustes Responsivos */
@media screen and (max-width: 768px) {
    .header-inspeccion {
        height: auto;
        padding: 30px 15px;
    }

    .content-inspeccion h1 {
        font-size: 2rem;
    }

    .subtitulo {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .grid-inspeccion {
        flex-direction: column;
        align-items: center;
    }

    .imagen-texto img {
        max-width: 300px;
    }

    .texto-imagen {
        max-width: 300px;
    }
}










/* 🔹 Contenedor Principal */
.header-seguridad {
    position: relative;
    width: 100%;
    height: auto;
    background: url("https://elearning.explor-k.cl/CDN/explork/PNG_A_WEBP/newnew_carretera-autos.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

/* 🔹 Contenido */
.content-seguridad {
    max-width: 1100px;
    color: white;
    text-align: center;
    z-index: 2;
}

/* 🔹 Contenedor de imágenes y banner azul */
.grid-seguridad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* 🔹 Contenedor de imágenes (LOGOS ALINEADOS LADO A LADO) */
.imagenes-logos {
    display: flex;
    flex-direction: row;  /* Asegura que estén en fila */
    align-items: center;
    justify-content: center;
    gap: 20px; /* Espacio entre logos */
}

/* 🔹 Ajuste de tamaño para los logos */
.imagenes-logos img {
    width: 180px;
    height: auto;
    border-radius: 8px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}


/* 🔹 Banner Azul con Información */
.banner-seguridad {
    background: rgba(19, 30, 48, 0.9);
    color: white;
    padding: 20px;
    font-size: 1.1rem;
    text-align: left;
    border-radius: 8px;
    max-width: 500px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

.banner-seguridad h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-seguridad .resaltado {
    color: #ffcc00;
}

.banner-seguridad h3 {
    font-size: 1.3rem;
    margin-top: 15px;
}

.banner-seguridad ul {
    list-style-type: none;
    padding: 0;
}

.banner-seguridad ul li {
    margin-bottom: 10px;
}

/* 🔹 Texto inferior */
.texto-inferior {
    margin-top: 40px;
    text-shadow: 2px 2px 1px rgb(0, 0, 0);
    font-size: 4rem;
    margin-bottom: -5%;
}

.texto-inferior p {
    font-size: 2rem;
    text-shadow: 2px 2px 1px rgb(0, 0, 0);
    margin-bottom: 70px;
    margin-top: 2%;
}



.texto-inferior p {
    font-size: 1.1rem;
}

/* 🔹 Ajustes Responsivos */
@media screen and (max-width: 768px) {
    .grid-seguridad {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .imagenes-logos img {
        width: 150px;
    }

    .banner-seguridad {
        max-width: 100%;
        text-align: center;
    }

    .banner-seguridad ul {
        text-align: left;
    }
}
