/* ============================================
   AGROCLIMA - NOSOTROS (Estilos independientes)
   Hero espectacular + Contenido simple limpio
   ============================================ */

.nosotros-page {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ---------- HERO ESPECTACULAR ---------- */
.nosotros-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80') center/cover no-repeat;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.875rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---------- CONTENIDO SIMPLE ---------- */
.nosotros-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.nosotros-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #166534;
}

.nosotros-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #1a1a1a;
}

.nosotros-content p {
  margin-bottom: 1.5rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
}

.nosotros-content blockquote {
  border-left: 4px solid #16a34a;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #374151;
  font-size: 1.15rem;
}

.nosotros-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  color: #4b5563;
}

.nosotros-content li {
  margin-bottom: 0.75rem;
}

/* Timeline simple */
.timeline-simple {
  border-left: 2px solid #e5e7eb;
  padding-left: 2rem;
  margin: 2rem 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #16a34a;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #16a34a;
}

.timeline-year {
  font-weight: 700;
  color: #16a34a;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Grid de valores simple */
.valores-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.valor-card-simple {
  text-align: center;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.valor-icon-simple {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.valor-title-simple {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.valor-desc-simple {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* CTA simple */
.cta-simple {
  background: #166534;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin: 4rem 0;
  border-radius: 12px;
}

.cta-simple h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-simple p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-simple {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: white;
  color: #166534;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-simple:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-outline-simple {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 0.5rem;
}

.btn-outline-simple:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 640px) {
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 2rem; }
  .nosotros-content { padding: 3rem 1.5rem; }
}
