/* ===== HERO ===== */

.hero-centro {
  position: relative;
  height: 55vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-content p {
  max-width: 700px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}

/* ===== INTRO ===== */

.intro-centro h2,
section h2 {
  font-weight: 500;
  margin-bottom: 1rem;
  color: #222;
}

.intro-centro p,
section p {
  color: #555;
  line-height: 1.9;
}

/* ===== GALERÍA ===== */

.cultivo-img {
  border-radius: 14px;
  object-fit: cover;
  height: 260px;
  width: 100%;
  transition: transform 0.35s ease;
}

.cultivo-img:hover {
  transform: scale(1.02);
}

/* ===== FLORES ===== */

.flor-card p {
  margin-top: 1rem;
  color: #444;
}

.flor-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ===== ENERGÍA ===== */

.energia-img {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ===== CTA ===== */

.cta-section {
  margin-top: 5rem;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ===== BOTONES ===== */

.botonx {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 40px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

.botonx:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

.volver-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #ccc;
  border-radius: 40px;
  text-decoration: none;
  color: #444;
  transition: 0.3s ease;
}

.volver-btn:hover {
  background: #eee;
  color: #111;
}