/* Hero de Nosotros */
.hero-nosotros {
  background: linear-gradient(120deg, var(--lego-blue) 0%, var(--christmas-light-blue) 50%, var(--lego-yellow) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.hero-nosotros h1 {
  margin: 0 0 12px;
  font-size: 2.625rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-nosotros p {
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Contenido Sobre Nosotros */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--lego-red);
  margin-bottom: 20px;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: justify;
}

.about-content strong {
  color: var(--lego-red);
  font-weight: 700;
}

/* Grid de Valores */
.valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.valor-card {
  background: var(--bg-primary);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.valor-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.valor-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Introducción del equipo */
.team-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Grid del Equipo */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.team-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Foto del equipo */
.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--lego-yellow), var(--christmas-gold));
  border: 4px solid var(--lego-yellow);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder para fotos */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.625rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--lego-blue), var(--christmas-light-blue));
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.team-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lego-red);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Sección CTA */
.cta-section {
  text-align: center;
  padding: 40px 0;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  background: var(--lego-red);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: #b00d0f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (min-width: 640px) {
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 768px) {
  .hero-nosotros h1 {
    font-size: 3rem;
  }

  .hero-nosotros p {
    font-size: 1.25rem;
  }
}

[data-theme="dark"] .hero-nosotros {
  background: linear-gradient(120deg, #0f1115 0%, #181b21 60%, var(--lego-yellow) 100%);
}

[data-theme="dark"] .photo-placeholder {
  background: linear-gradient(135deg, #181b21, #0f1115);
  color: var(--text-primary);
}

@media (min-width: 1024px) {
  .valores-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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