/*
Theme Name: Astra child
Author: Nando ruiz
Description: nuevo
Version: 1.0
Template: astra

.hero-verdeando {
  padding: 60px 20px;
  background-color: #ffffff;
}

.hero-verdeando__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

.hero-verdeando__col--text {
  max-width: 640px;
}

.hero-verdeando__category {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #009150;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-verdeando__title {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.2;
  color: #111111;
  margin: 0 0 12px;
}

.hero-verdeando__subtitle {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 24px;
}

.hero-verdeando__button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #009150;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.hero-verdeando__button:hover {
  background-color: #007a43;
  transform: translateY(-1px);
}

.hero-verdeando__col--image {
  text-align: right;
}

.hero-verdeando__image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-verdeando__inner {
    grid-template-columns: 1fr;
  }

  .hero-verdeando__col--image {
    order: -1;
  }

  .hero-verdeando {
    padding: 40px 16px;
  }

  .hero-verdeando__title {
    font-size: 32px;
  }
}