* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Josefin Sans', sans-serif;
    color: #333;
    background: #fff;
  }
  
  .hero-inpsolution {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 15vh;
    color: white;
    position: relative;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav-inpsolution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: white;
  }
  
  a {
    margin-left: 10%;
  }

  .logo-inp{
    height: 140px;
  }
  
  .menu-inps {
    display: flex;
    gap: 40px;
    margin-right: 20%;
  }
  
  .menu-inps a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .menu-inps a:hover {
    color: #1f775a;
  }

.seccion-inpronet {
    margin-top: 2%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
    background-image: url('../imagenes/fondo-inpronet.jpg'); /* Ajusta la ruta */
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: multiply;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    text-align: center;
  }
  
  .contenido-inpronet {
    width: 100%;
    margin: 0 auto;
  }
  
  .logo-inpronet {
    width: 55%;
    margin-bottom: 40px;
  }
  
  .contenido-inpronet p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
  }

  .seccion-subproductos {
    margin-top: 4%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 4%;
    background-color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
  }
  
  .subproductos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }
  
  .subproducto {
    width: 30%;
    flex: 0 1 30%;
  }
  
  .subproducto img {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .subproducto p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    width: 100%;
  }  
  
 .footer-inproeco {
  margin: 4% 3%;
  background-color: #fff;
  font-family: 'Josefin Sans', sans-serif;
}

.footer-contenido {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col,
.datos-contacto,
.logo-social {
  width: 18%;
  margin-right: 0;
}

/* Eliminar sangrías especiales */
.footer-col.izquierda a {
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0;
}

.footer-col h4 {
  color: #1f775a;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 100;
  line-height: 2;
}

/* Contacto */
.datos-contacto {
  text-align: right;
}
.datos-contacto h4 {
  color: #111;
}
.datos-contacto p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 6px;
}
.datos-contacto a {
  color: #205747;
  text-decoration: none;
}

/* Redes y logos */
.logo-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin: 0;
}
.logo-social img {
  max-width: 200px;
  margin-bottom: 10px;
}
.redes-sociales {
  display: flex;
  justify-content: flex-end; /* Alinea íconos al final */
  gap: 12px;
  width: 100%;
}
.redes-sociales img {
  width: 35px;
  height: 35px;
}
.sellos {
  margin-top: 0;
}
.sellos img {
  height: 60px;
}

/* Modal styles (sin cambios) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-content {
  background: #228362;
  color: #fff;
  padding: 70px 50px;
  width: 55%;
  font-family: 'Josefin Sans', sans-serif;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.modal-content p {
  margin-bottom: 20px;
}
.modal-titulo {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  text-shadow: 1px 1px 2px #00000050;
}
.modal-secundario {
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
}
.modal-secundario a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contenido {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col,
  .datos-contacto,
  .logo-social {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .redes-sociales {
    justify-content: flex-start;
    margin: 0;
  }

  .logo-social {
    align-items: flex-start;
    text-align: left;
  }
}