body{
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
}

.oficinas-tecnicas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 50px 20px;
    background-color: #e9f8f3;
  }
  
  .oficina-bloque {
    flex: 1 1 40%;
    max-width: 500px;
    text-align: center;
  }
  
  .oficina-bloque img {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .oficina-bloque h3 {
    color: #148c6f;
    font-weight: 700;
  }
  
  .footer-inproeco {
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 4%;
    background-color: #fff;
    font-family: 'Josefin Sans', sans-serif;
  }
  
  .footer-contenido {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1;
    width: 20%;
    margin-right: 5%;
  }
  .footer-col.izquierda a{
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 2%;
  }
  .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;
  }
  
  .datos-contacto{
    text-align: right;
    width: 20%;
  }
  .datos-contacto h4{
    color: #111;
  }
  .datos-contacto p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 6px;
  }
  
  .datos-contacto a {
    color: #205747;
    text-decoration: none;
  }
  
  .logo-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto; /* <--- Esto empuja el bloque al extremo derecho */
    text-align: right;
    margin-right: 2%;
  }
  
  .logo-social img {
    max-width: 200px;
    margin-bottom: 10px;
  }
  
  .redes-sociales {
    display: flex;
    gap: 12px;
    margin-right: 25%;
  }
  
  .redes-sociales img {
    width: 35px;
    height: 35px;
  }
  
  .sellos {
    margin-top: 0px;
  }
  
  .sellos img {
    height: 60px;
  }

  .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-top: 70px;
    padding-bottom: 70px;
    padding-left: 50px;
    padding-right: 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;
    margin-left: 0px;
  }
  
  .modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2rem;
    cursor: pointer;
    color: #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;
  }
  
  .logo-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: white;
  }
  
  a {
    text-decoration: none;
    color: #333;
  }

  .logo{
    height: 140px;
    margin-left: 10%;
  }
  
  .menu-inps {
    display: flex;
    gap: 70px;
    margin-right: 20%;
    font-family: 'Josefin Sans', sans-serif;
  }
  
  .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;
  }