* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Josefin Sans', sans-serif;
    color: #333;
    background: #fff;
  }

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 9%;
    right: 5%;
  }
  
  .logo {
    max-height: 80px;
  }
  
  .menu {
    display: flex;
    gap: 30px;
    margin-right: 9%;
  }
  
  .menu a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  
  .menu a:hover {
    color: #205747;
  }

  .seccion-herramienta-inpronet {
    background-color: white;
    font-family: 'Josefin Sans', sans-serif;
    margin-top: 12%;
  }
  
  .titulo-herramienta {
    text-align: center;
    color: #1f775a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .contenido-herramienta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    background-color: #f1f1f1;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden; /* evita que los pseudo-elementos sobresalgan */
  }
  
  /* Borde top degradado: blanco → fondo */
  .contenido-herramienta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 100%;
    background: linear-gradient(to bottom, white, #f1f1f1);
  }
  
  /* Borde bottom degradado: fondo → blanco */
  .contenido-herramienta::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 100%;
    background: linear-gradient(to top, white, #f1f1f1);
  }
  
  
  .texto-herramienta {
    flex: 1.1;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    width: 60%;
    margin-left: 5%;
  }
  
  .texto-herramienta ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .texto-herramienta ul li {
    margin-bottom: 10px;
    list-style: disc;
  }
  
  .contenedor-imagenes {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 40%;
    margin-right: 2%;
  }
  
  .imagen-logo img {
    width: auto;
    height: 12vh;
    align-items: center;
  }
  
  .imagen-herramienta img {
    width: 100%;
    height: auto;
  }

  .seccion-raees {
    background-color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    margin-top: 5%;
    margin-left: 4%;
    margin-right: 4%
  }
  
  .contenido-raees {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .logo-raees img {
    width: 45%;
    height: auto;
  }
  
  .texto-raees p {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
    width: 100%;
    line-height: 1.8;
  }
  
  .seccion-gases {
    background-image: url('../imagenes/fondo-intranet.png'); /* Asegúrate de que la ruta sea correcta */
    padding: 80px 5%;
    margin-top: 7%;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
  }
  
  
  .contenido-gases {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
  }
  
  .video-gases {
    flex: 1;
    min-width: 320px;
  }
  
  .video-gases iframe {
    width: 100%;
    height: 320px;
    border-radius: 8px;
  }
  
  .texto-gases {
    flex: 1;
    min-width: 320px;
    text-align: center;
  }
  
  .texto-gases h2 {
    font-size: 2.8rem;
    color: #28d4a8;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .texto-gases p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: right;
  }
  
  .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: 220px;
    margin-bottom: 10px;
  }
  
  .redes-sociales {
    display: flex;
    gap: 12px;
  
  }
  
  .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;
  }