.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  min-height: calc(100vh - 72px);
}

@media (max-width: 991px) {
  .hero-banner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 24px 60px;
    text-align: center;
  }
}

.hero-banner-content {
  max-width: 560px;
}

@media (max-width: 991px) {
  .hero-banner-content {
    max-width: 100%;
    margin: 0 auto;
  }
}

.hero-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gris-secundario);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.hero-banner-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-600);
  margin: 0 0 32px;
}

.hero-banner-image {
  position: relative;
}

.hero-banner-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .hero-banner-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 991px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gris-secundario);
  margin: 0 0 12px;
}

.value-card p {
  font-size: 16px;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--verde-light);
  box-shadow: var(--shadow-sm);
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gris-secundario);
  margin: 0 0 8px;
}

.team-card p {
  font-size: 14px;
  color: var(--verde-demo);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .supporters-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.supporter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.supporter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.supporter-card img {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.supporter-card p {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.7;
  margin: 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ico-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-demo);
}