/* ============================================
   nosotros.css — Estilos exclusivos de nosotros.html
   ============================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(rgba(20, 50, 20, 0.78), rgba(20, 50, 20, 0.78)),
              url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  color: var(--blanco);
  text-align: center;
  padding: 5rem 0;
  overflow: hidden;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ── Quiénes somos — 2 columnas ──────────────────────────── */
.quienes-somos-section {
  background: var(--fondo-body);
}

.quienes-somos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quienes-somos-texto p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texto-principal);
  margin-bottom: 1.25rem;
}

.quienes-somos-texto p:last-child {
  margin-bottom: 0;
}

.quienes-somos-imagen {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.quienes-somos-imagen img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ── Banner de estadísticas ───────────────────────────────── */
.stats-banner {
  background: var(--verde-oscuro);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--blanco);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--verde-claro);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ── Valores ──────────────────────────────────────────────── */
.valores-section {
  background: var(--blanco);
}

.valores-subtitulo {
  text-align: center;
  color: var(--texto-secundario);
  font-size: 1rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value {
  background: var(--fondo-body);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 2px 12px var(--sombra);
  transition: var(--transition);
}

.value:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value h3 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--verde-oscuro);
  margin-bottom: 0.75rem;
}

.value p {
  font-size: 0.88rem;
  color: var(--texto-secundario);
  line-height: 1.6;
}

/* ── Instagram ────────────────────────────────────────────── */
.instagram-section {
  background: var(--fondo-body);
}

.instagram-title {
  text-align: center;
}

.instagram-subtitle {
  text-align: center;
  color: var(--texto-secundario);
  margin-top: -2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.instagram-profile-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.instagram-feed-title {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--verde-oscuro);
}

/* ── CTA final ────────────────────────────────────────────── */
.cta-section {
  background: var(--verde-oscuro);
  color: var(--blanco);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.85;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .quienes-somos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quienes-somos-imagen {
    order: -1;
  }

  .quienes-somos-imagen img {
    height: 260px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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


/* Header */
.header {
  background-color: #ffffff;
  color: #2d5a27;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-family: 'Nunito', sans-serif;
  border-bottom: 3px solid #2d5a27;
}
