/* ============================================================
   SAQUIMI OPERACIONES — styles.css  v2
   Paleta oficial: Manual de Identidad SAQUIMI
   Diseño base: propuesta Gemini (tema claro)
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:    #12507F;   /* Pantone 541 C  */
  --mint:    #29DEA1;   /* Pantone 7716 C */
  --teal:    #27A089;   /* Pantone 3385 U */
  --light:   #E9EFF4;   /* Pantone 649 U  */
  --dark:    #1A1C20;
  --navy-dk: #0D3D61;
  --white:   #FFFFFF;
  --page-bg: #F8FAFC;   /* slate-50       */
  --slate-200: #E2E8F0;
  --slate-600: #475569;
  --slate-800: #1E293B;

  --font-head: 'Special Gothic Expanded One', 'Special Gothic', sans-serif;
  --font-body: 'Teachers', sans-serif;
  --nav-h: 72px;
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 8px 32px rgba(18,80,127,0.10);
  --shadow-card-hover: 0 20px 60px rgba(18,80,127,0.16);
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Fonts (local) ── */
@font-face {
  font-family: 'Special Gothic Expanded One';
  src: url('assets/font/Special_Gothic_Expanded_One/SpecialGothicExpandedOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teachers';
  src: url('assets/font/Teachers/Teachers-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teachers';
  src: url('assets/font/Teachers/Teachers-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate-800);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }
ul { list-style: none; }

/* ── Utilities ── */
.max-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Scroll reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* Section headers shared */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.section-eyebrow-mint { color: var(--mint); }
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-h2-light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.section-sub-light { color: rgba(233,239,244,0.7); }
.br-desktop { display: inline; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s ease, transform 0.35s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(18,80,127,0.10);
}
.navbar.nav-hidden {
  transform: translateY(-100%);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-brand { display: flex; align-items: center; overflow: visible; }
.nav-logo-img {
  /* PNG is 4167x4167 but content is only ~17% height (huge transparent padding).
     clip-path recorta el padding, margin colapsa el espacio muerto. */
  height: 180px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: -74px 0;
  clip-path: inset(41% 0 42% 0);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--teal); }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mint);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 16px rgba(41,222,161,0.35);
  transition: var(--transition);
}
.btn-nav-cta:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(41,222,161,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--slate-200);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: var(--light); color: var(--teal); }
.mobile-cta {
  display: block;
  margin-top: 0.75rem;
  padding: 0.85rem;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: none;
  transition: background 0.2s;
}
.mobile-cta:hover { background: var(--teal); }

/* ═══════════════════════════════════════════════════════
   HERO — tema claro, blobs, SVG moléculas, stats glassmorphism
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--page-bg);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Gradient blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.blob-top {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: 500px;
  background: rgba(41,222,161,0.18);
  animation: blobPulse 4s ease-in-out infinite;
}
.blob-left {
  bottom: 0;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(18,80,127,0.12);
}
.blob-right {
  top: 25%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(39,160,137,0.08);
  animation: blobPulse 6s ease-in-out infinite 1s;
}
@keyframes blobPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%       { transform: translateX(-50%) scale(1.06); opacity: 0.8; }
}
.blob-left, .blob-right { transform: none; }
.blob-right { animation-name: blobPulseRight; }
@keyframes blobPulseRight {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 0.5; }
}

/* H2O SVG floating molecules */
.h2o-mol {
  position: absolute;
  pointer-events: none;
}
.mol-tl {
  top: 8%;  left: 8%;
  width: 72px; height: 72px;
  color: rgba(41,222,161,0.25);
  animation: molBounce 5s ease-in-out infinite;
}
.mol-bl {
  bottom: 18%; left: 18%;
  width: 96px; height: 96px;
  color: rgba(18,80,127,0.15);
  animation: molPulse 7s ease-in-out infinite;
}
.mol-tr {
  top: 22%;  right: 12%;
  width: 80px; height: 80px;
  color: rgba(41,222,161,0.18);
  animation: molBounce 6s ease-in-out infinite 1s;
}
.mol-br {
  bottom: 10%; right: 22%;
  width: 52px; height: 52px;
  color: rgba(18,80,127,0.2);
  animation: molPulse 4s ease-in-out infinite;
}
@keyframes molBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-22px); }
}
@keyframes molPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.94); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

/* Badge — dark solid industrial */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid var(--navy-dk);
  box-shadow: 0 4px 16px rgba(18,80,127,0.35);
  font-weight: 700;
  font-size: 0.78rem;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  cursor: default;
  transition: transform 0.2s;
}
.hero-badge:hover { transform: scale(1.03); }
.badge-ping {
  position: relative;
  width: 10px; height: 10px;
  flex-shrink: 0;
}
.badge-ping::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #F59E0B;
  opacity: 0.7;
  animation: pingAnim 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.badge-ping-inner {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #F59E0B;
  position: relative; z-index: 1;
}
@keyframes pingAnim {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* H1 */
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  color: var(--slate-800);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
.hero-h1-gradient {
  display: inline-block;
  margin-top: 0.4rem;
  background:
    linear-gradient(
      110deg,
      var(--navy) 0%,
      var(--teal) 30%,
      var(--mint) 48%,
      rgba(255,255,255,0.85) 50%,
      var(--mint) 52%,
      var(--teal) 70%,
      var(--navy) 100%
    );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: heroShimmer 1.8s cubic-bezier(0.4,0,0.2,1) 0.6s 1 both,
             heroShimmerLoop 1.8s cubic-bezier(0.4,0,0.2,1) 10s infinite;
}
@keyframes heroShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -50% 0; }
}
@keyframes heroShimmerLoop {
  0%, 85% { background-position: 100% 0; }
  100%    { background-position: -50% 0; }
}

.hero-h1-gradient::after {
  content: '';
  position: absolute;
  inset: -4px -8px;
  background: linear-gradient(135deg, rgba(18,80,127,0.12), rgba(41,222,161,0.12));
  filter: blur(20px);
  border-radius: 8px;
  z-index: -1;
}

/* Subtitle */
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--slate-600);
  max-width: 620px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 8px 32px rgba(18,80,127,0.28);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy-dk));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-hero-primary:hover::after { opacity: 1; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(18,80,127,0.32); }
.btn-hero-primary span { position: relative; z-index: 1; }
.btn-hero-primary > * { position: relative; z-index: 1; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(148,163,184,0.25);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: white;
  border-color: rgba(41,222,161,0.4);
  box-shadow: 0 8px 32px rgba(41,222,161,0.2);
}
.btn-hero-secondary svg { color: var(--teal); }

/* Stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.stat-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1rem;
  box-shadow: 0 16px 40px rgba(18,80,127,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(18,80,127,0.12);
}
.stat-offset { transform: translateY(24px); }
.stat-offset:hover { transform: translateY(16px); }
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.stat-icon-cyan { background: rgba(41,222,161,0.12); color: var(--teal); }
.stat-icon-blue { background: rgba(18,80,127,0.08); color: var(--navy); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   WAVE SEPARATORS — ondas entre secciones
═══════════════════════════════════════════════════════ */
.wave-separator {
  line-height: 0;
  margin: -1px 0;
  position: relative;
  z-index: 2;
}
.wave-separator svg {
  display: block;
  width: 100%;
  height: 70px;
}

@media (max-width: 768px) {
  .wave-separator svg { height: 40px; }
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 2rem 1rem;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94A3B8;
  margin-bottom: 1.25rem;
}
/* Marquee rotativo de marcas */
.trust-marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.trust-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}
.trust-marquee-wrapper:hover .trust-marquee-track { animation-play-state: paused; }
.trust-brand {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0.85rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(18, 80, 127, 0.08);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(18, 80, 127, 0.06), 0 1px 3px rgba(18, 80, 127, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.trust-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 80, 127, 0.12), 0 2px 6px rgba(18, 80, 127, 0.08);
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   URGENCIA — dark slate-900
═══════════════════════════════════════════════════════ */
.urgency-section {
  background: var(--dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.urgency-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,30,30,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.urgency-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #FCA5A5;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.urgency-badge svg { animation: pulseIcon 2s ease-in-out infinite; }
@keyframes pulseIcon { 0%,100%{opacity:1} 50%{opacity:0.5} }
.urgency-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.urgency-h2-accent {
  background: linear-gradient(to right, #F87171, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.urgency-p {
  color: rgba(203,213,225,0.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.urgency-p strong { color: white; }
.urgency-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.urgency-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(203,213,225,0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}
.urgency-icon-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(239,68,68,0.15);
  color: #F87171;
  font-size: 0.65rem;
  font-weight: 700;
}
.btn-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #DC2626;
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 8px 24px rgba(220,38,38,0.3);
  transition: var(--transition);
}
.btn-urgency:hover {
  background: #B91C1C;
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(220,38,38,0.4);
}

/* Image grid */
.urgency-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.img-col { display: flex; flex-direction: column; gap: 1rem; }
.img-col-right { margin-top: 3rem; }
.urgency-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.urgency-img-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s, transform 0.6s;
  display: block;
}
.urgency-img-tall img { height: 240px; }
.urgency-img-card:hover img { opacity: 1; transform: scale(1.06); }
.img-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(26,28,32,0.85) 0%, transparent 100%);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════
   SERVICIOS — bento box (tema claro)
═══════════════════════════════════════════════════════ */
.services-section {
  background: var(--page-bg);
  padding: 6rem 2rem;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1.25rem;
}
.bento-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}
.bento-wide  { grid-column: span 2; display: flex; align-items: center; gap: 2rem; }
.bento-icon-img { width: 40%; height: 40%; object-fit: contain; display: block; }
.bento-icon-img-sm { width: 60%; height: 60%; object-fit: contain; display: block; }
.bento-regular { grid-column: span 1; }
.bento-reverse { flex-direction: row-reverse; }

/* Light cards */
.bento-light {
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: 0 8px 32px rgba(18,80,127,0.06);
}
.bento-light:hover {
  box-shadow: 0 20px 56px rgba(18,80,127,0.12);
  transform: translateY(-4px);
}
.bento-light h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--slate-800);
  margin-bottom: 0.6rem;
}
.bento-light p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Card icons */
.bento-icon-wrap {
  width: 72px; height: 72px;
  min-width: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.bento-icon-blue { background: rgba(18,80,127,0.07); color: var(--navy); }
.bento-icon-teal { background: rgba(39,160,137,0.08); color: var(--teal); }
.bento-icon-rotate { border-radius: var(--radius-md); }
.bento-icon-glass {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(233,239,244,0.9);
  margin-bottom: 1.5rem;
}
.bento-text { flex: 1; }
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.2s;
  border: none;
  background: none;
  padding: 0;
}
.bento-link:hover { color: var(--navy); }
.btn-bento-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  background: white;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
}
.btn-bento-dark:hover { background: rgba(41,222,161,0.1); }

/* Small icon for regular cards */
.bento-icon-sm {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(41,222,161,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.bento-regular h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
}
.bento-regular p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ───── Subsección Operaciones especializadas (bloque propio bajo el bento) ───── */
.ops-esp-section {
  margin-top: 5rem;
  padding-top: 4rem;
  position: relative;
}
.ops-esp-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--mint) 100%);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.ops-esp-section-h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--navy);
  text-align: center;
  margin: 0.5rem 0 1rem;
}
.ops-esp-section-sub {
  color: rgba(18,80,127,0.7);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.55;
}
.ops-esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ops-esp-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(18,80,127,0.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ops-esp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(18,80,127,0.12);
  border-color: rgba(41,222,161,0.32);
}
.ops-esp-card .bento-icon-sm { margin-bottom: 1.25rem; }
.ops-esp-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--slate-800);
  line-height: 1.3;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.ops-esp-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0 0 1.5rem;
  flex: 1;
}
.ops-esp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}
.ops-esp-card-cta:hover { color: var(--teal); gap: 0.6rem; }
.ops-esp-card-cta svg { transition: transform 0.2s; }
@media (max-width: 991px) {
  .ops-esp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 600px) {
  .ops-esp-section { margin-top: 3rem; padding-top: 2.5rem; }
  .ops-esp-section-h3 { font-size: 1.5rem; }
  .ops-esp-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PROCESO — 6 pasos
═══════════════════════════════════════════════════════ */
.proceso-section {
  background: var(--white);
  padding: 6rem 2rem;
}
.proceso-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* Horizontal stepper */
.stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
/* Connecting line across all steps */
.stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(to right, var(--mint), var(--teal), var(--navy), var(--teal), var(--mint));
  border-radius: 3px;
}
.stepper-step {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}
.stepper-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px white, 0 4px 14px rgba(18,80,127,0.2);
  transition: var(--transition);
}
.stepper-step:hover .stepper-num {
  background: var(--teal);
  transform: scale(1.15);
  box-shadow: 0 0 0 5px white, 0 8px 20px rgba(39,160,137,0.3);
}
.stepper-step h3 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.stepper-step p {
  font-size: 0.78rem;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════
   BENEFICIOS — dark navy-dk
═══════════════════════════════════════════════════════ */
.beneficios-section {
  background: var(--navy-dk);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.beneficios-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='white' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.beneficios-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.beneficio-card {
  background: rgba(18,80,127,0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(18,80,127,0.5);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.beneficio-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.25); }
.beneficio-card-offset { margin-top: 2rem; }
.beneficio-icon {
  color: var(--mint);
  margin-bottom: 1.5rem;
}
.beneficio-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.beneficio-card p {
  font-size: 0.88rem;
  color: rgba(233,239,244,0.68);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALES — CAROUSEL
═══════════════════════════════════════════════════════ */
.testimoniales-section {
  background: white;
  padding: 6rem 2rem;
}
.testimoniales-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
}
.carousel-viewport {
  overflow: hidden;
  margin: -12px 0;
  padding: 12px 0;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.testimonials-track.is-dragging {
  cursor: grabbing;
  transition: none;
}
/* Spotlight / centered — no card bg */
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background: transparent;
  padding: 1.5rem 2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 0.8;
  margin-bottom: 1.5rem;
  display: block;
  background: linear-gradient(135deg, var(--navy), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial-text {
  flex: 1;
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 560px;
}
.stars {
  color: var(--mint);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.15em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.78rem;
  color: var(--slate-600);
  margin-top: 0.1rem;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18, 80, 127, 0.18);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}
.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(18, 80, 127, 0.15);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(18, 80, 127, 0.08);
  flex-shrink: 0;
}
.carousel-arrow:hover:not(:disabled) {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: scale(1.08);
}
.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-section {
  background: var(--navy-dk);
  padding: 6rem 2rem 8rem;
  position: relative;
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(18, 80, 127, 0.08);
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 5px 20px rgba(18, 80, 127, 0.08);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  gap: 1rem;
  user-select: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.active .faq-icon {
  background: var(--mint);
  color: var(--dark);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-cta {
  text-align: center;
}
.faq-cta p {
  color: rgba(233,239,244,0.7);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mint);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(18,80,127,0.25);
}
.btn-faq-cta:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41,222,161,0.3);
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION (overlap card)
═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--page-bg);
  padding: 0 2rem 5rem;
}
.cta-overlap-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.cta-overlap-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(18,80,127,0.14);
  padding: 3rem;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(18,80,127,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Info side */
.cta-badge {
  display: inline-block;
  background: rgba(41,222,161,0.12);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.cta-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.cta-tel {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cta-tel-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.cta-tel-label { font-size: 0.78rem; color: var(--slate-600); margin-bottom: 0.2rem; }
.cta-tel-num {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
}
.cta-tel-num:hover { color: var(--teal); }

/* Form side */
.cta-form-wrap {
  background: var(--page-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--slate-200);
}

/* Form elements */
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(18,80,127,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(39,160,137,0.1);
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-submit:hover::after { opacity: 1; }
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(18,80,127,0.3); }
.btn-submit span { position: relative; z-index: 1; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-disclaimer { font-size: 0.72rem; color: rgba(26,28,32,0.4); text-align: center; }
.privacy-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--teal);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}
.privacy-link:hover { color: var(--navy); }

/* ── Field validation ── */
.form-group input.field-warn,
.wa-form-body input.field-warn {
  border-color: #f0a500 !important;
  background: #fffbf0 !important;
  box-shadow: 0 0 0 3px rgba(240,165,0,0.12) !important;
}
.form-group input.field-ok,
.wa-form-body input.field-ok {
  border-color: var(--teal) !important;
  background: white !important;
}
.field-msg {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.3rem;
  min-height: 1em;
  color: #c47a00;
}
.field-msg:empty { display: none; }

/* ── Custom Dropdown ── */
.select-wrap { position: relative; width: 100%; }
.select-wrap select { display: none; }
.dropdown-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 1.5px solid rgba(18,80,127,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(26,28,32,0.45);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dropdown-button:hover, .dropdown-button:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(39,160,137,0.1);
  outline: none;
}
.dropdown-button.has-value { color: var(--dark); }
.dropdown-button.select-error { border-color: #f0a500 !important; }
.dropdown-button.is-open .dropdown-chevron { transform: rotate(180deg); }
.dropdown-chevron { width: 16px; height: 16px; flex-shrink: 0; color: rgba(26,28,32,0.4); transition: transform 0.2s; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: white;
  border: 1.5px solid rgba(18,80,127,0.15);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(18,80,127,0.12);
  z-index: 200;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.25s ease, opacity 0.2s;
}
.dropdown-menu.dropdown-open { max-height: 260px; opacity: 1; pointer-events: all; }
.dropdown-menu ul { overflow-y: auto; max-height: 256px; }
.dropdown-menu ul::-webkit-scrollbar { width: 5px; }
.dropdown-menu ul::-webkit-scrollbar-thumb { background: #dde5ed; border-radius: 8px; }
.dropdown-option { padding: 0.7rem 1rem; font-size: 0.88rem; color: var(--dark); cursor: pointer; transition: background 0.15s; }
.dropdown-option:hover { background: var(--light); }
.dropdown-option.option-selected { background: rgba(41,222,161,0.1); color: var(--teal); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 0.5rem;
}
.footer-sitemap { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.footer-brand { display: flex; flex-direction: column; justify-content: flex-start; }
.footer-brand p { color: rgba(233,239,244,0.6); font-size: 0.85rem; line-height: 1.7; margin-top: 1.5rem; max-width: 440px; }
.footer-logos-row { display: flex; align-items: center; gap: 1.5rem; }
.footer-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.footer-logo-img { width: 180px; height: auto; display: block; flex-shrink: 0; }
.footer-crc-img { width: 130px; height: auto; display: block; opacity: 0.95; flex-shrink: 0; }
.footer-title { font-family: var(--font-head); font-size: 0.85rem; color: white; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { text-decoration: none; color: rgba(233,239,244,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--mint); }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item span:first-child { font-size: 1rem; }
.footer-contact-item a, .footer-contact-item p { color: rgba(233,239,244,0.6); font-size: 0.82rem; text-decoration: none; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--mint); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(233,239,244,0.6); font-size: 0.9rem; transition: all 0.25s; }
.social-link:hover { background: var(--mint); color: var(--dark); border-color: var(--mint); transform: translateY(-3px); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.footer-copy { color: rgba(233,239,244,0.35); font-size: 0.78rem; justify-self: start; }
.footer-dev-credit { color: rgba(233,239,244,0.35); font-size: 0.75rem; text-align: center; justify-self: center; }
.footer-dev-credit a { color: rgba(233,239,244,0.5); text-decoration: none; transition: color 0.2s; }
.footer-dev-credit a:hover { color: var(--mint); }
.footer-legal { display: flex; gap: 1.5rem; justify-self: end; }
.footer-legal .privacy-link { color: rgba(233,239,244,0.35); font-size: 0.78rem; text-decoration: none; }
.footer-legal .privacy-link:hover { color: var(--mint); }

/* ═══════════════════════════════════════════════════════
   WHATSAPP WIDGET
═══════════════════════════════════════════════════════ */
.wa-btn { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.wa-trigger { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 25px rgba(37,211,102,0.5); transition: all 0.3s; border: none; position: relative; z-index: 2; }
.wa-trigger:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(37,211,102,0.6); }
.wa-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #25D366; animation: waPulse 2.5s ease-out infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.6);opacity:0} }
.wa-form { position: absolute; bottom: 72px; right: 0; width: 300px; background: white; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.18); overflow: hidden; transform: scale(0.8) translateY(20px); transform-origin: bottom right; opacity: 0; pointer-events: none; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.wa-form.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.wa-form-header { background: linear-gradient(135deg, var(--navy), var(--teal)); padding: 1.25rem 1.25rem 1rem; display: flex; align-items: center; gap: 0.75rem; position: relative; }
.wa-avatar { width: 46px; height: 46px; min-width: 46px; background: rgba(41,222,161,0.2); border: 1.5px solid rgba(41,222,161,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
.wa-agent-name { color: white; font-weight: 700; font-size: 0.95rem; font-family: var(--font-head); }
.wa-agent-tagline { color: rgba(233,239,244,0.72); font-size: 0.72rem; margin-top: 0.15rem; }
.wa-form-body { padding: 1.25rem; }
.wa-bubble { background: rgba(18,80,127,0.06); border: 1px solid rgba(18,80,127,0.08); border-radius: 12px 12px 12px 4px; padding: 0.85rem 1rem; font-size: 0.85rem; color: var(--dark); line-height: 1.6; margin-bottom: 1rem; }
.wa-form-body label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.wa-form-body input { width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid rgba(18,80,127,0.15); border-radius: 8px; font-family: var(--font-body); font-size: 0.85rem; color: var(--dark); background: var(--light); outline: none; transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 0.75rem; }
.wa-form-body input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(39,160,137,0.1); }
.wa-send-btn { width: 100%; padding: 0.8rem; background: linear-gradient(135deg, var(--navy), var(--teal)); color: white; border: none; border-radius: 10px; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.25s; position: relative; overflow: hidden; }
.wa-send-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--teal), var(--mint)); opacity: 0; transition: opacity 0.3s; }
.wa-send-btn:hover::after { opacity: 1; }
.wa-send-btn:hover { transform: translateY(-1px); }
.wa-send-btn svg, .wa-send-btn span { position: relative; z-index: 1; }
.wa-close { position: absolute; top: 0.85rem; right: 0.85rem; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; width: 26px; height: 26px; color: white; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.wa-close:hover { background: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════
   PRIVACY MODAL
═══════════════════════════════════════════════════════ */
.privacy-modal-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(18,80,127,0.4); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; padding: 1rem; }
.privacy-modal-overlay.open { opacity: 1; pointer-events: all; }
.privacy-modal-box { position: relative; background: white; border: 1px solid var(--slate-200); border-radius: 24px; width: 100%; max-width: 680px; max-height: 88vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 40px 80px rgba(18,80,127,0.18); transform: translateY(30px) scale(0.97); transition: transform 0.35s ease; }
.privacy-modal-overlay.open .privacy-modal-box { transform: translateY(0) scale(1); }
.privacy-modal-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; border-radius: 24px; }
.privacy-modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: var(--light); border: none; border-radius: 50%; width: 36px; height: 36px; color: var(--navy); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.privacy-modal-close:hover { background: var(--mint); color: var(--dark); }
.privacy-modal-scroll { overflow-y: auto; padding: 2.5rem; position: relative; z-index: 1; }
.privacy-modal-header { text-align: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--slate-200); }
.privacy-modal-logo { height: 56px; width: auto; margin: 0 auto 1rem; display: block; }
.privacy-modal-header h2 { font-family: var(--font-head); color: var(--navy); font-size: 1.6rem; margin-bottom: 0.4rem; }
.privacy-modal-company { font-size: 0.85rem; color: var(--teal); font-weight: 600; }
.privacy-modal-body h3 { font-family: var(--font-head); color: var(--navy); font-size: 1rem; margin: 1.75rem 0 0.6rem; }
.privacy-modal-body p { color: var(--slate-600); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.75rem; }
.privacy-modal-body ul { padding-left: 1.4rem; margin-bottom: 0.75rem; }
.privacy-modal-body li { color: var(--slate-600); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.3rem; }
.privacy-modal-body a { color: var(--teal); }
.privacy-modal-body strong { color: var(--slate-800); }
.privacy-modal-date { margin-top: 2rem; font-size: 0.8rem; color: #94A3B8; text-align: center; border-top: 1px solid var(--slate-200); padding-top: 1.25rem; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; }

  /* Logo centrado en móvil — metodología Pólizas v2 */
  .nav-inner { justify-content: flex-end; }
  .nav-brand { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-logo-img { transform-origin: center center; margin-left: 0; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-offset { transform: none; }
  .stat-offset:hover { transform: translateY(-8px); }

  .urgency-container { grid-template-columns: 1fr; gap: 3rem; }
  .urgency-images { order: -1; }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }

  .stepper { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .stepper::before { display: none; }
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .beneficio-card-offset { margin-top: 0; }

  .cta-overlap-card { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer mobile — centrado completo (metodología Pólizas v2) */
  .footer-grid { grid-template-columns: 1fr; align-items: center; gap: 3rem; text-align: center; }
  .footer-sitemap { width: 100%; flex-direction: column; align-items: center; gap: 2.5rem; }
  .footer-links { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .social-links { justify-content: center; }
  .footer-logos-row { justify-content: center; flex-wrap: wrap; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 0.75rem; }
  .footer-copy, .footer-dev-credit, .footer-legal { justify-self: center; justify-content: center; }
}

@media (max-width: 768px) {
  .hero-content { padding: 3rem 1.25rem 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide, .bento-regular { grid-column: span 1; grid-row: span 1; }
  .bento-wide { flex-direction: column; }
  .bento-reverse { flex-direction: column; }

  .stepper { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .beneficios-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 0 1.25rem 4rem; }
  .cta-overlap-card { margin-top: -40px; padding: 1.75rem 1.25rem 1.5rem; }
  .cta-form-wrap { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-sitemap { flex-direction: column; gap: 1.5rem; }
  .wa-form { width: 280px; }

  .carousel-arrow { width: 34px; height: 34px; }

  .urgency-images { display: none; }
  .urgency-container { gap: 2rem; }
}

@media (max-width: 480px) {
  /* Logo: más grande en celular (tamaño correcto confirmado) */
  .nav-logo-img {
    height: 340px;
    margin: -138px 0;
  }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-marquee-track { gap: 2rem; }
  .trust-brand { font-size: 0.8rem; }
  .br-desktop { display: none; }
  .beneficios-grid { grid-template-columns: 1fr; }
}


/* 1366x633 fold — título compacto para entrar en una pantalla */
@media (min-width: 1200px) and (max-width: 1440px) and (max-height: 720px) {
  .hero-h1 { font-size: 3rem; margin-bottom: .8rem; max-width: 1100px; }
  .hero-h1-gradient { margin-top: .3rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.6; }
  .hero-badge { margin-bottom: 1rem; }
  .hero-ctas { margin-bottom: 2rem; }
  .hero-stats { gap: 1rem; }
}
