/* =============================
   HOME — Mobile First
   ============================= */

/* HERO (Bienvenido a AgriVall) — fondo cream */
.hero {
  background-color: var(--bg-main); /* beige/cream */
  color: var(--color-text);
  text-align: center;
  padding: 3rem 1rem;
}

.hero h1 {
  font-family: 'Lora', serif !important;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

/* IMAGEN sección reserva */
.reserva-section img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 10px;
}

/* GRIDS: 2 columnas en móvil por defecto */
.productos-grid,
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* En móvil: ocultar tarjetas extra */
#productos .productos-grid .producto-card:nth-child(n+3) {
  display: none;
}

#blog .blog-grid .blog-card:nth-child(n+3) {
  display: none;
}

/* ===========================
   TABLET / ESCRIPTORI
   =========================== */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  /* Mostrar todas las tarjetas en tablet+ */
  #productos .productos-grid .producto-card:nth-child(n+3) {
    display: flex;
  }

  #blog .blog-grid .blog-card:nth-child(n+3) {
    display: flex;
  }

  /* 2 columnas en tablet */
  #productos .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog se muestra en 3 a partir de tablet/escritorio */
  #blog .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   ESCRIPTORI 
   =========================== */
@media (min-width: 992px) {
  #productos .productos-grid {
    grid-template-columns: repeat(4, 1fr);
  }


}