* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
}
/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 70vh;
  min-height: 380px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-image: url('../img/agropro.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #222;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3rem;
}

/* ===== CABECERA ===== */
.agropro-header {
  text-align: center;
  background: #fff;
  padding: 40px 20px;
  border-radius: 15px 15px 0 0;
  margin-top: -40px;
}

.agropro-header h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 10px;
}

.agropro-header p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* ===== SECCIONES DE AGROPRODUCTOS ===== */
/* ===== SECCIÓN ABONOS (CABECERA ESTILIZADA) ===== */
.agropro-box {
  text-align: center;
  margin: 40px 0;
}

.agropro-box h3 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 20px;
}
/* ===== ARTÍCULOS ===== */
/* ===== ARTÍCULOS ===== */
.agropro-articulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Asegura que las imágenes de los artículos sean iguales en tamaño a las de la cabecera */
.agropro-articulo img {
  display: block;
  margin: 0 auto; /* Esto centra la imagen */
  width: 100%; /* Ajuste para que se adapten al contenedor */
  max-width: 170px; /* Establece un tamaño máximo de la imagen igual a la cabecera */
  height: 165px; /* Ajuste de altura para igualar el tamaño de las imágenes de la cabecera */
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* ===== IMÁGENES UNIFICADAS (Centradas) ===== */
.agropro-imgs {
  display: flex;
  justify-content: center; /* Esto centra las imágenes */
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Permite que las imágenes se acomoden si no caben en una sola línea */
}

.agropro-imgs img {
  width: 100%;
  max-width: 170px; /* Tamaño de imagen ajustado a igual tamaño que la cabecera */
  height: 165px; /* Igual que en la cabecera */
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 5px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* ===== RESPONSIVE IMÁGENES ===== */
@media (max-width: 600px) {
  .agropro-imgs img {
    max-width: 130px;
    height: 130px; /* Ajuste para imágenes más pequeñas */
  }

  .agropro-articulo img {
    max-width: 130px;
    height: 130px; /* Ajuste para imágenes más pequeñas */
  }
}

@media (max-width: 400px) {
  .agropro-imgs img {
    max-width: 100px;
    height: 100px; /* Ajuste para imágenes más pequeñas */
  }

  .agropro-articulo img {
    max-width: 100px;
    height: 100px; /* Ajuste para imágenes más pequeñas */
  }
}

/* ===== ARTÍCULOS ===== */
.agropro-articulo h4 {
  color: #000000;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.agropro-desc {
  max-width: 800px;
  font-size: 1rem;
  text-align: justify;
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== IMÁGENES UNIFICADAS ===== */

.agropro-imgs img:hover,
.imgprod:hover,
.imagenes-header img:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVE IMÁGENES ===== */
@media (max-width: 600px) {
  .agropro-imgs img,
  .imgprod,
  .imagenes-header img {
    max-width: 160px;
    height: 130px;
  }
}

@media (max-width: 400px) {
  .agropro-imgs img,
  .imgprod,
  .imagenes-header img {
    max-width: 130px;
    height: 100px;
  }
}

/* ===== Sección Fumigadora ===== */

.agropro-mp4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 15px;
}

.agropro-mp4 img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  object-fit: cover;
}
/* ===== SECCIÓN FUMIGADORAS ===== */
.agropro-box {
  text-align: center;
  margin: 40px 0;
}

.agropro-box h2 {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 20px;
}


/* ===== ARTÍCULOS ===== */

.agropro-articulo {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.agropro-mp4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 20px;
}

.agropro-img-container {
  text-align: center;
  width: 170px; /* Ancho de cada contenedor de imagen */
}

.agropro-img-container img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.agropro-img-container h3 {
  font-size: 1.1rem;
  color: #000080;
  margin-top: 10px;
  font-weight: bold;
}

/* ===== DESCRIPCIÓN ===== */
.agropro-desc {
  max-width: 800px;
  font-size: 1rem;
  text-align: justify;
  margin-top: 10px;
  line-height: 1.6;
}
/* ===== RESPONSIVE IMÁGENES ===== */
@media (max-width: 600px) {
  .agropro-imgs img {
    max-width: 130px;
    height: 130px; /* Ajuste para imágenes más pequeñas */
  }

  .agropro-articulo img {
    max-width: 130px;
    height: 130px; /* Ajuste para imágenes más pequeñas */
  }
}

@media (max-width: 400px) {
  .agropro-imgs img {
    max-width: 100px;
    height: 100px; /* Ajuste para imágenes más pequeñas */
  }

  .agropro-articulo img {
    max-width: 100px;
    height: 100px; /* Ajuste para imágenes más pequeñas */
  }
}

/* ===== ARTÍCULOS ===== */
.agropro-articulo h4 {
  color: #000000;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.agropro-desc {
  max-width: 800px;
  font-size: 1rem;
  text-align: justify; /* Justificar los párrafos */
  margin-top: 10px;
  line-height: 1.6;
}

/* Efecto Hover en las imágenes */
.agropro-img-container img:hover {
  transform: scale(1.05); /* Aumenta el tamaño de la imagen al pasar el ratón */
}

/* Contenedor del video */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Aspect ratio de 16:9 */
  background: #000;
  margin-bottom: 20px; /* Espacio entre los videos */
}

/* El video se ajustará a su contenedor sin recortarse */
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ajuste sin recortar el video */
}
/* Estilo general para la descripción */
.descripcion {
    text-align: left;   /* Alinear todo el contenido a la izquierda */
    font-family: Arial, sans-serif;  /* Fuente legible */
    font-size: 16px;      /* Tamaño de fuente adecuado */
    line-height: 1.6;   /* Espaciado entre líneas */
    margin: 20px;        /* Espacio alrededor de la caja de texto */
}

/* Estilo específico para los párrafos dentro de la descripción */
.descripcion p {
    margin-bottom: 10px;  /* Espacio entre cada párrafo */
}

/* Responsividad: Ajuste para pantallas más pequeñas */
@media (max-width: 768px) {
  .video-container {
    padding-bottom: 60%; /* Ajustar el aspecto en pantallas pequeñas */
  }
}

@media (max-width: 600px) {
  .video-container {
    padding-bottom: 70%; /* Aumenta la altura en pantallas muy pequeñas */
  }

  .agropro-articulo h2 {
    font-size: 1.2rem; /* Ajuste de tamaño de título */
  }

  .agropro-articulo p {
    font-size: 1rem; /* Ajuste de tamaño de párrafo */
  }
}

/* ===== Estilos Responsivos ===== */
@media (max-width: 768px) {
  .agropro-articulo {
    width: 100%;
  }

  .productos-container {
    flex-direction: column;
  }

  .agropro-imgs {
    flex-direction: column;
  }

  .agropro-mp4 {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  .agropro-desc {
    font-size: 0.9rem;
  }

  .agropro-img {
    width: 100%;
    height: auto;
  }
}
