/* HERO CON IMAGEN REAL Y ZÓCALOS BORDÓ DRONAGRO */
.cropx-hero-banner {
  background: url('fotosnuevas/hero_fondo.jpg') no-repeat center center/cover;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
}

.hero-overlay-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  /* Espacio justo entre placas */
}

/* PLACAS/ZÓCALOS BORDÓ DRONAGRO */
.hero-label-box {
  background-color: #8a0e0e;
  /* Bordó Oscuro de alto contraste */
  padding: 8px 18px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  border-left: 4px solid #dc2626;
  /* Detalle de línea en Rojo DronAgro */
}

.title-box h1 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.subtitle-box h2 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.description-box p {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* BOTÓN PÍLDORA TRANSPARENTE CON BORDE BLANCO Y HOVER ROJO */
.hero-cta-box {
  margin-top: 12px;
}

.btn-cropx-pill {
  display: inline-block;
  background-color: rgba(28, 13, 21, 0.85);
  /* Fondo Bordó Oscuro */
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-cropx-pill:hover {
  background-color: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cropx-hero-banner {
    padding: 40px 20px;
    min-height: 60vh;
  }

  .title-box h1 {
    font-size: 1.4rem;
  }

  .subtitle-box h2 {
    font-size: 0.95rem;
  }

  .description-box p {
    font-size: 0.75rem;
  }
}