/* ══════════════════════════════════════
   sobre-nosotros.css
   Sobre Nosotros — Editorial Premium
   ══════════════════════════════════════ */

/* ══════════════════════════════
   BREADCRUMB
══════════════════════════════ */
.sn-breadcrumb {
  padding: 14px 24px;
  background: #f0f4f8;
  border-bottom: 1px solid #e2e8f0;
  font-size: 12px;
}

.sn-breadcrumb a {
  color: #1a56c4;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.sn-breadcrumb a:hover {
  color: #0d2d6b;
}

.sn-bc-sep {
  margin: 0 8px;
  color: #93a3b8;
}

.sn-breadcrumb span:last-child {
  color: #5a6272;
  font-weight: 600;
}

/* ══════════════════════════════
   SHARED — Labels & Titles
══════════════════════════════ */
.sn-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1a56c4;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sn-label--light {
  color: #0ea5d8;
}

/* ══════════════════════════════
   1. SOBRE NOSOTROS — Editorial
══════════════════════════════ */
.sn-editorial {
  padding: 72px 24px 80px;
  background: #fff;
}

.sn-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sn-editorial-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #0d2d6b;
  line-height: 1.15;
  margin-bottom: 24px;
}

.sn-editorial-title--sm {
  font-size: clamp(22px, 3vw, 32px);
}

.sn-editorial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6272;
  margin-bottom: 16px;
}

.sn-editorial-text:last-child {
  margin-bottom: 0;
}

/* Quote block */
.sn-quote {
  position: relative;
  padding: 40px 36px;
  background: #f0f4f8;
  border-radius: 20px;
  border-left: 4px solid #1a56c4;
}

.sn-quote--light {
  background: rgba(255, 255, 255, .12);
  border-left-color: #0ea5d8;
}

.sn-quote-icon {
  width: 40px;
  height: 40px;
  color: #7dd3fc;
  margin-bottom: 16px;
  opacity: .7;
}

.sn-quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: #1a2a4a;
  line-height: 1.65;
  margin-bottom: 20px;
}

.sn-quote-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0d2d6b;
}

.sn-quote-dash {
  width: 28px;
  height: 2px;
  background: #1a56c4;
  border-radius: 2px;
}

/* ══════════════════════════════
   2. CARRUSEL DE SEDES
══════════════════════════════ */
.sn-sedes-carousel {
  position: relative;
  overflow: hidden;
  background: #0d2d6b;
  padding: 0;
}

.sn-sedes-track {
  display: flex;
  width: max-content;
  animation: snScroll 40s linear infinite;
}

.sn-sedes-track:hover {
  animation-play-state: paused;
}

@keyframes snScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sn-sede-slide {
  position: relative;
  width: 420px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
}

.sn-sede-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.sn-sede-slide:hover img {
  transform: scale(1.05);
}

.sn-sede-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 45, 107, .85) 0%, rgba(13, 45, 107, .1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  opacity: 0;
  transition: opacity .35s ease;
}

.sn-sede-slide:hover .sn-sede-overlay {
  opacity: 1;
}

.sn-sede-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.sn-sede-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 10px;
  line-height: 1.4;
}

.sn-sede-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #7dd3fc;
  text-decoration: none;
  transition: color .2s;
}

.sn-sede-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.sn-sede-link:hover {
  color: #fff;
}

/* ══════════════════════════════
   3. MISIÓN Y VISIÓN
══════════════════════════════ */
.sn-mision-vision {
  padding: 80px 24px;
  background: #f0f4f8;
}

.sn-mv-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.sn-mv-divider {
  width: 1px;
  background: #d0d8e8;
  align-self: stretch;
  margin: 0 8px;
}

.sn-mv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #0d2d6b;
  margin-bottom: 16px;
}

.sn-mv-text {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6272;
}

/* ══════════════════════════════
   4. FORTALEZAS
══════════════════════════════ */
.sn-fortalezas {
  padding: 80px 24px;
  background: #fff;
}

.sn-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.sn-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #0d2d6b;
}

.sn-fort-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.sn-fort-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.sn-fort-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}

.sn-fort-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3ff;
  border-radius: 14px;
  color: #1a56c4;
}

.sn-fort-icon svg {
  width: 28px;
  height: 28px;
}

.sn-fort-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0d2d6b;
  margin-bottom: 8px;
}

.sn-fort-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #6b7a90;
}

/* ══════════════════════════════
   5. FILOSOFÍA
══════════════════════════════ */
.sn-filosofia {
  padding: 80px 24px;
  background: #1357df;
  color: #fff;
}

.sn-filosofia .sn-editorial-title {
  color: #fff;
}

.sn-filosofia .sn-editorial-text {
  color: rgba(255, 255, 255, .7);
}

.sn-filosofia .sn-quote {
  background: rgba(255, 255, 255, .08);
  border-left-color: #0ea5d8;
}

.sn-filosofia .sn-quote-icon {
  color: #7dd3fc;
}

.sn-filosofia .sn-quote-text {
  color: rgba(255, 255, 255, .95);
}

.sn-filosofia .sn-quote-signature {
  color: #7dd3fc;
}

.sn-filosofia .sn-quote-dash {
  background: #7dd3fc;
}

/* ══════════════════════════════
   6. CIERRE — CTA
══════════════════════════════ */
.sn-cta {
  padding: 80px 24px;
  background: #f0f4f8;
  text-align: center;
}

.sn-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #0d2d6b;
  margin-bottom: 12px;
}

.sn-cta-desc {
  font-size: 15px;
  color: #6b7a90;
  margin-bottom: 28px;
}

.sn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e02020;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.sn-cta-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.sn-cta-btn:hover {
  background: #c01010;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 32, 32, .3);
}

/* ══════════════════════════════
   RESPONSIVE — Tablet
══════════════════════════════ */
@media (max-width: 1024px) {
  .sn-fort-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sn-sede-slide {
    width: 340px;
    height: 240px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — Mobile
══════════════════════════════ */
@media (max-width: 768px) {
  .sn-editorial {
    padding: 48px 20px 56px;
  }

  .sn-editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sn-mision-vision {
    padding: 56px 20px;
  }

  .sn-mv-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sn-mv-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }

  .sn-fortalezas {
    padding: 56px 20px;
  }

  .sn-fort-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sn-fort-item {
    padding: 24px 16px;
  }

  .sn-sede-slide {
    width: 280px;
    height: 200px;
  }

  .sn-sede-overlay {
    opacity: 1;
  }

  .sn-filosofia {
    padding: 56px 20px;
  }

  .sn-quote {
    padding: 28px 24px;
  }

  .sn-quote-text {
    font-size: 15px;
  }

  .sn-cta {
    padding: 56px 20px;
  }
}

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

  .sn-sede-slide {
    width: 260px;
    height: 180px;
  }
}

/* ══════════════════════════════
   REDUCED MOTION
══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .sn-sedes-track {
    animation: none;
  }
}
