/* Estilos específicos para el bloque Hero */
.wp-block-agropex-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #add35b 0%, #82a33c 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.wp-block-agropex-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.wp-block-agropex-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.wp-block-agropex-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.wp-block-agropex-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.5;
}

.wp-block-agropex-hero .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #add35b;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.wp-block-agropex-hero .hero-button:hover {
  background: #226221;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .wp-block-agropex-hero {
    min-height: 400px;
    padding: 3rem 0;
  }

  .wp-block-agropex-hero h1 {
    font-size: 2rem;
  }

  .wp-block-agropex-hero p {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .wp-block-agropex-hero h1 {
    font-size: 3.5rem;
  }

  .wp-block-agropex-hero p {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .wp-block-agropex-hero h1 {
    font-size: 4rem;
  }
}

