body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
}

p{
    font-family: 'Inter', sans-serif;
    font-weight: 300; /* Más fino */
}
.boton{
    background-color: rgba(34, 87, 124, 1);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 20px;
}

.contenedor_h1{
    max-width: 600px
}
.hero_h1{
    font-size: 66px;
    line-height: 74px;
    font-weight: 600;
}
.hero_p{
    font-weight: 300;
    font-size: 20px;
}

.hero_section {
    position: relative;
    height: 700px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
                url('../img/Home.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero_section .container {
    z-index: 1;
    position: relative;
}




/* Estilos generales de la sección CUADROS */
.features-section {
    position: relative;
    background-color: #f8f9fa; /* Color claro para el fondo */
    margin-top: -73px; /* Solapamiento sobre el Hero */
    padding-top: 80px; /* Ajuste del espacio superior */
    margin-right: 250px;
    margin-left: 250px;
    z-index: 2;
    padding-bottom: 80px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animación */
}

.features-section .container {
    z-index: 2; /* Asegura que el contenido esté encima */
    position: relative;
}

/* Estilo para los elementos (sin recuadro) */
.feature {
    background: none; /* Eliminamos cualquier fondo */
    
}


/* Estilo para los íconos */
.feature i {
    font-size: 3rem; /* Tamaño grande para los íconos */
    margin-bottom: 13px; /* Espaciado debajo del ícono */
    color: rgba(34, 87, 124, 1);
}

/* Ajustes para los títulos */
.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: rgba(24, 24, 27, 1);
}

/* Ajustes para los párrafos */
.feature p {
    font-size: 1rem;
    color: rgba(82, 82, 91, 1); /* Texto gris claro */
    font-weight: 100;
}
/* Estilos video */
.video-hero{
  aspect-ratio: 16/9;           /* mantiene proporción pro */
  background: #0b0f19;
  position: relative;
  isolation: isolate;
}
.video-hero .video-poster{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Overlay sutil con degradado */
.video-hero .video-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.20) 40%, rgba(0,0,0,.45));
  pointer-events: none;
}

/* Botón play (usa tu azul) */
.video-hero .video-playbtn{
  --blue: rgba(34, 87, 124, 1); /* tu color */
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(64px, 9vw, 92px);
  height: clamp(64px, 9vw, 92px);
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(34,87,124,.35);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.video-hero .video-playbtn:hover{
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(34,87,124,.45);
  background: rgba(34,87,124, .95);
}
.video-hero .video-playbtn:focus-visible{
  outline: 3px solid rgba(255,255,255,.8);
  outline-offset: 3px;
}

/* Anillo pulsante sutil */
.video-hero .video-playbtn::after{
  content:"";
  position:absolute; inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(34,87,124,.45);
  animation: ringPulse 1.8s ease-out infinite;
}
@keyframes ringPulse{
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* Caption/leyenda */
.video-hero .video-caption{
  position: absolute; left: 16px; bottom: 16px;
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 2.2vw, 16px);
  background: rgba(0,0,0,.45);
  padding: 8px 12px;
  border-radius: 10px;
  max-width: min(90%, 720px);
}

/* Estado cuando el video está activo: escondemos poster/overlay/play y mostramos video */
.video-hero.is-playing .video-poster,
.video-hero.is-playing .video-overlay,
.video-hero.is-playing .video-playbtn{
  display: none;
}

/* El <video> ocupa todo, con mismo estilo redondeado */
.video-hero video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  background: #000;
  border-radius: inherit;
}

/* Seccion procesos */
.productos_section{
    background-color: white;
}

.product {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.product h3{
    font-size: 32px;
    font-weight: 600;
    padding-top: 4px;
    padding-bottom: 3px;
}

.product p{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}


.icon-container {
    width: 64px; /* Tamaño del círculo */
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Círculo perfecto */
    margin-bottom: 16px;
    background-color: rgba(34, 87, 124, 1);
}
.icon-container i{
    color: white;
}

/* seccion certificados home */
.certificados_home{
    background-color:rgba(248, 250, 252, 1) ;
}
.logo_iso{
    background: none;
    height: 300px;
}
/* Seccion ayudarte  */
.section_ayudarte{
    background-color: rgba(248, 250, 252, 1);
    margin-top: 80px;
    margin-bottom: 80px;
}

.section_ayudarte{
    color: rgba(9, 9, 20, 1);
}

.section_ayudarte a{
    color: white;
}
.contacto_fin{
    margin-top: 30px;
}

/* Seccion Footer */
footer {
    background-color: rgba(34, 87, 124, 1); /* Gradiente azul */
    color: #fff; /* Texto blanco */
}

footer ul {
    list-style: none; /* Elimina los puntos de las listas */
    padding: 0;
}

footer a {
    color: inherit; /* Usa el mismo color del texto */
    text-decoration: none; /* Elimina el subrayado */
    transition: color 0.3s ease; /* Animación suave */
}

footer a:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse */
}

footer i {
    font-size: 1.5rem; /* Tamaño de los íconos sociales */
}

.contenedor_imgfoot{
    color: white;
}


/* ----------------- ESTILOS PAGINA SOBRE NOSOTROS ------------- */

.boton_nav{
    background-color: rgba(34, 87, 124, 1);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 20px;
    color: white;
}
.header_pags {
    background: #f9fafb;
    
}
.container_nav{
    height: 120px;
}
.header_pags nav ul {
    display: flex;
    list-style: none; /* Elimina los puntos de la lista */
    margin: 0;
    padding: 0;
}

.header_pags nav a {
    text-decoration: none; /* Elimina el subrayado */
    transition: color 0.3s ease;
}

.header_pags nav a:hover {
    color: #0365aa; /* Cambia a azul al pasar el mouse */
}


.about-section {
    background: #f9fafb; /* Fondo suave */
    margin-top: 60px;
    padding-bottom: 0;
    padding-top: 80px;
}

.video-container {
    position: relative;
}

.play-button {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para el botón */
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1); /* Efecto de agrandamiento al pasar el mouse */
}

.card-single {
    margin-top: 20px; /* Espaciado superior */
    background-color: #f9fafb;

}


.card-single .divide-x {
    border-color: #e5e5e5; /* Color de las líneas divisorias */
}

.card-single h3 {
    font-family: 'Poppins', sans-serif; 
    font-weight: 500; /* Peso medio */
    color: #282828;
}

.card-single p {
    font-weight: 300; /* Texto ligero */
    color: #555;
    line-height: 1.6; /* Mejor legibilidad */
}


.container_sobrenos h1{
    font-size: 60px;
    font-weight: 600;
}

.container_sobrenos p{
    font-size: 20px;
    font-weight: 100;
    color: #282828;
    max-width: 600px; /* Limita el ancho del texto */
    margin: 0 auto; /* Centra el texto */
    line-height: 1.6;
    margin-top: 30px;
    margin-bottom: 30px;
}

.container_sobrenos .card-single p{
    margin-top: -10px;
}

.iconos-misiones {
    color: rgba(34, 87, 124, 1);
}

/* Seccion calidad */

/* Estilos de la sección */
.container {
    max-width: 1200px;
    /* margin-bottom: 60px; */
}


img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}
.logo_iso_empresa{
    background: none;
    height: 300px;
}

/* PAGINA TECNOLOGIA */

.technology-section {
    background-color: #f9fafb; /* Fondo suave */
    margin-top: 60px;
}

.technology-section img {
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.technology-section h2 {
    font-family: 'Poppins', sans-serif;
    color: rgba(34, 87, 124, 1);
}


.container_proc h1{
    font-size: 60px;
}

/* Estilos Pagina Contacto */

.contact-section {
    background-color: #f9fafb; /* Fondo suave */
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.contact-info a {
    text-decoration: none;
    color: #0365aa;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #024b8d;
}

.contact-form .form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
    font-size: 16px;
}

.contact-form .form-input:focus {
    border-color: #0365aa;
}

.map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ------- ESTILOS PAGINA CALIDAD ------- */


#modalImg {
  height: 800px;
  width: auto;
  object-fit: contain;
  border-radius: 0.5rem; /* similar a rounded-lg */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* similar a shadow-2xl */
}

.container-calidad h1{
    font-size: 60px;
    font-weight: 600;
}


/* ------------------------ ESTILOS PAGINA CONTACTO ----------------------------- */
.boton_consulta{
    background-color:rgba(34, 87, 124, 1);
}





