/* ===================================================
   FOGELER SEGUROS — Light Theme
   Fondo blanco · Azules indigo + cyan · Tipografía dark
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg:       #ffffff;
  --bg-2:     #f8fafc;
  --bg-3:     #f1f5f9;
  --bg-card:  #ffffff;
  --bg-card-h:#f8fafc;

  /* Borders */
  --border:   rgba(0,0,0,0.08);
  --border-h: rgba(0,0,0,0.16);
  --border-a: rgba(99,102,241,0.4);

  /* Blues — keep vibrant */
  --indigo:   #6366f1;
  --indigo-l: #4f46e5;
  --cyan:     #06b6d4;
  --cyan-l:   #0891b2;
  --purple:   #7c3aed;

  /* Gradients */
  --grad:      linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --grad-h:    linear-gradient(135deg, #4f46e5 0%, #0891b2 100%);
  --grad-soft: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(6,182,212,0.06) 100%);

  /* Glows */
  --glow-indigo: 0 4px 24px rgba(99,102,241,0.2);
  --glow-cyan:   0 4px 24px rgba(6,182,212,0.2);

  /* Text — dark on light */
  --text:   #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;

  /* Layout */
  --max-w: 1240px;
  --ease:  cubic-bezier(.4,0,.2,1);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: var(--text-2);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 700; letter-spacing: -0.2px; }
h3 { font-size: clamp(16px, 1.8vw, 19px); font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--indigo-l);
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.text-center { text-align: center; }
.section-subtitle { max-width: 600px; color: var(--text-2); font-size: 17px; margin-top: 12px; }
.text-center .section-subtitle { margin: 12px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  z-index: 0;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--grad);
  color: #fff;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad);
  filter: blur(12px);
  opacity: 0;
  transition: opacity .25s;
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 0.5; }

.btn-outline {
  background: #fff;
  color: var(--indigo-l);
  border-color: var(--indigo);
}
.btn-outline:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }

.btn-whatsapp, .btn-wa {
  background: var(--grad);
  color: #fff;
  position: relative;
  z-index: 0;
}
.btn-whatsapp::before, .btn-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad);
  filter: blur(12px);
  opacity: 0;
  transition: opacity .25s;
  z-index: -1;
}
.btn-whatsapp:hover, .btn-wa:hover { transform: translateY(-2px); }
.btn-whatsapp:hover::before, .btn-wa:hover::before { opacity: 0.5; }

.btn-glass {
  background: rgba(99,102,241,0.06);
  color: var(--indigo-l);
  border-color: rgba(99,102,241,0.2);
}
.btn-glass:hover { background: rgba(99,102,241,0.12); transform: translateY(-2px); }

/* ── Header ──
   CRÍTICO: backdrop-filter en ::before, NO en .site-header.
   backdrop-filter en el padre atrapa los hijos position:fixed
   dentro del header (0px de alto) → menú mobile invisible. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo blanco → navy oscuro visible en nav blanco */
.nav-logo img {
  height: 42px;
  width: auto;
  /* invert: blanco→negro, luego sepia+hue da tono navy/indigo */
  filter: invert(1) sepia(1) saturate(2) hue-rotate(200deg) brightness(0.4);
}
.nav-cta { margin-left: 8px; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 7px 13px;
  color: var(--text-2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: all .2s;
  text-decoration: none;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--indigo-l); background: rgba(99,102,241,0.08); }

.has-dropdown > a::after { content: '▾'; margin-left: 3px; font-size: 10px; opacity: .6; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border-h);
  border-radius: var(--r-md);
  min-width: 220px;
  padding: 8px 6px 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 200;
  list-style: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--text-2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  border-radius: var(--r-sm);
  transition: all .2s;
  text-decoration: none;
}
.dropdown a:hover { color: var(--indigo-l); background: rgba(99,102,241,0.06); }

/* Old pages use nav-toggle/nav-menu */
.nav-toggle, .nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span, .nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* Dropdown — old class alias */
.has-drop > a::after { content: '▾'; margin-left: 3px; font-size: 10px; opacity: .6; }
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border-h);
  border-radius: var(--r-md);
  min-width: 220px;
  padding: 8px 6px 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 200;
  list-style: none;
}
.has-drop:hover .drop,
.has-drop.open .drop { display: block; }
.drop a { display: block; padding: 10px 14px; color: var(--text-2); font-size: 14px; border-radius: var(--r-sm); transition: all .2s; text-decoration: none; }
.drop a:hover { color: var(--indigo-l); background: rgba(99,102,241,0.06); }

/* ── Sections ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* Page Hero — páginas interiores */
.page-hero {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, rgba(6,182,212,0.04) 100%);
}
.page-hero h1 { color: var(--text); font-size: clamp(28px,4vw,44px); margin-bottom: 12px; }
.page-hero p { color: var(--text-2); font-size: 17px; max-width: 600px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--indigo-l); }
.breadcrumb span { opacity: .5; }

/* ── HERO (homepage) ── */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 60%, #e8f4f8 100%);
}

/* Subtle orbs */
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.o1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%); top: -150px; right: -100px; animation: orb 10s ease-in-out infinite; }
.o2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%); bottom: -150px; left: -80px; animation: orb 12s ease-in-out infinite reverse; }
.o3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%); top: 40%; left: 30%; animation: orb 8s ease-in-out infinite; }
@keyframes orb { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.04)} }

.hero-grid { display: none; } /* No grid lines on light */

.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 999px;
  padding: 6px 18px 6px 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo-l);
  margin-bottom: 24px;
}
.badge-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px rgba(99,102,241,0.4);
}
.badge-dot svg { width: 11px; height: 11px; color: #fff; }
.hero h1 { color: var(--text); margin-bottom: 18px; }
.hero p { font-size: 18px; color: var(--text-2); margin-bottom: 32px; max-width: 490px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-title { margin-bottom: 18px; }
.hero-sub { font-size: 17px; color: var(--text-2); margin-bottom: 32px; max-width: 490px; line-height: 1.65; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; }
.hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-h);
  box-shadow: 0 24px 64px rgba(99,102,241,0.12), 0 8px 24px rgba(0,0,0,0.08);
}
.hero-img img { width: 100%; height: 460px; object-fit: cover; filter: brightness(1.02) saturate(1.05); }

.hero-float {
  position: absolute;
  bottom: -16px; left: -20px;
  background: #fff;
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(99,102,241,0.15), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 3;
}
.fi { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fi svg { width: 18px; height: 18px; color: #fff; }
.ft { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); }
.fs { font-size: 11px; color: var(--text-3); }

.hero-stats { position: absolute; top: -16px; right: -16px; display: flex; flex-direction: column; gap: 8px; z-index: 3; }
.hstat { background: #fff; border: 1px solid rgba(99,102,241,0.2); border-radius: var(--r-md); padding: 10px 14px; text-align: center; box-shadow: 0 4px 16px rgba(99,102,241,0.1); min-width: 90px; }
.hstat-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.hstat-l { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── Value bar ── */
.value-bar { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.value-bar-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.val-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 32px; border-right: 1px solid var(--border); }
.val-item:last-child { border-right: none; }
.val-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.val-icon svg { width: 22px; height: 22px; color: var(--indigo-l); }
.val-text strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.val-text span { font-size: 13px; color: var(--text-2); }

/* ── Cards (general) ── */
.glass, .value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.glass:hover, .value-card:hover {
  border-color: rgba(99,102,241,0.3);
  box-shadow: 0 8px 32px rgba(99,102,241,0.1);
  transform: translateY(-3px);
}
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value-icon svg { width: 22px; height: 22px; color: var(--indigo-l); }
.value-card h3 { font-size: 17px; color: var(--text); margin-bottom: 8px; }
.value-props { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ── Services ── */
.services-grid, .svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.svc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.svc:hover {
  border-color: var(--indigo);
  box-shadow: 0 12px 40px rgba(99,102,241,0.12);
  transform: translateY(-4px);
}
.svc-icon { width: 52px; height: 52px; background: var(--grad); border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-indigo); flex-shrink: 0; }
.svc-icon svg { width: 26px; height: 26px; color: #fff; }
.svc h3 { color: var(--text); }
.svc p { font-size: 14px; flex: 1; line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--indigo-l); font-size: 14px; font-weight: 700; transition: gap .2s; }
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; }

/* ── Steps (how it works) ── */
.steps-outer { padding: 88px 0; background: linear-gradient(160deg, #f0f4ff 0%, #e8f4f8 100%); }
.steps-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; position: relative; }

.step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  transition: all .3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.step-card:hover { border-color: rgba(99,102,241,0.3); box-shadow: 0 12px 40px rgba(99,102,241,0.1); transform: translateY(-4px); }
.step-card:nth-child(even) { margin-top: 52px; }

.step-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon svg { width: 22px; height: 22px; color: var(--indigo-l); }
.step-num { position: absolute; width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #fff; box-shadow: var(--glow-indigo); }
.step-card:nth-child(odd) .step-num { bottom: -16px; right: -16px; }
.step-card:nth-child(even) .step-num { top: -16px; left: -16px; }
.step-card h3 { color: var(--text); font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; line-height: 1.7; }

/* ── Testimonials ── */
.testi-grid, .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi, .testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative; overflow: hidden;
}
.testi::before, .testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); opacity: 0; transition: opacity .25s; }
.testi:hover, .testimonial-card:hover { border-color: rgba(99,102,241,0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(99,102,241,0.08); }
.testi:hover::before, .testimonial-card:hover::before { opacity: 1; }
.stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi blockquote, .testimonial-card blockquote { font-size: 15px; color: var(--text-2); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testi-author, .testimonial-author { display: flex; align-items: center; gap: 12px; }
.av, .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 15px; flex-shrink: 0; box-shadow: var(--glow-indigo); }
.author-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--text); font-size: 14px; }
.author-label, .tc-l { color: var(--text-3); font-size: 12px; }

/* ── Insurers (homepage) ── */
.insurers-sec { padding: 64px 0; background: var(--bg-2); }
.ins-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--text-3); text-align: center; margin-bottom: 36px; }
.ins-row, .insurers-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }
.ins-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 22px;
  display: flex; align-items: center; justify-content: center;
  min-width: 110px; height: 54px;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.ins-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.3); }
.ins-card img { height: 26px; width: auto; object-fit: contain; }

/* Alias for old pages */
.insurer-logo { height: 26px; width: auto; object-fit: contain; filter: none; opacity: 1; display: block; background: #fff; border-radius: 12px; padding: 10px 16px; box-sizing: content-box; box-shadow: 0 2px 12px rgba(0,0,0,.08); border: 1px solid var(--border); transition: all .25s; }
.insurer-logo:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(99,102,241,.15); }

/* ── Plans ── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.plan:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(99,102,241,0.1); }
.plan.feat {
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, rgba(6,182,212,0.04) 100%);
  border-color: rgba(99,102,241,0.35);
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(99,102,241,0.15);
}
.plan.feat:hover { transform: scale(1.04) translateY(-4px); }
.plan-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-3); margin-bottom: 10px; font-family: 'Plus Jakarta Sans', sans-serif; }
.plan.feat .plan-tag { color: var(--indigo-l); }
.plan-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 4px; }
.plan-price span { font-size: 14px; font-weight: 500; color: var(--text-3); }
.plan-feats { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.plan-feats li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-2); }
.plan-feats li svg { width: 15px; height: 15px; color: var(--cyan-l); flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: rgba(99,102,241,0.35); box-shadow: 0 4px 16px rgba(99,102,241,0.08); }
.faq-question, .faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 15px; color: var(--text);
  gap: 14px; user-select: none; transition: color .2s;
}
.faq-question:hover, .faq-q:hover { color: var(--indigo-l); }
.faq-toggle, .faq-tog {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; color: var(--indigo-l);
  line-height: 1; transition: all .2s;
}
.faq-item.open .faq-toggle,
.faq-item.open .faq-tog { transform: rotate(45deg); background: var(--grad); color: #fff; border-color: transparent; }
.faq-answer, .faq-a { display: none; padding: 0 20px 18px; color: var(--text-2); font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-answer,
.faq-item.open .faq-a { display: block; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(99,102,241,0.3); box-shadow: 0 16px 48px rgba(99,102,241,0.1); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card-body, .blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-3); margin-bottom: 8px; }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--indigo-l); margin-bottom: 8px; }
.blog-card h3 { font-size: 16px; color: var(--text); margin-bottom: 8px; font-weight: 600; }
.blog-card p { font-size: 14px; flex: 1; margin-bottom: 16px; line-height: 1.65; }
.read-more, .blog-more, .blog-read { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--indigo-l); transition: all .2s; }
.read-more:hover, .blog-more:hover, .blog-read:hover { gap: 10px; color: var(--cyan-l); }
.read-more svg, .blog-more svg, .blog-read svg { width: 13px; height: 13px; }

/* ── CTA Banner ── */
.cta-banner, .cta-box {
  position: relative; overflow: hidden;
  padding: 72px 32px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 40%, #06b6d4 100%);
  text-align: center;
  box-shadow: 0 24px 64px rgba(99,102,241,0.25);
}
.cta-banner::before, .cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2, .cta-box h2 { color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner p, .cta-box p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-actions, .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* Button on dark CTA */
.cta-banner .btn-outline, .cta-box .btn-outline,
.cta-banner .btn-w, .cta-box .btn-w,
.cta-banner .btn-glass, .cta-box .btn-glass {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn-outline:hover, .cta-box .btn-outline:hover { background: rgba(255,255,255,0.25); }

/* ── Service detail (páginas interiores) ── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.coverage-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 11px 14px; font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: all .2s;
}
.coverage-item:hover { border-color: rgba(99,102,241,0.3); color: var(--text); }
.coverage-item svg { width: 15px; height: 15px; color: var(--cyan-l); flex-shrink: 0; }

/* ── About ── */
.about-grid, .about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image, .about-img { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 24px 64px rgba(99,102,241,0.1); }
.about-image img, .about-img img { width: 100%; height: 460px; object-fit: cover; }

/* ── Check list ── */
.check-list, .cl { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; }
.check-item, .ci { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-2); }
.check-item svg, .ci svg { width: 18px; height: 18px; color: var(--cyan-l); flex-shrink: 0; margin-top: 2px; }

/* ── Forms ── */
.form-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group, .fg { display: flex; flex-direction: column; gap: 6px; }
.form-group.full, .fg.full { grid-column: 1/-1; }
.form-group label, .fg label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea,
.fg input, .fg select, .fg textarea {
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; color: var(--text);
  transition: all .2s;
}
.fg select option { background: #fff; color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--indigo);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.form-group textarea, .fg textarea { resize: vertical; min-height: 100px; }

/* ── Post content ── */
.post-content { font-size: 16px; line-height: 1.85; color: var(--text-2); }
.post-content h2 { font-size: 22px; color: var(--text); margin: 36px 0 14px; }
.post-content h3 { font-size: 18px; color: var(--text); margin: 28px 0 10px; }
.post-content p { margin-bottom: 18px; }
.post-content ul { padding-left: 20px; margin-bottom: 20px; }
.post-content ul li { margin-bottom: 8px; list-style: disc; }
.post-content ol li { margin-bottom: 8px; }
.post-content strong { color: var(--text); }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }

/* ── Footer ── */
.site-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); max-width: 270px; line-height: 1.65; }
.footer-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.45); }
.contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,0.3); }
.contact-item a { color: rgba(255,255,255,0.45); transition: color .2s; }
.contact-item a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); transition: all .2s; }
.social-links a:hover { background: var(--grad); border-color: transparent; color: #fff; }
.social-links svg { width: 14px; height: 14px; }

/* ── WhatsApp float ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(99,102,241,0.4); z-index: 999; transition: transform .2s; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(99,102,241,0.5); }
.wa-float svg { width: 27px; height: 27px; color: #fff; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible, .reveal.on { opacity: 1; transform: none; }

/* ── Chips / section labels ── */
.chip { display: inline-flex; align-items: center; gap: 7px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--indigo-l); background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.2); border-radius: 999px; padding: 5px 14px; margin-bottom: 18px; }

/* Gradient text alias */
.gt { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }

/* ── Responsive ── */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .service-detail-grid, .about-grid, .about-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan.feat { transform: none; } .plan.feat:hover { transform: translateY(-4px); }
  .steps-wrap { grid-template-columns: repeat(2,1fr); }
  .step-card:nth-child(even) { margin-top: 0; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:768px) {
  .nav-menu, .nav-links, .nav-cta { display: none; }
  .nav-toggle, .nav-ham { display: flex; }
  .nav-menu.open, .nav-links.open {
    display: flex !important; flex-direction: column;
    position: fixed; inset: 68px 0 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 20px; gap: 4px; z-index: 999;
    border-top: 1px solid var(--border); overflow-y: auto;
  }
  .nav-menu.open > li > a, .nav-links.open > li > a { font-size: 18px; padding: 14px; color: var(--text); }
  .dropdown, .drop { position: static; box-shadow: none; background: var(--bg-2); border: 1px solid var(--border); margin-top: 4px; }
  .value-grid, .value-props, .testi-grid, .testimonials-grid, .blog-grid, .plans-grid { grid-template-columns: 1fr; }
  .value-bar-inner { grid-template-columns: 1fr; }
  .val-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .val-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-wrap { grid-template-columns: 1fr; }
  .step-card:nth-child(even) { margin-top: 0; }
  .coverage-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr !important; }
  .post-layout aside { display: none; }
  .hero { padding: 50px 0 40px; }
  .section { padding: 60px 0; }
  .steps-outer { padding: 60px 0; }
}
