/* ════════════════════════════════════════════════════════════
   EXTRATEGOR — HOME PAGE  v1.0
   Basado en Dossier 2026
════════════════════════════════════════════════════════════ */

/* ── Reset sección ───────────────────────────────────────── */
.home-page * { box-sizing: border-box; }
.home-page { overflow-x: hidden; }

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --h-navy:      #03102b;
  --h-dark:      #0a2348;
  --h-blue:      #006bb3;
  --h-blue-mid:  #0a82d4;
  --h-blue-lt:   #2196d9;
  --h-accent:    #ffb700;
  --h-white:     #ffffff;
  --h-off:       #f4f7fb;
  --h-gray:      #6b7a99;
  --h-text:      #1a2340;
  --h-border:    rgba(0,107,179,.15);
  --h-radius:    14px;
  --h-radius-sm: 8px;
  --h-shadow:    0 12px 40px rgba(3,16,43,.14);
  --h-shadow-sm: 0 4px 16px rgba(3,16,43,.08);
  --h-trans:     .22s ease;
}

/* ════════════════════════════════════════════════════════════
   1. HERO
════════════════════════════════════════════════════════════ */
.home-hero {
  min-height: 92vh;
  background: linear-gradient(145deg, #03102b 0%, #061e47 55%, #0a3570 100%);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  padding: 100px 8vw 80px;
  position: relative;
  overflow: hidden;
}

/* Diagonal decorativa (referencias al ícono del logo) */
.home-hero::before {
  content: '';
  position: absolute; right: -20px; top: 0; bottom: 0; width: 52%;
  background: rgba(0,107,179,.07);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 36%;
  background: rgba(33,150,217,.05);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 8% 100%);
  pointer-events: none;
}

/* ── Hero left ─────────────────────────────────────────── */
.hero-content { position: relative; z-index: 2; }

.hero-quote {
  margin: 0 0 20px;
  padding: 0 0 0 16px;
  border-left: 3px solid rgba(33, 150, 217, 0.55);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36em;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(33,150,217,.15);
  border: 1px solid rgba(33,150,217,.3);
  color: var(--h-blue-lt);
  font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--h-blue-lt);
  box-shadow: 0 0 8px var(--h-blue-lt);
}

.hero-h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--h-white);
  margin: 0 0 8px;
  letter-spacing: -1px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--h-blue-lt), #6ec6ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.55);
  font-style: italic; margin: 0 0 28px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1.02rem; color: rgba(255,255,255,.75);
  line-height: 1.7; max-width: 520px; margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: var(--h-blue); color: #fff;
  border: none; border-radius: var(--h-radius-sm);
  font-size: .95rem; font-weight: 700; text-decoration: none;
  transition: all var(--h-trans);
  box-shadow: 0 6px 24px rgba(0,107,179,.4);
}
.hero-btn-primary:hover {
  background: var(--h-blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,107,179,.55);
  color: #fff; text-decoration: none;
}

.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--h-radius-sm);
  font-size: .95rem; font-weight: 600; text-decoration: none;
  transition: all var(--h-trans);
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
button.hero-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5); color: #fff;
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5); color: #fff;
  text-decoration: none;
}

/* ── Hero right — stats ────────────────────────────────── */
.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--h-radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: all var(--h-trans);
  position: relative; overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--h-blue-lt);
}
.hero-stat:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(33,150,217,.3);
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  color: var(--h-white); margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-number sup {
  font-size: 1.2rem; color: var(--h-blue-lt);
  font-weight: 700; vertical-align: super;
}
.stat-label {
  display: block;
  font-size: .78rem; color: rgba(255,255,255,.55);
  font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  line-height: 1.3;
}

/* ── Hero scroll hint ──────────────────────────────────── */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.3); font-size: .72rem; letter-spacing: 1px;
  text-transform: uppercase; z-index: 2;
}
.hero-scroll-dot {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero-scroll-dot::before {
  content: '';
  width: 4px; height: 8px; background: rgba(255,255,255,.4);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   2. STRIP — cifras rápidas
════════════════════════════════════════════════════════════ */
.home-strip {
  background: var(--h-blue);
  padding: 22px 8vw;
  display: flex; justify-content: space-around; flex-wrap: wrap;
  gap: 16px;
}
.strip-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .88rem; font-weight: 600;
}
.strip-item strong {
  font-size: 1.4rem; font-weight: 900; color: #fff;
}

/* ════════════════════════════════════════════════════════════
   3. SERVICIOS
════════════════════════════════════════════════════════════ */
.home-services {
  padding: 96px 8vw;
  background: var(--h-off);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--h-blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--h-text);
  line-height: 1.2; margin: 0 0 16px;
}
.section-desc {
  font-size: 1rem; color: var(--h-gray);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--h-white);
  border-radius: 12px;
  padding: 28px 26px 24px;
  box-shadow: 0 1px 3px rgba(3, 16, 43, 0.06);
  border: 1px solid rgba(3, 16, 43, 0.08);
  transition: border-color var(--h-trans), box-shadow var(--h-trans), transform var(--h-trans);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--h-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
  opacity: 0.9;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(3, 16, 43, 0.09);
  border-color: rgba(0, 107, 179, 0.18);
  text-decoration: none;
  color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(3, 16, 43, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--h-navy);
  transition: border-color var(--h-trans), color var(--h-trans);
}
.service-icon__svg {
  display: block;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  border-color: rgba(0, 107, 179, 0.28);
  color: var(--h-blue);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--h-navy);
  line-height: 1.28;
  margin: 0 0 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 0 0 22px;
}
.service-count {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--h-navy);
  background: transparent;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(3, 16, 43, 0.12);
}

.service-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(3, 16, 43, 0.08);
  background: #fafbfc;
  color: #64748b;
  transition: border-color var(--h-trans), background var(--h-trans), color var(--h-trans);
}
.service-arrow__svg {
  display: block;
}
.service-card:hover .service-arrow {
  color: var(--h-blue);
  border-color: rgba(0, 107, 179, 0.22);
  background: rgba(0, 107, 179, 0.05);
}

/* ════════════════════════════════════════════════════════════
   4. TEAM BUILDING FEATURE
════════════════════════════════════════════════════════════ */
.home-tb {
  padding: 100px 8vw 108px;
  background: linear-gradient(165deg, var(--h-navy) 0%, #061e47 48%, #0a2d52 100%);
  position: relative;
  overflow: hidden;
}

.home-tb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 55% at 50% -5%, rgba(0, 107, 179, 0.2), transparent 52%);
  pointer-events: none;
}

.home-tb .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 8px;
}

.home-tb .section-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.home-tb .section-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  margin: 0 auto 20px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--h-blue-lt), var(--h-blue));
}

.home-tb .section-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.tb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 52px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.tb-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(3, 16, 43, 0.25);
  transition: border-color var(--h-trans), background var(--h-trans), transform var(--h-trans), box-shadow var(--h-trans);
}

.tb-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--h-blue-lt), var(--h-blue), transparent);
  opacity: 0.85;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.tb-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(33, 150, 217, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(3, 16, 43, 0.35);
}

.tb-card:hover::after {
  transform: scaleX(1);
}

.tb-card-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.tb-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.tb-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  margin-bottom: 26px;
}

.tb-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tb-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 11px;
  border-radius: 6px;
}

.tb-tag-more {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--h-blue-lt);
  background: rgba(33, 150, 217, 0.12);
  border: 1px solid rgba(33, 150, 217, 0.28);
  padding: 6px 11px;
  border-radius: 6px;
}

.tb-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: var(--h-radius-sm);
  border: 1px solid rgba(33, 150, 217, 0.45);
  background: rgba(0, 107, 179, 0.2);
  transition: background var(--h-trans), border-color var(--h-trans), gap var(--h-trans);
}

.tb-card-link:hover {
  gap: 12px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 107, 179, 0.35);
  border-color: rgba(33, 150, 217, 0.65);
}

.tb-number {
  position: absolute;
  right: 28px;
  top: 28px;
  font-size: clamp(3.5rem, 8vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   5. QUIÉNES SOMOS + PRESENCIA
════════════════════════════════════════════════════════════ */
.home-about {
  padding: 96px 8vw;
  background: var(--h-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Variante fondo azul oscuro ── */
.home-about--dark {
  background: linear-gradient(155deg, #001227 0%, #001e3c 35%, #003166 70%, #005499 100%);
  color: #fff;
}
.home-about--dark .section-eyebrow { color: #7ec8f4; }
.home-about--dark .section-title   { color: #fff; }
.home-about--dark .about-text p    { color: rgba(255,255,255,.72); }
.home-about--dark .about-feat-list li { color: rgba(255,255,255,.88); }
.home-about--dark .about-feat-list li::before {
  background: rgba(126,200,244,.15);
  color: #7ec8f4;
}
.home-about--dark .cities-title    { color: #7ec8f4; }
.home-about--dark .city-item {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.home-about--dark .city-item:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.about-text .section-head { text-align: left; margin: 0 0 36px; }
.about-text .section-title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }

.about-text p {
  font-size: 1rem; color: var(--h-gray); line-height: 1.8;
  margin-bottom: 20px;
}

.about-feat-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.about-feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .93rem; color: var(--h-text); line-height: 1.5;
}
.about-feat-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(0,107,179,.1);
  color: var(--h-blue); font-size: .75rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* Ciudades */
.about-cities {}
.cities-title {
  font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--h-blue);
  margin-bottom: 20px;
}
.cities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.city-item {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 12px;
  background: var(--h-off);
  border-radius: var(--h-radius-sm);
  font-size: .83rem; font-weight: 600; color: var(--h-text);
  border: 1px solid var(--h-border);
  transition: all var(--h-trans);
}
.city-item::before {
  content: '📍'; font-size: .8rem;
}
.city-item:hover {
  background: rgba(0,107,179,.06);
  border-color: var(--h-blue);
  color: var(--h-blue);
}

/* ════════════════════════════════════════════════════════════
   6. FORMACIÓN — áreas
════════════════════════════════════════════════════════════ */
.home-formacion {
  padding: 96px 8vw;
  background: var(--h-off);
}

.formacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.formacion-card {
  background: var(--h-white);
  border-radius: var(--h-radius);
  padding: 28px 24px;
  border: 1px solid var(--h-border);
  box-shadow: var(--h-shadow-sm);
  transition: all var(--h-trans);
  text-align: center;
}
.formacion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--h-shadow);
  border-color: rgba(0,107,179,.2);
}
.formacion-card-icon {
  font-size: 2rem; margin-bottom: 12px; display: block;
}
.formacion-card h4 {
  font-size: .95rem; font-weight: 800; color: var(--h-text);
  margin: 0 0 8px;
}
.formacion-card-count {
  font-size: .78rem; color: var(--h-gray); font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   7. LOGOS (override para home)
════════════════════════════════════════════════════════════ */
.home-page .logos-section {
  padding: 72px 0;
}
.home-page .logos-section h2 {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--h-navy);
}

.home-page .logos-section h2::after {
  margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════
   8. CTA FINAL
════════════════════════════════════════════════════════════ */
.home-cta {
  padding: 100px 8vw;
  background: linear-gradient(145deg, #03102b, #061e47);
  text-align: center;
  position: relative; overflow: hidden;
}
.home-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0,107,179,.2), transparent);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }
.cta-inner .section-eyebrow { color: var(--h-blue-lt); }
.cta-inner .section-title { color: #fff; max-width: 600px; margin: 0 auto 16px; }
.cta-inner p {
  font-size: 1rem; color: rgba(255,255,255,.55);
  max-width: 480px; margin: 0 auto 40px; line-height: 1.7;
}

.cta-buttons {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.cta-btn-main {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 36px;
  background: var(--h-blue); color: #fff;
  border-radius: var(--h-radius-sm); font-size: 1rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,107,179,.45);
  transition: all var(--h-trans);
}
.cta-btn-main:hover {
  background: var(--h-blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,107,179,.6);
  color: #fff; text-decoration: none;
}
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px;
  background: transparent; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--h-radius-sm); font-size: 1rem; font-weight: 600;
  text-decoration: none;
  transition: all var(--h-trans);
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
button.cta-btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5); color: #fff;
}
.cta-btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5); color: #fff;
  text-decoration: none;
}

.cta-contact-info {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.cta-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.5); font-size: .88rem;
}
.cta-contact-item a {
  color: rgba(255,255,255,.75); text-decoration: none; font-weight: 600;
  transition: color var(--h-trans);
}
.cta-contact-item a:hover { color: var(--h-blue-lt); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .home-hero     { grid-template-columns: 1fr; min-height: auto; padding: 120px 6vw 60px; }
  .hero-stats    { grid-template-columns: repeat(4, 1fr); }
  .home-tb .tb-grid  { grid-template-columns: 1fr; }
  .home-about    { grid-template-columns: 1fr; gap: 48px; }
  .about-text .section-head { text-align: left; }
}

@media (max-width: 600px) {
  .home-hero { padding: 100px 5vw 50px; }
  .hero-h1   { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-ctas  { flex-direction: column; }
  .hero-btn-primary, .hero-btn-secondary { justify-content: center; }
  .home-services,
  .home-tb,
  .home-about,
  .home-formacion,
  .home-cta   { padding: 64px 5vw; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .tb-card    { padding: 30px 24px; }
  .tb-number  { display: none; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-btn-main, .cta-btn-outline { justify-content: center; }
  .cta-contact-info { gap: 20px; flex-direction: column; align-items: center; }
  .home-strip { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 16px 5vw; }
}
