* {
    margin: 0;
    padding: 0;
}
body {
  font-family: "Work Sans", sans-serif;
}
.work-wans {
font-family: "Work Sans", sans-serif;
}
header {
background: #051f69;
display: flex;
align-items: center;
position: sticky;
top: 0;
z-index: 11;
}
.menu {
width: 100%;
display: flex;
}

.navegador {
display: flex;
align-items: center;
gap: 40px;
position: relative;
left: 38%;
}
.navegador a {
color: #fff;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-weight: 550;
}
header a {
transition: transform 0.1s ease;
}
header a:hover {
transform: scale(1.1);
}
.redes_sociales {
display: flex;
gap: 17px;
justify-content: center;
align-items: center;
position: absolute;
right: 5%;
}
  
.redes {
width: 30px;
}
  
#check,
.abrir-menu,
.cerrar-menu {
    display: none;
}
.check {
    display: none;
}
/* Estilos generales para el footer */
footer {
    background-color: #05164f;
    color: #fff;
    padding: 30px;
    text-align: center;
  }
  .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 500px;
    flex-wrap: wrap;
  }
  /* Lado izquierdo */
  .left-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .left-side img {
    max-width: 70%;
    height: auto;
  }
  
  /* Lado derecho */
  .info {
    flex: 1;
    text-align: left;
  }
  
  .info .icono-informacion,
  .info .correo,
  .info .icon-whatsapp {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .info img {
    width: 25px;
    margin-right: 10px;
  }
  
  .p {
    background-color: #010920;
    font-size: 14px;
    color: #bdbdbd;
    text-align: center;
    padding: 6px;
  }






/* Sección de contenido */

.contenido_eje {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 100%; 
  margin:  50px 0;
  align-items: center;
}

.img_eje {
  width: 800px;
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
to {
    opacity: 1;
    transform: translateY(0);
}
}
#informacion-agro{
width: 700px;
}
.info_eje {
  margin-left:  30px;
  align-content: center;
  width: 600px;
}
#icono{
width: 80px;
}
.icono-pezz{
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_eje h3 {
  text-align: center;
  margin: 20px 0; 
  color: #051f69; 
  position: relative; 
}

.info_eje h3::after {
  content: '';
  display: block;
  height: 2px;
  background: #d9d625; 
  width: 100px; 
  margin: 10px auto; 
}

.info_eje ul {
  margin: 15px 20px;
  padding-left: 20px; 
}

.info_eje li {
  margin: 5px 0;
  position: relative; 
}

.info_eje li::before {
  content: '•'; 
  color: #d9d625; 
  font-size: 20px; 
  position: absolute; 
  left: -20px; 
}





@media (max-width: 1482px) {
    .img_eje { 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
        margin: 0 0 40px 0;
    }
}
@media (max-width: 1300px) {
    .footer-container {
      gap: 200px;
    }
}
@media (max-width: 1230px) {
    .navegador {
      position: relative;
      left: 28%;
    }
}
  
@media (max-width: 1000px) {
    .navegador {
      position: relative;
      left: 18%;
    }
}
  
@media (max-width: 900px) {
    .navegador {
      position: relative;
      left: 8%;
    }
    .left-side img {
      width: 100%;
      height: auto;
    }
    .p {
      font-size: 10px;
    }
    .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 90px;
      width: 100%;
    }
}

@media (max-width: 821px) {
    .img_eje {
        width: 100%;
        border-radius: 0px; 
        box-shadow: none; 
    }
}

@media (max-width: 700px) {
    .menu {
      display: flex;
      justify-content: center;
      background: #051f69;
      width: 100%;
      height: 30vh;
      position: absolute;
      top: -50vh;
      transition: 0.5s;
      z-index: 1000;
    }
    .abrir-menu,
    .cerrar-menu {
      cursor: pointer;
      display: block;
      color: #fff;
      position: absolute;
      right: 5%;
      font-size: 50px;
      transition: 0.4s;
    }
    .cerrar-menu {
      position: absolute;
      top: 20px;
      right: 8%;
    }
    .redes_sociales {
      position: absolute;
      bottom: 5%;
    }
    #check:checked ~ .menu {
      position: absolute;
      top: 0;
    }
  }