/* ===== Trámitex Visa — Clón 1:1 de Plantilla Plumbly ===== */
:root {
  --blue: #2563EB;            /* Azul Hero & Testimonios */
  --blue-deep: #1E4FA3;
  --navy: #0B1B33;            /* Banda CTA */
  --green: #5CB338;           /* Banda Servicios & Botones */
  --green-hover: #4FA22E;
  --yellow: #F5A623;          /* Badge Acento */
  --ink: #0F172A;
  --muted: #64748B;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --line: #E2E8F0;
  --r-sm: 12px;
  --r: 16px;
  --shadow: 0 12px 30px rgba(15, 23, 42, .08);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15.5px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1140px, 92%); margin-inline: auto; }
.section { padding: 84px 0; }

/* Patrones de fondo elegantes para romper el blanco uniforme */
.section-pattern {
  background-color: #ffffff;
  background-image: 
    radial-gradient(rgba(37, 99, 235, 0.08) 1.2px, transparent 1.2px),
    radial-gradient(rgba(92, 179, 56, 0.06) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  background-position: 0 0, 13px 13px;
}

.section-pattern-alt {
  background-color: #F1F5F9;
  background-image: 
    radial-gradient(rgba(15, 23, 42, 0.07) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}

.bg-soft-blue {
  background-color: #EBF2FD;
  background-image: 
    radial-gradient(rgba(37, 99, 235, 0.07) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow-dark { color: #94A3B8; }
.eyebrow-light { color: #DBE7FF; }
.eyebrow-green { color: #EAFBDD; }

.h2, h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.lead { color: var(--muted); font-size: .98rem; line-height: 1.65; }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .92rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.14); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-hover); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-yellow { background: var(--yellow); color: var(--navy); font-weight: 800; }
.btn-link { font-weight: 700; font-size: .88rem; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.btn-link:hover { color: var(--blue); }

/* ===== CABECERA UNIFORME PARA PÁGINAS INTERNAS ===== */
.topbar {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid rgba(92, 179, 56, 0.4);
}
.topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-in .brand img { height: 42px; width: auto; }
.nav { display: flex; gap: 24px; font-weight: 700; font-size: .95rem; }
.nav a { color: #ffffff; opacity: .88; transition: all .2s ease; }
.nav a:hover, .nav a.active {
  opacity: 1;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--green);
}
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #122A4E 100%);
  color: #ffffff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero .crumbs {
  font-size: .88rem;
  font-weight: 700;
  color: #93C5FD;
  margin-bottom: 12px;
}
.page-hero .crumbs a { color: #ffffff; opacity: .85; }
.page-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  color: #ffffff;
}
.page-hero p {
  color: #DBE7FF;
  max-width: 56ch;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== SERVICIOS DETALLADOS ===== */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.svc-detail .photo {
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
}
.svc-detail .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 1. CABECERA INTEGRADA 100% EN COLUMNA IZQUIERDA (AZUL GRISÁCEO APAGADO) ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
}
.hero-left {
  color: #0F172A;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 36px 56px 64px;
  background-color: #F1F5F9;
  background-image: 
    radial-gradient(rgba(15, 23, 42, 0.05) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  width: 100%;
  padding-bottom: 20px;
}
.topbar-left .brand img { height: 48px; width: auto; }

.nav-left { display: flex; gap: 24px; font-weight: 700; font-size: .95rem; }
.nav-left a { color: #0F172A; opacity: .88; transition: all .2s ease; }
.nav-left a:hover, .nav-left a.active {
  opacity: 1;
  color: #1E3A8A;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--green);
}

.nav-toggle { display: none; background: none; border: 0; font-size: 1.7rem; color: #0F172A; cursor: pointer; }

.hero-inner {
  width: 100%;
  max-width: 500px;
  margin: auto 0;
  padding: 20px 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  color: #0B1B33;
}

.hero p {
  color: #334155;
  max-width: 44ch;
  margin-bottom: 30px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.btn-hero-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(92, 179, 56, 0.4);
  transition: all .25s ease;
}
.btn-hero-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(92, 179, 56, 0.55);
  background: var(--green-hover);
}

.hero-action-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.cta-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.25);
}

.luxury-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.luxury-phone-link:hover {
  transform: translateX(4px);
}

.luxury-phone-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.luxury-phone-link:hover .luxury-phone-ic {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.luxury-phone-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}
.luxury-phone-text .tag-sub {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #93C5FD;
}
.luxury-phone-text .num-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .02em;
}

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
}
.hero-stars .stars { color: #FFD166; letter-spacing: 3px; font-size: 1.25rem; line-height: 1; }

.hero-right { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== 2. BARRA DE BENEFICIOS Y CONTACTO DIRECTO (4 COLUMNAS) ===== */
.features-bar { background: #fff; padding: 48px 0; border-bottom: 1px solid var(--line); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature { display: flex; gap: 16px; align-items: flex-start; text-decoration: none; color: inherit; transition: transform .25s ease; }
.feature-phone-card:hover { transform: translateY(-3px); }
.feature .ic {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.feature .ic-green {
  background: var(--green);
  box-shadow: 0 4px 14px rgba(92, 179, 56, 0.35);
}
.feature h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 4px; color: var(--ink); }
.feature p { font-size: .86rem; color: var(--muted); line-height: 1.5; }

/* ===== 3. WHY CHOOSE US (COMPOSICIÓN ESCALONADA PERFECTA) ===== */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-media-staggered {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 400px;
  margin: 0 auto;
}
.why-photo-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 82%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  z-index: 1;
}
.why-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-photo-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 64%;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  z-index: 2;
  transition: transform 0.3s ease;
}
.why-photo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-photo-overlay:hover {
  transform: translateY(-4px) scale(1.02);
}
.check-list li { display: flex; gap: 16px; margin-top: 24px; }
.check-list .dot {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  background: #EAF1FF;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .95rem;
}
.check-list h4 { font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.check-list p { font-size: .88rem; color: var(--muted); }

/* ===== 4. BANDA DE SERVICIOS (TARJETAS PREMIUM CON BOTÓN Y BORDE DESTACADO) ===== */
.services-band { background: var(--green); color: #fff; }
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 42px; flex-wrap: wrap; }
.services-head .h2 { color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.svc-card {
  background: #ffffff;
  color: var(--ink);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  border-color: #ffffff;
}

.svc-card .photo {
  border-radius: 14px;
  height: 155px;
  overflow: hidden;
  position: relative;
}
.svc-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.svc-card:hover .photo img { transform: scale(1.08); }

.svc-badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 27, 51, 0.85);
  color: #ffffff;
  font-size: .68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.svc-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: #0F172A; }
.svc-card p { font-size: .88rem; color: #475569; margin-bottom: 16px; line-height: 1.55; }

.btn-svc-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EBF2FD;
  color: #2563EB;
  font-size: .84rem;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 999px;
  transition: all .25s ease;
}
.svc-card:hover .btn-svc-action {
  background: #2563EB;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* ===== 5. ABOUT + STATS ===== */
.about-top { display: grid; grid-template-columns: 1fr 220px 1fr; gap: 40px; align-items: stretch; margin-bottom: 60px; }
.stat-box-blue {
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
}
.stat-box-blue b { font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.stat-box-blue span { font-size: .88rem; color: #DBE7FF; font-weight: 600; margin-bottom: 18px; }
.about-top .photo { border-radius: var(--r); overflow: hidden; height: 100%; min-height: 280px; }
.about-top .photo img { width: 100%; height: 100%; object-fit: cover; }

.stats-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat-item b { font-size: 2.3rem; font-weight: 800; color: var(--ink); display: block; line-height: 1.1; margin-bottom: 4px; }
.stat-item span { font-size: .88rem; color: var(--muted); }

/* ===== 6. NUESTRO EQUIPO / PILARES STUDIO-GRADE ===== */
.studio-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.studio-pillar-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--r);
  padding: 32px 26px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.studio-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.studio-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}
.studio-pillar-card:hover::before {
  opacity: 1;
}

.pillar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.icon-blue { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); }
.icon-green { background: linear-gradient(135deg, #5CB338 0%, #469627 100%); }
.icon-navy { background: linear-gradient(135deg, #0B1B33 0%, #1E3A8A 100%); }
.icon-yellow { background: linear-gradient(135deg, #F5A623 0%, #D97706 100%); }

.pillar-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #CBD5E1;
  letter-spacing: -.02em;
}
.studio-pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.studio-pillar-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== 7. TESTIMONIOS (BANDA AZUL) ===== */
.testi-band { background: var(--blue); color: #fff; text-align: center; }
.testi-band .h2 { color: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; text-align: left; }
.testi-card { background: #fff; color: var(--ink); border-radius: var(--r); padding: 28px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.testi-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex: 0 0 48px; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.testi-role { font-size: .8rem; color: var(--muted); }
.testi-card p { font-size: .92rem; color: #475569; line-height: 1.6; margin-bottom: 20px; }
.testi-footer { display: flex; justify-content: space-between; align-items: center; }
.starline { color: #FFD166; letter-spacing: 2px; font-size: 1.1rem; }
.badge-verified { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: #16A34A; background: #DCFCE7; padding: 4px 10px; border-radius: 999px; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); }
.dots span.on { background: #fff; width: 24px; border-radius: 999px; }

/* ===== 8. PROCESO (PASOS APILADOS) ===== */
.process { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.step-cards { display: flex; flex-direction: column; gap: 16px; }
.step-card {
  background: var(--green);
  color: #fff;
  border-radius: var(--r);
  padding: 26px 30px;
  transition: transform .25s ease;
}
.step-card:hover { transform: translateX(6px); }
.step-card .step-num { font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #EAFBDD; margin-bottom: 6px; }
.step-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.step-card p { font-size: .9rem; color: #F0FBE8; line-height: 1.55; }

/* ===== 9. GALERÍA ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 44px; }
.gallery-item { border-radius: var(--r); overflow: hidden; height: 220px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.col-3 { grid-column: span 3; height: 280px; }
.gallery-item.col-2 { grid-column: span 2; height: 220px; }

/* ===== 10. FAQ ===== */
.faq { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.acc { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 14px; overflow: hidden; background: #fff; }
.acc summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: .95rem; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.3rem; color: var(--green); font-weight: 800; }
.acc[open] { background: var(--bg-soft); }
.acc[open] summary::after { content: "–"; }
.acc div { padding: 0 22px 18px; color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ===== 11. CTA OSCURO + FORMULARIO ===== */
.cta-band { background: linear-gradient(115deg,#060F1F,var(--navy) 70%,#122A4E); color: #fff; position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.cta-contacts { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-contacts a { display: inline-flex; align-items: center; gap: 12px; color: #DBE7FF; font-weight: 600; font-size: .9rem; }
.cta-contacts a:hover { color: #7BEA54; }
.cta-contacts .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; flex: 0 0 42px; font-size: 1.1rem; }
.form-card { background: #fff; color: var(--ink); border-radius: var(--r); padding: 30px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 16px; font-size: 1.2rem; font-weight: 800; }
.form-card label { display: block; font-size: .78rem; font-weight: 700; margin: 14px 0 6px; text-transform: uppercase; color: var(--muted); }
.form-card input, .form-card select { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .92rem; background: #fff; }
.form-card input:focus, .form-card select:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ===== 12. FOOTER ===== */
footer { background: #fff; border-top: 1px solid var(--line); padding: 64px 0 0; color: var(--muted); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.foot-grid h4 { color: var(--ink); font-size: .95rem; font-weight: 800; margin-bottom: 18px; }
.foot-grid a { display: block; margin-bottom: 12px; font-size: .9rem; }
.foot-grid a:hover { color: var(--blue); }
.foot-brand img { height: 52px; margin-bottom: 16px; }
.foot-brand p { font-size: .88rem; max-width: 30ch; line-height: 1.6; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: .85rem; }
.socials a:hover { background: var(--green); }
.seals { display: flex; gap: 14px; flex-wrap: wrap; }
.seal { width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-content: center; text-align: center; font-size: .6rem; font-weight: 800; color: var(--muted); line-height: 1.2; padding: 6px; }
.seal b { color: var(--green); font-size: .75rem; display: block; }
.foot-bottom { border-top: 1px solid var(--line); padding: 20px 0; font-size: .82rem; text-align: center; color: #94A3B8; }

/* Botón flotante WhatsApp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(0,0,0,.25); transition: transform .25s ease; }
.wa-float:hover { transform: scale(1.08); }

/* ===== RESPONSIVE ADAPTATIVO ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 0 60px; }
  .hero-right { height: 360px; min-height: 360px; }
  .features { grid-template-columns: 1fr; gap: 24px; }
  .why, .about-top, .process, .faq, .cta-grid, .testi-grid { grid-template-columns: 1fr; }
  .services-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.col-3, .gallery-item.col-2 { grid-column: span 3; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blue); flex-direction: column; gap: 0; padding: 10px 4%; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav-toggle { display: block; }
  .topbar { background: var(--blue); position: sticky; top: 0; }
}

@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .services-grid, .team-grid, .foot-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.col-3, .gallery-item.col-2 { grid-column: span 1; }
  .svc-card { grid-template-columns: 1fr; }
  .stats-row-4 { grid-template-columns: 1fr 1fr; gap: 20px; }
}
