/* ============================================================
   CAMARY — landing.css
   Estilos compartidos para cch-naucalpan.html y verano.html
   ============================================================ */

/* Fuentes — iguales que style.css (Glancyr local + Roboto) */
@font-face {
  font-family: 'Glancyr';
  src: url('../assets/fonts/Glancyr-Medium.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Glancyr';
  src: url('../assets/fonts/Glancyr-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ── Variables (heredadas del design system de style.css) ── */
:root {
  --gold:       #f5c518;
  --gold-dark:  #d4a10a;
  --dark:       #0d0d0d;
  --dark-2:     #141414;
  --dark-3:     #1c1c1c;
  --dark-4:     #252525;
  --border:     rgba(255,255,255,.08);
  --text:       #e8e8e8;
  --text-muted: #a0a0a0; /* WCAG AA: ~5.5:1 sobre #1c1c1c */
  --white:      #fff;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,.45);
  --transition: .3s ease;
}

/* ── Reset base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.lp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* svh = excluye barra del browser en móvil */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.lp-hero:hover .lp-hero-bg { transform: scale(1); }
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 60%, rgba(245,197,24,.12) 100%);
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 140px 24px 80px;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.35);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeDown .6s ease both;
}
.lp-hero-title {
  font-family: 'Glancyr', 'Roboto', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,1,48,.5);
  animation: fadeDown .7s .1s ease both;
}
.lp-hero-title .accent { color: var(--gold); }
.lp-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeDown .7s .2s ease both;
}
.lp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .7s .3s ease both;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 15px 32px;
  border-radius: 8px;
  border: none; cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,.35); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ── Urgency bar ── */
.lp-urgency-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #000;
  text-align: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  position: relative;
  z-index: 999;
}
.lp-urgency-bar span { margin: 0 12px; }

/* ══════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════ */
.lp-section {
  padding: 96px 0;
}
.lp-section--alt {
  background: var(--dark-2);
}
.lp-section--dark3 {
  background: var(--dark-3);
}
.lp-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.lp-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.lp-section-title {
  font-family: 'Glancyr', 'Roboto', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.lp-section-title .accent { color: var(--gold); }
.lp-section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.lp-section-header { margin-bottom: 56px; }
#faq .lp-section-header { margin-bottom: 32px; }
.lp-section-header--center { text-align: center; }
.lp-section-header--center .lp-eyebrow { justify-content: center; }
.lp-section-header--center .lp-section-desc { margin: 0 auto; }

/* ══════════════════════════════════════════════
   VALUE PROPS / PILLARS
══════════════════════════════════════════════ */
.lp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.lp-pillar-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.lp-pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.lp-pillar-card:hover { border-color: rgba(245,197,24,.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.lp-pillar-card:hover::before { opacity: 1; }
.lp-pillar-icon {
  width: 64px; height: 64px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.lp-pillar-card:hover .lp-pillar-icon { background: rgba(245,197,24,.2); }
.lp-pillar-title {
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.lp-pillar-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════ */
.lp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.lp-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.lp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(245,197,24,.25); }
.lp-card-icon-wrap {
  background: linear-gradient(135deg, rgba(245,197,24,.12), rgba(245,197,24,.04));
  border-bottom: 1px solid var(--border);
  padding: 32px 24px 24px;
  text-align: center;
  font-size: 2.8rem;
}
.lp-card-body { padding: 24px; flex: 1; }
.lp-card-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.lp-card-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════ */
.lp-faq-list { max-width: 760px; margin: 0 auto; }
.lp-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--dark-3);
  transition: border-color var(--transition), background var(--transition);
}
.lp-faq-item.open { border-color: rgba(245,197,24,.3); background: rgba(245,197,24,.03); }
.lp-faq-trigger {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: none; border: none; cursor: pointer;
  color: var(--white);
  font-family: inherit;
  font-size: .97rem; font-weight: 600;
  gap: 16px;
}
.lp-faq-trigger:hover { color: var(--gold); }
.lp-faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: transform var(--transition), background var(--transition);
  font-style: normal;
}
.lp-faq-item.open .lp-faq-icon { transform: rotate(90deg); background: var(--gold); color: #000; }
.lp-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 20px;
  font-size: .92rem; color: var(--text-muted); line-height: 1.7;
}
.lp-faq-item.open .lp-faq-answer { max-height: 600px; padding: 0 20px 16px; }

.lp-faq-cta { text-align: center; margin-top: 40px; }
.lp-faq-cta p { margin-bottom: 16px; color: var(--text-muted); font-size: 1.05rem; }

/* ══════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════ */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.lp-steps-grid::before {
  content: '';
  position: absolute;
  top: 86px; /* alineado al centro del icono */
  left: calc(16.66% + 30px);
  right: calc(16.66% + 30px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(245,197,24,.15));
  pointer-events: none;
}
@media (max-width: 640px) {
  .lp-steps-grid::before { display: none; }
}
.lp-step {
  text-align: center;
  position: relative;
}
.lp-step-number {
  font-size: 3.5rem; font-weight: 900;
  color: rgba(245,197,24,.12);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.lp-step-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(245,197,24,.25);
}
.lp-step-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.lp-step-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   COVERAGE CHIPS
══════════════════════════════════════════════ */
.lp-coverage-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.lp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .82rem; font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.lp-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,197,24,.06); }
.lp-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FLEET CARDS
══════════════════════════════════════════════ */
.lp-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.lp-fleet-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.lp-fleet-card:hover { border-color: rgba(245,197,24,.3); transform: translateY(-4px); }
.lp-fleet-emoji { font-size: 3rem; margin-bottom: 16px; }
.lp-fleet-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.lp-fleet-seats {
  display: inline-block;
  background: rgba(245,197,24,.12);
  color: var(--gold);
  font-size: .8rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px;
}
.lp-fleet-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   QUOTE FORM
══════════════════════════════════════════════ */
.lp-quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .lp-quote-wrap { grid-template-columns: 1fr; gap: 40px; } }
.lp-quote-info-title { font-family: 'Glancyr', 'Roboto', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.lp-quote-info-desc { font-size: .95rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.lp-quote-features { display: flex; flex-direction: column; gap: 12px; }
.lp-quote-feature {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(93, 166, 255, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  transition: background .2s, border-color .2s;
}
.lp-quote-feature:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(93, 166, 255, 0.4);
}
.lp-quote-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.lp-quote-feature-text { font-size: .9rem; color: var(--text-muted); }
.lp-quote-feature-text strong { color: var(--white); display: block; font-size: .95rem; }

/* Form */
.lp-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.lp-form-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .lp-form-row { grid-template-columns: 1fr; } }
.lp-form-group { margin-bottom: 16px; }
.lp-form-group--full { grid-column: 1 / -1; }
.lp-form-group label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
  width: 100%; background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: inherit; font-size: .93rem;
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition);
}
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus { border-color: var(--gold); }
.lp-form-group select { cursor: pointer; }
.lp-form-group textarea { resize: vertical; min-height: 90px; }
.lp-form-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: #000;
  font-family: inherit; font-size: .95rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 16px 24px;
  border: none; border-radius: 8px; cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.lp-form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,.35); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lp-tcard {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.lp-tcard:hover { border-color: rgba(245,197,24,.2); transform: translateY(-3px); }
.lp-tcard-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.lp-tcard-stars svg { fill: var(--gold); }
.lp-tcard-quote { font-size: .93rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.lp-tcard-author { display: flex; align-items: center; gap: 12px; }
.lp-tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: #000; flex-shrink: 0;
}
.lp-tcard-name { font-size: .92rem; font-weight: 700; color: var(--white); }
.lp-tcard-role { font-size: .85rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.lp-trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.lp-trust-items {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px;
}
.lp-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--text-muted); font-weight: 500;
}
.lp-trust-item .icon { font-size: 1.3rem; }
.lp-trust-item strong { color: var(--white); }

/* ══════════════════════════════════════════════
   STICKY CTA (mobile)
══════════════════════════════════════════════ */
.lp-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 998;
  gap: 12px;
}
@media (max-width: 640px) {
  .lp-sticky-cta { display: flex; }
  .lp-sticky-cta .btn-gold { flex: 1; justify-content: center; }
}

/* ══════════════════════════════════════════════
   HEADER / NAV (landing-specific override)
══════════════════════════════════════════════ */
.lp-nav {
  position: sticky; top: 0; z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.lp-nav.scrolled {
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.lp-nav-logo img { height: 36px; }
.lp-nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--text-muted);
  transition: color var(--transition);
}
.lp-nav-back:hover { color: var(--gold); }
.lp-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
}

/* ══════════════════════════════════════════════
   FOOTER (landing mini footer)
══════════════════════════════════════════════ */
.lp-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.lp-footer-links {
  display: flex; gap: 24px; justify-content: center;
  margin-bottom: 12px; flex-wrap: wrap;
}
.lp-footer-links a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); }
.lp-footer-links a:hover { color: var(--gold); }
.lp-footer-copy { font-size: .85rem; color: #555; }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp .7s ease both; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .lp-section { padding: 72px 0; }
  .lp-hero-content { padding: 120px 24px 60px; }
}
@media (max-width: 768px) {
  /* Fix #2: background-attachment:fixed rompe en iOS/Android */
  .lp-hero-bg { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .lp-section { padding: 56px 0; }
  .lp-form { padding: 24px; }
  .lp-hero-ctas { flex-direction: column; align-items: center; }

  /* Fix móvil #1: subtítulo alineado a la izquierda */
  .lp-hero-subtitle,
  body.cch-theme .lp-hero-eyebrow-sub {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  /* Fix móvil #2: ocultar eyebrow-sub (el badge ya lo comunica) */
  body.cch-theme .lp-hero-eyebrow-sub {
    display: none;
  }

  /* Fix móvil #3: padding-bottom en hero-content para no quedar bajo barra navegador */
  .lp-hero-content {
    padding-bottom: 80px;
  }

  /* Fix móvil #4: ocultar urgency bar del nav en móvil (muy larga para caber) */
  body.cch-theme .lp-nav-urgency {
    display: none;
  }

  /* Fix móvil #5: subir el botón flotante de WhatsApp para no tapar CTAs */
  .whatsapp-container {
    bottom: 90px !important;
  }

  /* Fix móvil #6: ocultar btn "COTIZAR POR WHATSAPP" del hero (ya existe el flotante) */
  body.cch-theme .lp-hero-ctas .btn-gold {
    display: none;
  }

  /* Fix móvil #7: trust bar — pixel-perfect CSS del usuario */
  body.cch-theme .lp-trust-desktop { display: none; }

  /* ── Contenedor: background idéntico al .features del snippet ── */
  body.cch-theme .lp-trust-bar {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    background:
      radial-gradient(circle at top left,    rgba(39,95,255,.25) 0%, transparent 35%),
      radial-gradient(circle at bottom right, rgba(0,174,255,.18) 0%, transparent 30%),
      linear-gradient(180deg, #071244 0%, #081032 100%);
    border-top: 1px solid rgba(93,166,255,0.06);
    border-bottom: 1px solid rgba(93,166,255,0.06);
  }

  /* ── Blobs difusas de luz (bg-glow) ── */
  body.cch-theme .lp-trust-bar::before,
  body.cch-theme .lp-trust-bar::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
  }
  /* glow-1: azul brillante arriba-izquierda */
  body.cch-theme .lp-trust-bar::before {
    width: 220px; height: 220px;
    background: #1B49FF;
    top: -100px; left: -60px;
    opacity: .18;
  }
  /* glow-2: celeste abajo-derecha */
  body.cch-theme .lp-trust-bar::after {
    width: 180px; height: 180px;
    background: #00B7FF;
    bottom: -60px; right: -40px;
    opacity: .12;
  }

  body.cch-theme .lp-trust-bar .lp-container {
    position: relative;
    z-index: 1;
  }

  /* ── Header móvil ── */
  body.cch-theme .lp-trust-mobile-header {
    display: block;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 4px;
  }
  body.cch-theme .lp-trust-mobile-header h2 {
    font-family: Inter, sans-serif;
    font-size: 1.55rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  body.cch-theme .lp-trust-mobile-header h2 .accent {
    color: #FFC400;
  }
  body.cch-theme .lp-trust-mobile-header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,.55);
    line-height: 1.4;
    margin: 0;
  }

  /* ── Lista ── */
  body.cch-theme .lp-trust-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ── .feature-card ── */
  body.cch-theme .lp-trust-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    min-height: 92px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
      0 10px 30px rgba(0,0,0,.25),
      inset 0 1px 0 rgba(255,255,255,.04);
    width: 100%;
    box-sizing: border-box;
    transition: .3s ease;
    overflow: visible;
  }
  body.cch-theme .lp-trust-item:hover {
    transform: translateY(-2px);
    border: 1px solid rgba(255,196,0,.18);
    box-shadow:
      0 15px 40px rgba(0,0,0,.35),
      0 0 30px rgba(255,196,0,.08);
  }
  /* Sin pseudo-elemento extra — la card ya tiene su gradiente interno */
  body.cch-theme .lp-trust-item::before { display: none; }

  body.cch-theme .lp-trust-item .icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  /* ── .icon-box ── */
  body.cch-theme .lp-trust-item .icon-box {
    flex-shrink: 0;
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
      0 0 25px rgba(255,196,0,.12),
      inset 0 1px 0 rgba(255,255,255,.08);
    margin: 0;
  }
  body.cch-theme .lp-trust-item .icon-box svg {
    stroke: #FFC400;
    width: 24px; height: 24px;
    filter: drop-shadow(0 0 8px rgba(255,196,0,.55));
  }

  /* ── .feature-content ── */
  body.cch-theme .lp-trust-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  body.cch-theme .lp-trust-mobile {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  body.cch-theme .lp-trust-mobile strong {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.4px;
  }
  body.cch-theme .lp-trust-mobile span {
    font-size: 14px;
    color: rgba(255,255,255,.72);
    line-height: 1.4;
    font-weight: 400;
  }

  /* ── .arrow ── */
  body.cch-theme .lp-trust-chevron {
    display: flex;
    flex-shrink: 0;
    color: rgba(255,255,255,.45);
    font-size: 20px;
    align-items: center;
    margin-left: 4px;
    position: relative;
    z-index: 1;
  }

  /* Fix móvil #8: alinear a la izquierda textos descriptivos largos */
  .lp-section-header--center .lp-section-desc {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  /* Fix móvil #9: cards al 100% de ancho */
  body.cch-theme .lp-trust-items {
    flex-direction: column !important;
    flex-wrap: wrap !important;
    overflow-x: visible !important;
  }
  body.cch-theme .lp-trust-item {
    flex: 1 1 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ── Fix #4: scroll-margin para nav fijo ── */
section[id], div[id] {
  scroll-margin-top: 80px;
}

/* ── Fix #9: focus-visible para teclado ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ── Fix #10: prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── CCH Hero background ── */
.lp-hero-bg--cch { background-image: url('../assets/images/SerEsco6.jpeg'); }

/* ── Coverage grid spacing ── */
.lp-coverage-grid { margin-top: 32px; }

/* ── Coverage CTA wrapper ── */
.lp-coverage-cta { text-align: center; margin-top: 32px; }

/* ── Small nav button modifier ── */
.btn-gold--sm { padding: 10px 20px; font-size: .82rem; }

/* ── Verano Hero background ── */
.lp-hero-bg--verano { background-image: url('../assets/images/SerTuri.png'); }

/* ── Verano hero overlay (warm summer gradient) ── */
.lp-hero-overlay--summer {
  background: linear-gradient(160deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.50) 60%, rgba(255,160,0,.10) 100%);
}

/* ══════════════════════════════════════════════
   TEMA CCH NAUCALPAN — Fondo blanco, marca CAMARY
   Tokens idénticos a index.html (style.css)
══════════════════════════════════════════════ */
body.cch-theme {
  --dark:      #FFFFFF;
  --dark-2:    #F0F4FF;
  --dark-3:    #FFFFFF;
  --dark-4:    #E8EDF8;
  --border:    rgba(0,1,48,.08);
  --gold:      #194BC8;
  --gold-dark: #000130;
  --text:      #000130;
  --text-muted: rgba(0,1,48,.60);
  --white:     #000130;
  --radius:    15px;
  --radius-lg: 20px;
  background: #fff;
  color: #000130;
}

/* NAV — igual que header.scrolled de index */
body.cch-theme .lp-nav.scrolled {
  background: linear-gradient(90deg, #194BC8 0%, #000130 100%);
  box-shadow: 0 4px 15px rgba(0,1,48,.4);
}
body.cch-theme .lp-nav-back { color: rgba(255,255,255,.8); }
body.cch-theme .lp-nav-back:hover { color: #fff; }

/* Urgency bar */
body.cch-theme .lp-urgency-bar {
  background: #000130;
  color: #fff;
}

/* Hero overlay */
body.cch-theme .lp-hero-overlay {
  background: linear-gradient(135deg, rgba(0,1,48,.82) 0%, rgba(0,1,48,.38) 100%);
}
body.cch-theme .lp-hero-badge {
  background: rgba(93,166,255,.18);
  border-color: rgba(93,166,255,.45);
  color: #5DA6FF;
}
body.cch-theme .lp-hero-title { color: #fff; text-shadow: 2px 2px 8px rgba(0,1,48,.5); }
body.cch-theme .lp-hero-title .accent { color: #5DA6FF; }
body.cch-theme .lp-hero-subtitle { color: rgba(255,255,255,.88); }

/* BOTONES — pill igual que .btn-primary de index */
body.cch-theme .btn-gold,
body.cch-theme .btn-gold--sm {
  background: #194BC8;
  color: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(25,75,200,.30);
}
body.cch-theme .btn-gold:hover,
body.cch-theme .btn-gold--sm:hover {
  background: #000130;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25,75,200,.50);
}
body.cch-theme .btn-outline-white {
  border-color: rgba(255,255,255,.55);
  border-radius: 25px;
  color: #fff;
}
body.cch-theme .btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ── Trust bar desktop — diseño limpio blanco ── */
body.cch-theme .lp-trust-bar {
  background: #ffffff;
  border-top: 1px solid rgba(0,1,48,.07);
  border-bottom: 1px solid rgba(0,1,48,.07);
  padding: 20px 0;
  box-shadow: 0 2px 16px rgba(0,1,48,.06);
}
body.cch-theme .lp-trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 20px;
}
body.cch-theme .lp-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F5F7FF;
  border: 1px solid rgba(25,75,200,.09);
  border-radius: 16px;
  padding: 14px 20px;
  min-width: 180px;
  flex: 1 1 auto;
  max-width: 230px;
  transition: box-shadow .25s, transform .25s;
}
body.cch-theme .lp-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25,75,200,.12);
}
body.cch-theme .lp-trust-item .icon-box {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(25,75,200,.08);
  border: 1px solid rgba(25,75,200,.12);
  display: flex; align-items: center; justify-content: center;
}
body.cch-theme .lp-trust-item .icon-box svg {
  stroke: #194BC8;
  width: 22px; height: 22px;
}
body.cch-theme .lp-trust-text > div { display: block; }
body.cch-theme .lp-trust-desktop {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.cch-theme .lp-trust-desktop strong {
  font-size: .9rem;
  font-weight: 700;
  color: #000130;
  letter-spacing: -.2px;
  line-height: 1.2;
}
body.cch-theme .lp-trust-desktop em {
  font-style: normal;
  font-size: .78rem;
  color: rgba(0,1,48,.55);
  line-height: 1.3;
}

body.cch-theme .lp-trust-desktop em { display: none; }

/* Desktop visibility for Trust Bar */
body.cch-theme .lp-trust-desktop { display: flex !important; }
body.cch-theme .lp-trust-mobile,
body.cch-theme .lp-trust-mobile-header,
body.cch-theme .lp-trust-chevron { display: none !important; }
body.cch-theme .lp-trust-items {
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  gap: 12px;
}
body.cch-theme .lp-trust-item {
  flex: 0 0 auto;
  min-width: 170px;
  max-width: 200px;
}

/* Sections */
body.cch-theme .lp-section        { background: #fff; }
body.cch-theme .lp-section--alt   { background: #F0F4FF; }
body.cch-theme .lp-section--dark3 { background: #000130; }

/* ══ Sección Cobertura CCH Reacomodada ══ */
body.cch-theme .lp-cobertura-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
body.cch-theme .lp-cobertura-card {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 30, 100, 0.05);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 74, 173, 0.05);
  align-items: stretch;
}
body.cch-theme .lp-cobertura-map-side {
  flex: 1;
  padding: 40px;
  background: #fdfdfd;
  border-right: 1px solid rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.cch-theme .lp-cobertura-map-wrapper {
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
}
body.cch-theme .lp-cobertura-map-img {
  width: 100%;
  height: auto;
  display: block;
}
body.cch-theme .lp-cobertura-text-side {
  flex: 1;
  padding: 60px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body.cch-theme .lp-cobertura-dots-pattern {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#004AAD 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.15;
  pointer-events: none;
}
body.cch-theme .lp-cobertura-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #004AAD;
  line-height: 1.2;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}
body.cch-theme .lp-cobertura-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 320px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
body.cch-theme .lp-cobertura-van-wrapper {
  position: relative;
  width: 120%;
  margin-left: -10%;
  margin-top: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
body.cch-theme .lp-cobertura-circle-bg {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 90%;
  padding-bottom: 90%;
  background: #EEF2FF;
  border-radius: 50%;
  z-index: 0;
}
body.cch-theme .lp-cobertura-van-img {
  position: relative;
  width: 95%;
  height: auto;
  z-index: 1;
  display: block;
  transform: translateY(10px);
}
/* Responsive móvil */
@media (max-width: 992px) {
  body.cch-theme .lp-cobertura-card {
    flex-direction: column;
  }
  body.cch-theme .lp-cobertura-map-side {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding: 30px 20px;
  }
  body.cch-theme .lp-cobertura-text-side {
    padding: 40px 20px 0 20px;
    align-items: center;
    text-align: center;
  }
  body.cch-theme .lp-cobertura-van-wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  body.cch-theme .lp-cobertura-circle-bg {
    width: 100%;
    padding-bottom: 100%;
    left: 0;
    top: 5%;
  }
}




/* ══ Sección Comunicación — Split Layout ══ */
body.cch-theme .lp-comms-section {
  padding: 80px 0;
}
body.cch-theme .lp-comms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Columna visual: imagen del celular */
body.cch-theme .lp-comms-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.cch-theme .lp-comms-phone-img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}
/* Columna de contenido */
body.cch-theme .lp-comms-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #000130;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 12px 0 16px;
}
body.cch-theme .lp-comms-title .accent { color: #194BC8; }
body.cch-theme .lp-comms-desc {
  font-size: 1rem;
  color: rgba(0,1,48,.6);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}
/* 4 cards en grid 2x2 */
body.cch-theme .lp-comms-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.cch-theme .lp-comms-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(25,75,200,.09);
  border-radius: 16px;
  padding: 20px 18px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
body.cch-theme .lp-comms-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: #194BC8;
  border-radius: 2px;
  opacity: 0.5;
}
body.cch-theme .lp-comms-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,75,200,.1);
}
body.cch-theme .lp-comms-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(25,75,200,.07);
  border: 1px solid rgba(25,75,200,.12);
  display: flex; align-items: center; justify-content: center;
}
body.cch-theme .lp-comms-card-icon svg { stroke: #194BC8; }
body.cch-theme .lp-comms-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #000130;
  margin: 0 0 4px;
}
body.cch-theme .lp-comms-card p {
  font-size: .82rem;
  color: rgba(0,1,48,.58);
  line-height: 1.45;
  margin: 0;
}
/* Responsive móvil */
@media (max-width: 768px) {
  body.cch-theme .lp-comms-section {
    padding: 48px 0;
  }
  body.cch-theme .lp-comms-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Imagen al final (o se puede ocultar) */
  body.cch-theme .lp-comms-visual {
    display: none;
  }
  body.cch-theme .lp-comms-content {
    order: 1;
  }
  body.cch-theme .lp-comms-title {
    font-size: 1.7rem;
  }
  body.cch-theme .lp-comms-cards {
    grid-template-columns: 1fr;
  }
}


/* Eyebrows */
body.cch-theme .lp-eyebrow         { color: #194BC8; }
body.cch-theme .lp-eyebrow::before { background: #194BC8; }

/* Títulos de sección */
body.cch-theme .lp-section-title         { color: #000130; }
body.cch-theme .lp-section-title .accent { color: #194BC8; }
body.cch-theme .lp-section-desc          { color: rgba(0,1,48,.65); }
body.cch-theme .lp-quote-info-title      { color: #000130; }
body.cch-theme .lp-quote-info-desc       { color: rgba(0,1,48,.65); }

/* Pillar cards */
body.cch-theme .lp-pillar-card { background:#fff; border-color:rgba(0,1,48,.08); box-shadow:0 5px 20px rgba(0,1,48,.07); }
body.cch-theme .lp-pillar-card:hover { border-color:rgba(25,75,200,.30); box-shadow:0 10px 30px rgba(0,1,48,.12); }
body.cch-theme .lp-pillar-card::before { background: linear-gradient(90deg, #194BC8, transparent); }
body.cch-theme .lp-pillar-icon { background:rgba(25,75,200,.10); border-color:rgba(25,75,200,.20); }
body.cch-theme .lp-pillar-card:hover .lp-pillar-icon { background:rgba(25,75,200,.18); }
body.cch-theme .lp-pillar-title { color:#000130; }
body.cch-theme .lp-pillar-desc  { color:rgba(0,1,48,.65); }

/* Steps — círculos azules como sitio principal */
body.cch-theme .lp-step-number {
  /* Convertir el número fantasma en un círculo sólido azul */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #194BC8;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 6px 24px rgba(25,75,200,.35);
  border: 4px solid #f0f4ff;
  line-height: 1;
  position: relative;
  z-index: 2;
}
body.cch-theme .lp-step-title  { color: #000130; }
body.cch-theme .lp-step-desc   { color: rgba(0,1,48,.65); }
body.cch-theme .lp-step-icon   { background: linear-gradient(135deg, #194BC8, #000130); box-shadow: 0 8px 24px rgba(25,75,200,.30); }
/* Línea alineada al centro de los círculos (64px/2 = 32px desde arriba del step) */
body.cch-theme .lp-steps-grid::before {
  background: linear-gradient(90deg, #194BC8, rgba(25,75,200,.3));
  top: 32px;
  height: 3px;
  border-radius: 2px;
}

/* Coverage chips */
body.cch-theme .lp-chip       { background:#fff; border-color:rgba(0,1,48,.12); color:rgba(0,1,48,.70); }
body.cch-theme .lp-chip:hover { border-color:#194BC8; color:#194BC8; background:rgba(25,75,200,.06); }
body.cch-theme .lp-chip .dot  { background:#194BC8; }

/* FAQ (sobre fondo navy dark3) */
body.cch-theme .lp-faq-item { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.10); }
body.cch-theme .lp-faq-item.open { border-color:#5DA6FF; background:rgba(93,166,255,.05); }
body.cch-theme .lp-faq-trigger { color:#fff; }
body.cch-theme .lp-faq-trigger:hover { color:#5DA6FF; }
body.cch-theme .lp-faq-icon { background:rgba(93,166,255,.12); border-color:rgba(93,166,255,.30); color:#5DA6FF; }
body.cch-theme .lp-faq-item.open .lp-faq-icon { background:#5DA6FF; color:#000130; border-color:#5DA6FF; }
body.cch-theme .lp-faq-answer { color:rgba(255,255,255,.75); }
body.cch-theme .lp-faq-cta p { color:rgba(255,255,255,.85); }
body.cch-theme .lp-section--dark3 .lp-section-title { color:#fff; }
body.cch-theme .lp-section--dark3 .lp-section-title .accent { color:#5DA6FF; }
body.cch-theme .lp-section--dark3 .lp-eyebrow { color:#5DA6FF; }
body.cch-theme .lp-section--dark3 .lp-eyebrow::before { background:#5DA6FF; }

/* Formulario */
body.cch-theme .lp-form { background:#fff; border-color:rgba(0,1,48,.08); box-shadow:0 10px 30px rgba(0,1,48,.10); }
body.cch-theme .lp-form-title { color:#000130; }
body.cch-theme .lp-form-group label { color:rgba(0,1,48,.55); }
body.cch-theme .lp-form-group input,
body.cch-theme .lp-form-group select,
body.cch-theme .lp-form-group textarea { background:#F8F9FA; border-color:rgba(0,1,48,.12); color:#000130; }
body.cch-theme .lp-form-group input:focus,
body.cch-theme .lp-form-group select:focus { border-color:#194BC8; background:#fff; }
body.cch-theme .lp-form-submit { background:#194BC8; color:#fff; border-radius:25px; box-shadow:0 5px 20px rgba(25,75,200,.30); }
body.cch-theme .lp-form-submit:hover { background:#000130; box-shadow:0 8px 24px rgba(25,75,200,.50); }

/* Quote features */
body.cch-theme .lp-quote-feature-icon { background:rgba(25,75,200,.10); border-color:rgba(25,75,200,.20); }
body.cch-theme .lp-quote-feature-text { color:rgba(0,1,48,.65); }
body.cch-theme .lp-quote-feature-text strong { color:#000130; }

/* Testimonials */
body.cch-theme .lp-tcard { background:#fff; border-color:rgba(0,1,48,.08); box-shadow:0 5px 20px rgba(0,1,48,.06); }
body.cch-theme .lp-tcard:hover { border-color:rgba(25,75,200,.25); box-shadow:0 10px 30px rgba(0,1,48,.10); }
body.cch-theme .lp-tcard-quote  { color:rgba(0,1,48,.70); }
body.cch-theme .lp-tcard-name   { color:#000130; }
body.cch-theme .lp-tcard-role   { color:rgba(0,1,48,.55); }
body.cch-theme .lp-tcard-stars svg { fill:#194BC8; }
body.cch-theme .lp-tcard-avatar { background:linear-gradient(135deg,#194BC8,#000130); color:#fff; }

/* Sticky CTA */
body.cch-theme .lp-sticky-cta { background:#fff; border-color:rgba(0,1,48,.10); }

/* Footer */
body.cch-theme .lp-footer { background:#000130; border-color:transparent; }
body.cch-theme .lp-footer-links a { color:rgba(255,255,255,.65); }
body.cch-theme .lp-footer-links a:hover { color:#5DA6FF; }
body.cch-theme .lp-footer-copy { color:rgba(255,255,255,.35); }

/* Focus visible */
body.cch-theme :focus-visible { outline-color:#194BC8; }

/* ── Fix: VER DETALLES visible sobre hero oscuro ── */
body.cch-theme .lp-btn-detalles {
  border: 2px solid rgba(255,255,255,.70);
  color: #fff;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  border-radius: 8px; /* mismo radio que btn-gold */
}
body.cch-theme .lp-btn-detalles:hover {
  border-color: #fff;
  background: rgba(255,255,255,.20);
  transform: translateY(-2px);
}

/* ── Sticky CTA flotante: siempre visible en mobile ── */
body.cch-theme .lp-sticky-cta {
  background: #fff;
  border-top: 1px solid rgba(0,1,48,.10);
  box-shadow: 0 -4px 20px rgba(0,1,48,.12);
}

/* Cobertura: máx altura con scroll si son muchas colonias */
.lp-coverage-grid {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.lp-coverage-grid::-webkit-scrollbar { width: 4px; }
.lp-coverage-grid::-webkit-scrollbar-track { background: transparent; }
.lp-coverage-grid::-webkit-scrollbar-thumb { background: rgba(25,75,200,.25); border-radius: 4px; }

/* ══ NAV CCH: estructura clara en dos capas ══ */

/* Urgency bar: franja delgada arriba, bien legible */
body.cch-theme .lp-urgency-bar {
  background: #000130;
  color: #fff;
  font-size: .80rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 1001;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.cch-theme .lp-urgency-bar span {
  color: #ffd97a;
  font-weight: 700;
}

/* Nav: siempre opaco cuando scrolled, y separado del urgency bar */
body.cch-theme .lp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #194BC8 0%, #000130 100%);
  box-shadow: 0 4px 15px rgba(0,1,48,.35);
  padding: 0;
}
/* Antes del scroll: mismo gradiente (la hero está abajo, no confunde) */
body.cch-theme .lp-nav:not(.scrolled) {
  background: linear-gradient(90deg, #194BC8 0%, #000130 100%);
}

/* Inner: logo a la izquierda, link sitio principal en el centro, botón a la derecha */
body.cch-theme .lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

/* Logo */
body.cch-theme .lp-nav-logo img {
  height: 42px;
  width: auto;
}

/* Link "← Sitio principal" */
body.cch-theme .lp-nav-back {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
body.cch-theme .lp-nav-back::before {
  content: '←';
  font-size: 1rem;
}
body.cch-theme .lp-nav-back:hover {
  color: #fff;
}

/* Botón CTA nav */
body.cch-theme .lp-nav .btn-gold--sm {
  background: #fff;
  color: #194BC8;
  border-radius: 25px;
  font-weight: 700;
  font-size: .82rem;
  padding: 9px 20px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  transition: all .2s;
}
body.cch-theme .lp-nav .btn-gold--sm:hover {
  background: #194BC8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(25,75,200,.40);
}

@media (max-width: 480px) {
  body.cch-theme .lp-nav-back { display: none; }
  body.cch-theme .lp-urgency-bar { font-size: .72rem; }
}

/* ══ Botón flotante "Cotizar ahora" — CCH ══ */
.lp-float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #194BC8;
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: 'Glancyr', 'Roboto', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(25,75,200,.45), 0 2px 8px rgba(0,0,0,.20);
  transition: transform .25s ease, box-shadow .25s ease, background .2s;

  /* Oculto al inicio, aparece con JS tras el scroll */
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.95);
}

.lp-float-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lp-float-cta:hover {
  background: #000130;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(25,75,200,.55), 0 4px 12px rgba(0,0,0,.25);
}

/* En mobile: solo el ícono (como el de WhatsApp) */
@media (max-width: 540px) {
  .lp-float-cta span { display: none; }
  .lp-float-cta {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    bottom: 22px;
    right: 22px;
  }
}

/* Halo animado (igual que el de WhatsApp) */
.lp-float-cta::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  background: rgba(25,75,200,.18);
  animation: floatPulse 2.4s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 540px) {
  .lp-float-cta::before { border-radius: 50%; }
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.18); opacity: 0; }
}

/* ── Ocultar sticky bar, solo usar botón flotante ── */
body.cch-theme .lp-sticky-cta { display: none !important; }

/* ── Coverage chips: sin scroll, fluido ── */
body.cch-theme .lp-coverage-grid {
  max-height: none;
  overflow-y: visible;
}

/* ── icon-box en landing CCH (igual que style.css) ── */
body.cch-theme .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(25,75,200,.10);
  border-radius: 8px;
  color: #194BC8;
  flex-shrink: 0;
}
body.cch-theme .icon-box svg {
  stroke: #194BC8;
}
body.cch-theme .lp-pillar-icon .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(25,75,200,.10);
}
/* icon-box desktop ya se maneja arriba en el bloque principal */

/* ── Input typeahead colonia ── */
body.cch-theme #colonia {
  width: 100%;
  padding: 12px 16px;
  background: #F8F9FA;
  border: 1.5px solid rgba(0,1,48,.12);
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: .95rem;
  color: #000130;
  transition: border-color .2s;
  outline: none;
}
body.cch-theme #colonia:focus {
  border-color: #194BC8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25,75,200,.10);
}

/* ══ Nav header — estilo sitio principal ══ */
body.cch-theme .lp-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #000130 0%, #0a1a5c 60%, #194BC8 100%);
  border-bottom: 3px solid #f5c518;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.cch-theme .lp-nav.scrolled {
  background: linear-gradient(135deg, rgba(0, 1, 48, 0.8) 0%, rgba(10, 26, 92, 0.8) 60%, rgba(25, 75, 200, 0.8) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 3px solid #f5c518;
  box-shadow: 0 4px 30px rgba(0, 1, 48, 0.5);
}

body.cch-theme .lp-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.cch-theme .lp-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
body.cch-theme .lp-nav-logo img { height: 36px; width: auto; }

/* Texto de urgencia centrado dentro del nav */
body.cch-theme .lp-nav-urgency {
  flex: 1;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.cch-theme .lp-nav-urgency span {
  color: #f5c518;
  font-weight: 700;
}

body.cch-theme .lp-nav-links {
  display: none;
}

body.cch-theme .lp-nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
body.cch-theme .lp-nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}

body.cch-theme .lp-btn-cta {
  flex-shrink: 0;
  background: #f5c518 !important;
  color: #000 !important;
  font-family: 'Roboto', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}
body.cch-theme .lp-btn-cta:hover {
  background: #d4a10a !important;
  color: #000 !important;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.5);
  transform: translateY(-2px);
}

/* Sin padding-top extra — sticky nav no lo necesita */
body.cch-theme .lp-hero { padding-top: 0; }

/* Mobile nav */
@media (max-width: 768px) {
  body.cch-theme .lp-nav-links { display: none; }
  body.cch-theme .lp-nav-container { gap: 0; justify-content: space-between; }
  body.cch-theme .lp-btn-cta { font-size: .8rem; padding: 9px 16px; }
}

/* ── Form inputs: estilo card con borde (CCH) ── */
body.cch-theme .lp-form-group {
  margin-bottom: 12px;
}
body.cch-theme .lp-form-group input,
body.cch-theme .lp-form-group select,
body.cch-theme .lp-form-group textarea {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border: 1.5px solid rgba(93, 166, 255, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
body.cch-theme .lp-form-group input:focus,
body.cch-theme .lp-form-group select:focus,
body.cch-theme .lp-form-group textarea:focus {
  border-color: #f5c518;
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(245,197,24,.15), inset 0 1px 3px rgba(0,0,0,.10);
}
body.cch-theme .lp-form-group label {
  color: rgba(255,255,255,.75);
}

/* ── Formulario CCH: mismo estilo que sitio principal (fondo claro) ── */
body.cch-theme .lp-form {
  background: #fff;
  border: 1px solid rgba(93, 166, 255, 0.2);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 32px rgba(0,1,48,.08);
}
body.cch-theme .lp-form-title {
  color: #000130;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}
body.cch-theme .lp-form-group label {
  color: #3a4a7a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
body.cch-theme .lp-form-group input,
body.cch-theme .lp-form-group select,
body.cch-theme .lp-form-group textarea {
  width: 100%;
  background: #fff;
  color: #000130;
  border: 1.5px solid rgba(93, 166, 255, 0.35);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: .95rem;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s;
}
body.cch-theme .lp-form-group input::placeholder,
body.cch-theme .lp-form-group textarea::placeholder {
  color: rgba(0,1,48,.35);
}
body.cch-theme .lp-form-group input:focus,
body.cch-theme .lp-form-group select:focus,
body.cch-theme .lp-form-group textarea:focus {
  border-color: #194BC8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25,75,200,.12);
}
body.cch-theme .lp-form-submit {
  background: #194BC8;
  color: #fff;
  border-radius: 50px;
}
body.cch-theme .lp-form-submit:hover {
  background: #0d2e8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,75,200,.35);
}

/* Ocultar emojis de los 3 pasos en CCH */
body.cch-theme .lp-step-icon { display: none; }

/* ── Hero eyebrow sub-label (CCH) ── */
body.cch-theme .lp-hero-eyebrow-sub {
  font-family: 'Roboto', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5dafff;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS CAROUSEL (CCH landing)
══════════════════════════════════════════════ */
.lp-tcarousel {
  position: relative;
  overflow: hidden;
}
.lp-tcarousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  gap: 0;
}
.lp-tcarousel-track .lp-tcard {
  flex: 0 0 33.333%;
  min-width: 0;
  margin: 0 12px;
  box-sizing: border-box;
}

/* Arrows — hidden desktop, visible mobile */
.lp-carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(25,75,200,.20);
  background: #fff;
  color: #000130;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.lp-carousel-arrow:hover {
  background: #194BC8;
  color: #fff;
  border-color: #194BC8;
}
.lp-carousel-prev { left: 4px; }
.lp-carousel-next { right: 4px; }

/* Dots — hidden desktop */
.lp-carousel-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.lp-carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(25,75,200,.15);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.lp-carousel-dot.active {
  background: #194BC8;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .lp-tcarousel {
    margin: 0 -15px;
    padding: 0 15px;
  }
  .lp-tcarousel-track .lp-tcard {
    flex: 0 0 calc(100% - 24px);
  }
  .lp-carousel-arrow { display: flex; }
  .lp-carousel-dots  { display: flex; }
}

/* Desktop: show all 3 cards in a grid without scroll */
@media (min-width: 769px) {
  .lp-tcarousel {
    overflow: visible;
  }
  .lp-tcarousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
  }
  .lp-tcarousel-track .lp-tcard {
    flex: unset;
    margin: 0;
  }
}

/* Personalizar color de selección de texto en CCH */
body.cch-theme ::selection {
  background: rgba(25, 75, 200, 0.25);
  color: inherit;
}
