/* ================================================================
   nosotros.css — About / Nosotros page styles
   ================================================================ */

/* ── MISSION SECTION ── */
.mission-section { background: var(--white); padding: 72px 40px; }
.mission-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mission-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 14px; box-shadow: 0 16px 48px rgba(0,48,135,.14); }
.mission-txt .m-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--blmid); font-weight: 700; margin-bottom: 12px; }
.mission-txt h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 4.5vw, 52px); color: var(--navy); letter-spacing: 2px; margin-bottom: 16px; line-height: 1; }
.mission-txt h2 em { color: var(--orange); font-style: normal; }
.mission-txt p  { font-size: 15px; color: var(--soft); line-height: 1.85; margin-bottom: 14px; }
.mission-divider { width: 48px; height: 3px; background: var(--orange); margin: 20px 0; border-radius: 2px; }
.mission-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.mval { display: flex; align-items: flex-start; gap: 10px; }
.mval .mv-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.mval p { font-size: 13px; color: var(--soft); margin: 0; line-height: 1.5; }
.mval p strong { color: var(--navy); display: block; font-size: 13px; margin-bottom: 2px; }

/* ── TEAM SECTION ── */
.team-section { background: #001240; padding: 72px 40px; position: relative; overflow: hidden; }
.team-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.055'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.team-section .sec-header, .team-grid { position: relative; z-index: 1; }
.team-section .section-label { color: var(--acc2); }
.team-section .section-title  { color: var(--white); }
.team-section .section-sub    { color: rgba(255,255,255,.55); }
.team-section .sec-header { padding-top: 0; padding-bottom: 36px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; max-width: 1000px; margin: 0 auto; }
.team-card { background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12); border-radius: 16px; overflow: hidden; text-align: center; transition: background .2s, transform .25s; }
.team-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.team-img-wrap { width: 100%; height: 220px; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-img-placeholder { width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(0,31,92,.8), rgba(0,77,182,.6)); font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: rgba(255,255,255,.18); letter-spacing: 3px; }
.team-body { padding: 22px 18px 26px; }
.team-body h4   { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); letter-spacing: 1px; margin-bottom: 4px; }
.team-body .role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 12px; display: block; }
.team-body p    { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.70; }

/* ── WHY US FEATURES ── */
.about-why { background: var(--gbg); padding: 72px 40px; }
.about-why .sec-header { padding-top: 0; }
.about-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.about-feat {
  background: var(--white); border: 1.5px solid var(--gray); border-radius: 12px;
  padding: 28px 22px; text-align: center; transition: transform .25s, box-shadow .25s;
}
.about-feat:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,48,135,.10); }
.about-feat .af-icon { font-size: 36px; margin-bottom: 14px; }
.about-feat h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--navy); letter-spacing: 1px; margin-bottom: 8px; }
.about-feat p  { font-size: 13px; color: var(--soft); line-height: 1.75; }

/* ── GALLERY ── */
.gallery-section { background: var(--white); padding: 72px 40px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 190px);
  gap: 12px; max-width: 1100px; margin: 0 auto;
}
.gallery-item { border-radius: 12px; overflow: hidden; background: var(--gbg); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:first-child  { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--sky), #c8d8f0); font-size: 32px; }

/* ── CERTIFICATIONS ── */
.certs-section { background: var(--navy); padding: 48px 40px; }
.certs-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.certs-section h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--white); letter-spacing: 3px; margin-bottom: 8px; }
.certs-section .certs-sub { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.certs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.cert-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 20px 16px; text-align: center; }
.cert-item .cert-ico { font-size: 32px; margin-bottom: 10px; }
.cert-item p { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 600; letter-spacing: .5px; line-height: 1.4; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .mission-section { padding: 48px 24px; }
  .mission-inner { grid-template-columns: 1fr; gap: 32px; }
  .mission-img img { height: 280px; }
  .mission-vals { grid-template-columns: 1fr; }
  .team-section, .about-why, .gallery-section, .certs-section { padding: 48px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child  { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 600px) {
  .mission-section, .team-section, .about-why, .gallery-section, .certs-section { padding: 36px 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
}