/*
Theme Name: Vivo Seguro
Description: Theme personalizado para Vivo Seguro (Inicio, Seguros, Únete)
Author: Vertice
Version: 1.0
*/

/* Vivo Seguro — hoja de estilos
   v2: corregido contra capturas reales del sitio en vivo (vivosegurousa.com).
   Colores = panel "Colores globales" de Elementor: Principal #002F41, Secundario #F2A200,
   Texto #16859C, Énfasis #2BC1E0. Tipografía real = Poppins (varios grosores), no Roboto Slab. */

:root {
  --navy: #002F41;
  --orange: #F2A200;
  --teal: #16859C;
  --cyan: #2BC1E0;
  --peach: #FFBC7D;

  --ink: #0c0d0e;
  --gray-700: #706F6F;
  --gray-300: #D6D5D5;
  --gray-200: #E0E0E0;
  --gray-100: #F5F6F7;
  --white: #ffffff;

  --font: "Poppins", Arial, sans-serif;

  --radius: 14px;
  --pill: 999px;
  --shadow: 0 10px 30px rgba(0, 47, 65, 0.12);
  --glow-orange: 0 4px 28px 2px rgba(242, 162, 0, 0.22);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--gray-700); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy .card h4, .bg-navy .card h3 { color: var(--navy); }
.bg-navy p { color: #C9D6DB; }
.bg-light { background: var(--gray-100); }
.bg-peach { background: #FFF4E8; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6em;
}
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* Botones — píldora, con icono, igual al sitio real */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: var(--pill);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--navy); box-shadow: var(--glow-orange); }
.btn-primary:hover { background: #d98f00; }
.btn-secondary { background: var(--teal); color: var(--white); }
.btn-secondary:hover { background: #106b7e; }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: rgba(0,47,65,.06); }
.btn-white { background: var(--white); color: var(--navy); }

/* Header — mismo navy que el hero, para que quede una sola franja continua */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.site-header .logo img { height: 50px; }
.nav-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  text-decoration: none; font-weight: 600; color: var(--white); font-size: .95rem;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); border-bottom-color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display:flex; align-items:center; gap:6px; font-weight: 700; color: var(--white); text-decoration: none; font-size: .95rem; }
.header-phone svg, .btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Botón hamburguesa — oculto en escritorio, controla el menú desplegable en tablet/celular */
.nav-toggle {
  display: none; background: none; border: 0; color: var(--white); cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center; flex: none; padding: 0;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }

@media (max-width: 900px) {
  .site-header .container { position: relative; }
  .nav-toggle { display: flex; }
  .site-header .logo img { height: 38px; }
  .nav-menu {
    display: flex; flex-direction: column; gap: 0; margin: 0; list-style: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 20px 30px rgba(0,0,0,.25);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-menu.open { max-height: 400px; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .header-cta { gap: 8px; }
  .header-phone { font-size: .8rem; gap: 4px; white-space: nowrap; }
  .header-cta > .btn { padding: 10px 16px; font-size: .8rem; white-space: nowrap; }
  .header-cta > .btn svg, .header-phone svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
  .header-phone .label-text, .header-cta > .btn .label-text { display: none; }
  .header-phone, .header-cta > .btn { padding: 10px; }
  .header-cta > .btn svg, .header-phone svg { width: 18px; height: 18px; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #024a63 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

/* Video de fondo en el hero — en loop, silenciado, con una capa de color navy encima para que siga leyéndose como el color del hero */
.hero-video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw; /* 16:9 */
  min-height: 100%; min-width: 177.78vh; /* 16:9 al revés, para cubrir aunque el hero sea más alto que ancho */
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.hero-video-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,47,65,.88) 0%, rgba(2,74,99,.82) 100%);
}
.hero h1 { color: var(--white); }
.hero p.lead { color: #CFE3E9; font-size: 1.1rem; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-photo { border-radius: var(--radius); box-shadow: 0 25px 60px -10px rgba(0,0,0,.45), 0 8px 20px rgba(0,0,0,.25); overflow: hidden; }
.hero-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top center; transform: scale(1.18); transform-origin: 50% 32%; display: block; }

/* Collage de hero (variante con 2 fotos + badge flotante, usado en Seguros para diferenciarse del hero de foto única) */
.hero-collage { position: relative; padding: 0 30px 30px 0; }
.hero-collage-main { border-radius: var(--radius); overflow: hidden; box-shadow: 0 25px 60px -10px rgba(0,0,0,.45), 0 8px 20px rgba(0,0,0,.25); }
.hero-collage-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.hero-collage-secondary { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; border: 5px solid var(--navy); outline: 2px solid rgba(255,255,255,.25); box-shadow: 0 15px 35px rgba(0,0,0,.4); }
.hero-collage-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-collage-badge {
  position: absolute; top: -16px; left: -16px; z-index: 2;
  background: var(--white); color: var(--navy); border-radius: var(--pill);
  padding: 12px 18px; box-shadow: 0 15px 30px rgba(0,0,0,.3);
  font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: 8px;
}
.hero-collage-badge .stars { color: var(--orange); }

/* Animación de entrada — el hero aparece con un fade + deslizamiento suave al cargar la página */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p.lead, .hero-actions, .badge-row {
  opacity: 0; animation: fade-up .7s ease-out forwards;
}
.hero h1 { animation-delay: .05s; }
.hero p.lead { animation-delay: .18s; }
.hero-actions { animation-delay: .30s; }
.badge-row { animation-delay: .42s; }
.hero-photo, .hero-collage {
  opacity: 0; animation: fade-up .8s ease-out .25s forwards;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-collage { padding: 0 20px 20px 0; margin-top: 10px; }
}

/* Tarjeta de cotización dentro del hero (así está en el sitio real, no es una foto) */
.quote-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.quote-card h3 { color: var(--white); margin-bottom: 18px; }
.quote-card label { display:block; font-size:.85rem; color:#C9D6DB; margin-bottom:6px; }
.quote-card .field { margin-bottom: 16px; }
.quote-card input, .quote-card select {
  width: 100%; padding: 13px 16px; border-radius: 8px; border: none;
  background: #06455C; color: var(--white); font-family: var(--font); font-size: .95rem;
}
.quote-card input::placeholder { color: #9FC1CC; }
.quote-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.quote-card .lock-note { font-size: .78rem; color: #9FC1CC; margin-top: 12px; text-align: center; }

/* Dual path (Cliente / Agente) */
.dual-path { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: -50px; position: relative; z-index: 5; }
.path-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px; border-top: 5px solid var(--teal);
}
.path-card.agente { border-top-color: var(--orange); }
.path-card h3 { display: flex; align-items: center; gap: 10px; }
@media (max-width: 760px) { .dual-path { grid-template-columns: 1fr; margin-top: 24px; } }

/* Misión y Visión en Únete — mismo patrón que .dual-path, un poco más grande */
.dual-path.mission-vision .path-card { padding: 44px 40px; }
.dual-path.mission-vision h3 { font-size: 1.25rem; margin-bottom: 12px; }
.dual-path.mission-vision p { font-size: 1.02rem; }

/* Cards grid genérico */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.card .icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}

/* Iconos SVG monocromos — reemplazan los emojis en todas las secciones (menos portada) */
.icon svg, .icon-inline svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }
.icon-inline { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; vertical-align: -3px; }
.icon-inline svg { width: 18px; height: 18px; }

/* Problemas que resolvemos — tarjeta con icono, más profesional que texto plano centrado */
.problem-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 28px 24px; text-align: left; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal); }
.problem-card .icon-circle {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(22,133,156,.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.problem-card .icon-circle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h4 { margin: 0; font-size: 1.05rem; line-height: 1.35; }
.card ul { padding-left: 18px; margin: 12px 0; color: var(--gray-700); }
.card ul li { margin-bottom: 6px; }
.card .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* Tarjeta interactiva — al pasar el mouse, una capa oscura sube desde abajo y el texto se aclara para leerse mejor */
.tile-card {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tile-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, #0A4759 0%, var(--navy) 100%);
  transform: scaleY(0); transform-origin: bottom; transition: transform .35s ease;
}
.tile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.tile-card:hover::before { transform: scaleY(1); }
.tile-card h3, .tile-card h4 { color: var(--navy); transition: color .3s ease; }
.tile-card p { transition: color .3s ease; }
.tile-card:hover h3, .tile-card:hover h4 { color: var(--cyan); }
.tile-card:hover p { color: var(--white); }

/* Sección de oportunidad (FAQ) — preguntas a la izquierda, foto + CTA a la derecha */
.faq-layout { display: grid; grid-template-columns: 1.3fr .9fr; gap: 56px; align-items: start; }
.faq-cta-card { position: sticky; top: 100px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.faq-cta-card img { width: 100%; height: 320px; object-fit: cover; display: block; }
.faq-cta-card-body { background: var(--navy); padding: 32px 28px; }
.faq-cta-card-body h3 { color: var(--white); margin-bottom: 10px; }
.faq-cta-card-body p { color: #C9D6DB; margin-bottom: 20px; }
.faq-cta-card-body .btn { width: 100%; justify-content: center; }
@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cta-card { position: static; }
}

/* Utilidad genérica de revelado al hacer scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Viajes + Comunidad — dos temas unificados en una sola sección con movimiento */
.dual-topic { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.dual-topic::before { content: ''; position: absolute; top: 6%; bottom: 6%; left: 50%; width: 1px; background: rgba(255,255,255,.18); }
.dual-topic-item { padding: 0 44px; }
.dual-topic-item:first-child { padding-left: 0; }
.dual-topic-item:last-child { padding-right: 0; }
.dual-topic-item:nth-child(2) { transition-delay: .15s; }
.dual-topic-icon {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.dual-topic-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dual-topic-item.viajes .dual-topic-icon { background: var(--orange); color: var(--navy); }
.dual-topic-item.comunidad .dual-topic-icon { background: var(--cyan); color: var(--navy); }
.dual-topic-item h2 { color: var(--white); margin-bottom: 10px; }
.dual-topic-item p { color: #C9D6DB; margin-bottom: 0; }
@media (max-width: 760px) {
  .dual-topic { grid-template-columns: 1fr; gap: 40px; }
  .dual-topic::before { display: none; }
  .dual-topic-item, .dual-topic-item:first-child, .dual-topic-item:last-child { padding: 0; }
}

/* Carrusel continuo de momentos — fotos con tilt suave al pasar el mouse */
.moments-marquee {
  overflow: hidden; margin-top: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.moments-track { display: flex; gap: 20px; width: max-content; animation: moments-scroll 28s linear infinite; }
.moments-track:hover { animation-play-state: paused; }
@keyframes moments-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.moments-card { flex: none; width: 260px; height: 320px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: transform .4s ease; }
.moments-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.moments-card:hover { transform: translateY(-8px) rotate(-1deg); }
.moments-card:hover img { transform: scale(1.08); }
@media (max-width: 620px) { .moments-card { width: 200px; height: 250px; } }

/* Oficinas interactivas — clic para expandir el mapa y el botón de cómo llegar */
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.office-tile { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; overflow: hidden; transition: background .25s ease; }
.office-tile:hover { background: rgba(255,255,255,.1); }
.office-toggle {
  width: 100%; display: flex; align-items: flex-start; gap: 14px; padding: 24px; background: none; border: 0;
  text-align: left; cursor: pointer; color: inherit; font-family: var(--font);
}
.office-pin {
  width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: var(--navy); flex: none;
  display: flex; align-items: center; justify-content: center; transition: transform .3s ease;
}
.office-toggle:hover .office-pin { transform: translateY(-4px); }
.office-pin svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.office-toggle-text { flex: 1; }
.office-toggle-text h3 { color: var(--white); margin-bottom: 4px; font-size: 1.05rem; }
.office-toggle-text p { color: #C9D6DB; margin: 0; font-size: .88rem; }
.office-chevron { flex: none; color: #9FC1CC; transition: transform .35s ease; margin-top: 8px; }
.office-chevron svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.office-tile.open .office-chevron { transform: rotate(180deg); }
.office-panel { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.office-tile.open .office-panel { max-height: 320px; }
.office-panel-inner { padding: 0 24px 24px; }
.office-panel iframe { width: 100%; height: 170px; border: 0; border-radius: 12px; display: block; margin-bottom: 14px; }
.office-panel .btn { width: 100%; justify-content: center; }
@media (max-width: 860px) { .offices-grid { grid-template-columns: 1fr; } }

.credibility-strip { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.14); text-align: center; }

/* Plan de carrera — escalera visual: cada rango crece en altura, color e intensidad */
.career-ladder { display: flex; align-items: flex-end; gap: 14px; margin-top: 40px; }
.career-step {
  flex: 1; position: relative; border-radius: 16px; padding: 26px 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05); transform-origin: bottom;
  opacity: 0; transform: scaleY(.2) translateY(30px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.career-step.risen { opacity: 1; transform: scaleY(1) translateY(0); }
.career-step.risen:hover { transform: scaleY(1) translateY(-6px); }
.career-step-badge {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font); margin-bottom: 16px; font-size: .92rem;
}
.career-step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.career-step p { font-size: .87rem; margin: 0; }
.career-arrow { display: flex; align-items: center; color: var(--gray-300); flex: none; padding-bottom: 30px; }
.career-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.career-step.step-1 { height: 180px; background: var(--white); border: 1px solid var(--gray-200); }
.career-step.step-1 .career-step-badge { background: rgba(22,133,156,.12); color: var(--teal); }

.career-step.step-2 { height: 212px; background: var(--white); border: 1px solid var(--gray-200); }
.career-step.step-2 .career-step-badge { background: rgba(242,162,0,.15); color: #B67200; }

.career-step.step-3 { height: 244px; background: linear-gradient(160deg, #0A4759 0%, var(--navy) 100%); box-shadow: var(--shadow); }
.career-step.step-3 .career-step-badge { background: var(--cyan); color: var(--navy); }
.career-step.step-3 h3 { color: var(--white); }
.career-step.step-3 p { color: #C9D6DB; }

.career-step.step-4 { height: 276px; background: linear-gradient(160deg, var(--orange) 0%, #B96E00 100%); box-shadow: var(--glow-orange); }
.career-step.step-4 .career-step-badge { background: var(--navy); color: var(--white); }
.career-step.step-4 h3 { color: var(--navy); }
.career-step.step-4 p { color: rgba(0,47,65,.78); }

@media (max-width: 860px) {
  .career-ladder { flex-direction: column; align-items: stretch; }
  .career-arrow { display: none; }
  .career-step.step-1, .career-step.step-2, .career-step.step-3, .career-step.step-4 { height: auto; padding: 24px 22px; }
}

/* Barra de progreso interactiva — arrástrala y los escalones van "subiendo" según avanzas */
.career-progress-track { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.career-progress-track span { font-size: .8rem; font-weight: 700; color: var(--gray-700); white-space: nowrap; }
.career-progress { flex: 1; height: 10px; background: var(--gray-200); border-radius: 999px; overflow: visible; position: relative; }
.career-progress-fill {
  height: 100%; width: 15%; border-radius: 999px; overflow: hidden;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 35%, var(--orange) 100%);
  transition: width .12s linear;
  position: relative;
}
.career-slider {
  position: absolute; inset: -10px 0; width: 100%; height: 30px; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; cursor: grab; touch-action: pan-y;
}
.career-slider:active { cursor: grabbing; }
.career-slider::-webkit-slider-runnable-track { background: transparent; height: 30px; }
.career-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; margin-top: 3px;
  background: var(--white); box-shadow: 0 0 0 3px var(--orange), var(--shadow); transition: transform .2s ease;
}
.career-slider:hover::-webkit-slider-thumb { transform: scale(1.1); }
.career-slider::-moz-range-track { background: transparent; height: 30px; border: 0; }
.career-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%; border: 0;
  background: var(--white); box-shadow: 0 0 0 3px var(--orange), var(--shadow); transition: transform .2s ease;
}
.career-slider:hover::-moz-range-thumb { transform: scale(1.1); }

/* Estadísticas grandes (Confianza / Credibilidad) */
.stat-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.stat-showcase-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 18px;
  padding: 32px 20px; text-align: center; transition: transform .25s ease, background .25s ease;
}
.stat-showcase-item:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.stat-showcase-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--orange); color: var(--navy);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.stat-showcase-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-showcase-item strong { display: block; font-family: var(--font); font-size: 2.2rem; font-weight: 800; color: var(--white); }
.stat-showcase-item span { display: block; color: #C9D6DB; font-size: .9rem; margin-top: 4px; }
@media (max-width: 860px) { .stat-showcase { grid-template-columns: repeat(2, 1fr); } }

/* Beneficios de estar asegurado — tarjetas con foto y texto superpuesto */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.benefit-photo-card {
  position: relative; display: block; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4;
  text-decoration: none; box-shadow: var(--shadow);
}
.benefit-photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.benefit-photo-card:hover img { transform: scale(1.06); }
.benefit-photo-card .overlay {
  position: absolute; inset: 0; padding: 20px;
  background: linear-gradient(180deg, rgba(0,47,65,0) 40%, rgba(0,47,65,.65) 75%, rgba(0,47,65,.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.benefit-photo-card h3 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.benefit-photo-card p { color: #D6E4E8; font-size: .82rem; margin: 0; line-height: 1.45; }
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits-grid { grid-template-columns: 1fr; } .benefit-photo-card { aspect-ratio: 4/3; } }

/* Cultura en acción — grid de 3 fotos con overlay, reusa .benefit-photo-card */
.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 760px) { .culture-grid { grid-template-columns: 1fr; } }

/* Foto + panel claro que sobresale por debajo, efecto cajón */
.photo-reveal { max-width: 900px; margin: 0 auto; }
.photo-reveal-media { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.photo-reveal-media img { width: 100%; height: 380px; object-fit: cover; display: block; }
.photo-reveal-panel {
  position: relative; z-index: 1; background: var(--white); border-radius: 20px; box-shadow: var(--shadow);
  max-width: 680px; margin: -56px auto 0; padding: 36px 40px; text-align: center;
  opacity: 0; transform: translateY(52px); transition: opacity .8s ease, transform .8s ease;
}
.photo-reveal-panel.in-view { opacity: 1; transform: translateY(0); }
@media (max-width: 620px) {
  .photo-reveal-media img { height: 240px; }
  .photo-reveal-panel { margin-top: -40px; padding: 26px 22px; }
}

/* Carrusel de logos de compañías — en movimiento continuo, sin clicks */
.logos-carousel { overflow: hidden; padding: 20px 0 60px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logos-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: logos-scroll 22s linear infinite; }
@keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { display: flex; align-items: center; gap: 12px; flex: none; opacity: .75; filter: grayscale(1); transition: opacity .25s ease, filter .25s ease; }
.logo-item:hover { opacity: 1; filter: grayscale(0); }
.logo-item img { height: 46px; width: auto; object-fit: contain; }
.logo-item span { font-weight: 700; color: var(--navy); font-size: 1.05rem; white-space: nowrap; }

/* Carrusel de seguros (resumen en Inicio) — fotos reales, en bucle continuo */
.services-carousel { overflow: hidden; margin-top: 20px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.services-track { display: flex; gap: 20px; width: max-content; animation: services-scroll 30s linear infinite; }
.services-track:hover { animation-play-state: paused; }
@keyframes services-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.service-card-photo {
  position: relative; flex: none; width: 300px; height: 380px; border-radius: 18px; overflow: hidden;
  display: block; box-shadow: var(--shadow); text-decoration: none;
}
.service-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card-photo:hover img { transform: scale(1.06); }
.service-card-photo .overlay {
  position: absolute; inset: 0; padding: 22px;
  background: linear-gradient(180deg, rgba(0,47,65,0) 35%, rgba(0,47,65,.55) 70%, rgba(0,47,65,.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.service-card-photo h3 { color: var(--white); margin-bottom: 4px; font-size: 1.15rem; }
.service-card-photo p { color: #D6E4E8; font-size: .85rem; margin: 0; }
.service-card-photo .arrow-btn {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--navy); display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.service-card-photo .arrow-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card-photo:hover .arrow-btn { transform: rotate(45deg); }
@media (max-width: 620px) {
  .service-card-photo { width: 240px; height: 320px; }
}

/* Seguros — fila imagen + info, se revela al hacer scroll, con espacio generoso entre cada una */
.seguros-list { display: flex; flex-direction: column; gap: 120px; margin-top: 20px; }
.seguro-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease;
}
.seguro-row.in-view { opacity: 1; transform: translateY(0); }
.seguro-row[data-align="right"] .seguro-media { order: 2; }
.seguro-media { position: relative; }
.seguro-media img {
  width: 100%; aspect-ratio: 4/3.1; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow);
}
.founders-row .seguro-media img { object-position: top center; }
.seguro-media .icon-badge {
  position: absolute; bottom: -22px; left: 28px; width: 64px; height: 64px; border-radius: 16px;
  background: var(--orange); color: var(--navy); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px rgba(242,162,0,.35);
}
.seguro-row[data-align="right"] .seguro-media .icon-badge { left: auto; right: 28px; }
.seguro-media .icon-badge svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.seguro-info h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 14px; }
.seguro-info > p { font-size: 1.02rem; }
.seguro-info ul { list-style: none; padding: 0; margin: 18px 0 28px; }
.seguro-info ul li {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--gray-700);
}
.seguro-info ul li::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 8px;
}
@media (max-width: 860px) {
  .seguro-row, .seguro-row[data-align="right"] { grid-template-columns: 1fr; }
  .seguro-row[data-align="right"] .seguro-media { order: 0; }
  .seguros-list { gap: 90px; }
}

/* Testimonios — tarjeta única centrada tipo carrusel, como el sitio real */
.testi-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 40px; max-width: 640px; margin: 0 auto; text-align: center;
}
.testi-stars { color: var(--orange); font-size: 1.2rem; margin-bottom: 14px; }
.testi-quote { font-size: 1.05rem; color: var(--ink); font-style: italic; margin-bottom: 20px; }
.testi-who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem;
}
.testi-who .name { font-weight: 700; color: var(--navy); }
.testi-who .role { font-size: .85rem; color: var(--gray-700); }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.testi-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); }
.testi-dots span.active { background: var(--navy); }

.badge-pill-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem;
  padding: 10px 20px; border-radius: var(--pill); border: 2px solid var(--navy); color: var(--navy);
}
.badge-pill.filled { background: var(--orange); border-color: var(--orange); color: var(--navy); }

/* Team / profile cards */
.profile-card { text-align: center; }
.profile-card img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.profile-card h3 { margin-top: 16px; margin-bottom: 2px; }
.profile-card span { color: var(--teal); font-weight: 600; font-size: .9rem; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { border-radius: 8px; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Nuestros Equipos — tarjeta con foto de pareja/líder + rol */
.team-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.team-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.team-card-photo-pending {
  width: 100%; aspect-ratio: 4/3; background: var(--gray-100); border-bottom: 1px solid var(--gray-200);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px;
  color: var(--gray-700); font-size: .85rem;
}
.team-card h3 { padding: 18px 20px 0; margin-bottom: 2px; }
.team-card .role { display: block; padding: 0 20px; color: var(--teal); font-weight: 600; font-size: .85rem; margin-bottom: 10px; }
.team-card p { padding: 0 20px; }
.team-card p:last-child { padding-bottom: 20px; }
.team-card p.pending-tag { display: block; width: fit-content; margin: 0 20px 16px; }

/* Oficinas */
.office-card { border-left: 4px solid var(--teal); padding-left: 18px; }
.office-card h3 { margin-bottom: 6px; }

/* Video placeholder (pendiente de material) */
.video-slot {
  aspect-ratio: 16/9; border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #f1f3f4, #f1f3f4 10px, #e7eaec 10px, #e7eaec 20px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2px dashed var(--gray-300); color: var(--gray-700); font-weight: 600; padding: 20px;
}
.video-slot small { display: block; font-weight: 400; margin-top: 6px; }

/* Video real embebido (YouTube) — mismo hueco 16:9 que el placeholder, ya con contenido */
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.video-embed figcaption { margin: 10px 0 0; font-size: .85rem; color: var(--gray-700); text-align: center; }
figure.video-embed-wrap { margin: 0; }

.pending-tag {
  display: inline-block; background: #FFF0E0; color: #A85E00;
  font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: var(--pill);
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em;
}

/* Q&A / acordeón simple */
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 18px 0; }
.faq-item h4 { margin-bottom: 6px; color: var(--navy); }

/* Banner degradado (Únete a nuestro equipo) — igual a la tarjeta teal redondeada del sitio real */
/* Banner con foto de fondo (Únete a nuestro equipo) — estilo hero con play button */
.photo-banner {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 420px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow);
}
.photo-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,47,65,.92) 0%, rgba(0,47,65,.75) 40%, rgba(0,47,65,.25) 75%, rgba(0,47,65,.05) 100%);
}
.photo-banner-content { position: relative; z-index: 1; padding: 48px; max-width: 620px; }
.photo-banner-content h2 { color: var(--white); margin-bottom: 12px; }
.photo-banner-content p { color: #D6E4E8; margin-bottom: 24px; }
.pill-label {
  display: inline-block; border: 1.5px solid var(--orange); color: var(--orange);
  font-weight: 700; font-size: .8rem; letter-spacing: .03em; padding: 6px 16px;
  border-radius: var(--pill); margin-bottom: 18px;
}
.play-btn {
  position: absolute; right: 28px; bottom: 28px; z-index: 1;
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  background: rgba(255,255,255,.95); padding: 8px 8px 8px 20px; border-radius: var(--pill);
  box-shadow: var(--shadow); transition: transform .25s ease;
}
.play-btn:hover { transform: translateY(-3px); }
.play-btn-label { color: var(--navy); font-weight: 700; font-size: .9rem; }
.play-btn-circle {
  width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.play-btn-circle svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 620px) {
  .photo-banner { min-height: 320px; }
  .photo-banner-content { padding: 28px; }
  .play-btn-label { display: none; }
  .play-btn { padding: 8px; right: 18px; bottom: 18px; }
}

.gradient-banner {
  background: linear-gradient(120deg, var(--teal) 0%, #0c4f5e 100%);
  border-radius: 24px;
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: var(--white);
}
.gradient-banner h2, .gradient-banner h3, .gradient-banner p { color: var(--white); }
.gradient-banner p { margin-bottom: 0; max-width: 520px; }
.gradient-banner.centered { flex-direction: column; justify-content: center; text-align: center; }
.gradient-banner.centered p { max-width: 720px; margin: 0 auto; }
.gradient-banner .quote-highlight { font-size: 1.5rem; font-weight: 800; margin: 18px auto 0 !important; }

/* Cita destacada sobre foto de fondo — comillas tipográficas grandes, texto centrado sobre la imagen */
.quote-photo {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 440px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.quote-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,47,65,.55) 0%, rgba(0,47,65,.8) 100%);
}
.quote-photo-content { position: relative; z-index: 1; max-width: 720px; text-align: center; padding: 40px; }
.quote-photo .quote-mark {
  font-family: Georgia, "Times New Roman", serif; font-size: 5rem; line-height: 1;
  color: var(--orange); display: block; margin-bottom: -14px;
}
.quote-photo-lead { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
.quote-photo-content h3 { color: var(--white); margin-bottom: 10px; }
.quote-photo-content p:not(.quote-photo-lead) { color: #D6E4E8; }
@media (max-width: 620px) {
  .quote-photo { min-height: 340px; }
  .quote-photo-content { padding: 26px; }
  .quote-photo-lead { font-size: 1.4rem; }
  .quote-photo .quote-mark { font-size: 4rem; }
}

/* CTA final */
.cta-final { background: var(--teal); color: var(--white); text-align: center; }
.cta-final h2, .cta-final p { color: var(--white); }

/* Contacto — dos columnas: formulario + lista de iconos, como el sitio real */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px; border: 1px solid var(--gray-200);
}
.contact-form label { display:block; font-size:.85rem; color: var(--gray-700); margin-bottom:6px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form input, .contact-form select {
  width: 100%; padding: 13px 16px; border-radius: 8px; border: 1px solid var(--gray-300);
  background: #F3FAFB; font-family: var(--font); font-size: .95rem;
}
.contact-form .btn { width: 100%; justify-content: center; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-item .icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-item h4 { margin-bottom: 2px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--navy); color: #C9D6DB; padding: 56px 0 24px; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { text-decoration: none; color: #C9D6DB; }
.site-footer a:hover { color: var(--cyan); }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
@media (max-width: 860px) { .site-footer .container { grid-template-columns: 1fr 1fr; } }

/* Proceso simple — 5 pasos en una sola fila, sin animación automática.
   Zoom suave solo al pasar el mouse por encima. */
.process-row-single { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 20px; }
.process-card {
  background: linear-gradient(160deg, #0A4759 0%, #002F41 100%);
  border: 1.5px solid var(--accent, var(--teal));
  border-radius: 16px; padding: 24px 20px; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-card:hover {
  transform: scale(1.045);
  box-shadow: 0 14px 32px -6px rgba(242,162,0,.3), 0 0 0 3px var(--accent);
}
.process-card .step-num {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--accent, var(--teal));
  color: var(--accent, var(--teal)); background: rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 18px;
}
.process-card h4 { color: var(--white); margin-bottom: 6px; font-size: 1.02rem; }
.process-card p { color: #9FB4BC; font-size: .85rem; margin: 0 0 22px; }
.process-card .step-icon {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--accent, var(--teal));
  color: var(--accent, var(--teal)); display: flex; align-items: center; justify-content: center;
}
.process-card .step-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-card.c1 { --accent: var(--teal); }
.process-card.c2 { --accent: var(--orange); }
.process-card.c3 { --accent: var(--cyan); }
.process-card.c4 { --accent: var(--orange); }
.process-card.c5 { --accent: var(--teal); }
.process-card.c6 { --accent: var(--cyan); }
.process-card .step-icon.top { margin: 0 0 16px; }
@media (max-width: 980px) { .process-row-single { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .process-row-single { grid-template-columns: 1fr; } }

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 100;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25); text-decoration: none; font-size: 1.8rem;
}
.whatsapp-float:hover { transform: scale(1.06); }

.badge-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-top: 18px; }
.badge-row .badge { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--white); }
.badge-check { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; flex: none; }
