/* ── Quiénes Somos Page ── */

.nosotros-hero {
  background: var(--gradient-hero);
  padding: calc(var(--nav-height) + var(--sp-20)) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.nosotros-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.nosotros-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nosotros-hero h1 {
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: var(--fw-black);
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
}

.nosotros-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-relaxed);
}

/* ── Filosofía Section ── */
.filosofia-section {
  padding: var(--sp-24) 0;
  background: var(--bg-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.mv-card {
  padding: var(--sp-10);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.mv-card.mision {
  background: var(--gradient-primary);
  color: white;
}

.mv-card.vision {
  background: white;
  border: 1px solid var(--bg-subtle);
  color: var(--text-dark);
}

.mv-card.vision:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.2);
}

.mv-card-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-4);
}

.mv-card.mision .mv-card-label {
  color: #93C5FD;
  background: rgba(59,130,246,0.2);
  border: 1px solid rgba(59,130,246,0.3);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

.mv-card.vision .mv-card-label {
  color: var(--color-accent);
  background: var(--color-accent-light);
  border: 1px solid rgba(59,130,246,0.2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

.mv-card h3 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.mv-card.vision h3 { color: var(--color-primary); }

.mv-card p {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
}

.mv-card.mision p  { color: rgba(255,255,255,0.8); }
.mv-card.vision p  { color: var(--text-medium); }

.mv-card.mision::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

/* Triple Impact */
.triple-impact {
  margin-top: var(--sp-12);
  padding: var(--sp-10);
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--bg-subtle);
}

.triple-impact h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: var(--sp-6);
  text-align: center;
}

.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.triple-item {
  text-align: center;
  padding: var(--sp-5);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--bg-subtle);
  transition: all var(--transition-base);
}

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

.triple-emoji {
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
  display: block;
}

.triple-item h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}

.triple-item p {
  font-size: var(--text-sm);
  color: var(--text-medium);
  line-height: var(--lh-relaxed);
}

/* ── Respaldo Section ── */
.respaldo-section-nosotros {
  padding: var(--sp-24) 0;
  background: var(--bg-light);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
  margin-top: var(--sp-12);
}

.founder-profile {
  position: relative;
}

.founder-photo-wrapper {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: var(--sp-8);
}

.founder-photo-placeholder .icon {
  font-size: 4rem;
  opacity: 0.5;
}

.founder-photo-placeholder p {
  font-size: var(--text-sm);
  opacity: 0.6;
}

.founder-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  right: var(--sp-6);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-lg);
}

.founder-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.founder-badge-text strong {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.founder-badge-text span {
  font-size: var(--text-xs);
  color: var(--text-light);
}

.founder-content h2 {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: var(--sp-5);
}

.founder-content p {
  font-size: var(--text-base);
  color: var(--text-medium);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-medium);
  padding: var(--sp-3) var(--sp-4);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-subtle);
}

.credential-item::before {
  content: '✓';
  color: #10B981;
  font-weight: var(--fw-bold);
  background: #F0FDF4;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

/* ── Eco Card Photo Header ── */
.eco-card-photo {
  margin: calc(-1 * var(--sp-8)) calc(-1 * var(--sp-8)) var(--sp-5);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  overflow: hidden;
  height: 200px;
  position: relative;
}

.eco-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
  filter: brightness(0.92) saturate(1.1);
}

.eco-card:hover .eco-card-photo img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.2);
}

.eco-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(248,250,252,0.9));
}

/* ── Ecosistema Section ── */
.ecosistema-section {
  padding: var(--sp-24) 0;
  background: white;
}

.ecosistema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.eco-card {
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  border: 1px solid var(--bg-subtle);
  transition: all var(--transition-base);
  text-align: center;
}

.eco-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.2);
}

.eco-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--shadow-accent);
}

.eco-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: var(--sp-3);
}

.eco-card p {
  font-size: var(--text-sm);
  color: var(--text-medium);
  line-height: var(--lh-relaxed);
}
