/* Luminnus — LP Desktop/Tablet */

:root {
  --primary: #1B3A6B;
  --primary-light: #2D5A9E;
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --accent: #F59E0B;
  --accent-soft: rgba(245, 158, 11, 0.14);
  --danger-soft: #FEF2F2;
  --danger: #DC2626;
  --whatsapp: #25D366;
  --whatsapp-hover: #128C7E;
  --phone: #1B3A6B;
  --text: #0F172A;
  --text-muted: #475569;
  --bg: #F0F4F8;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 20px rgba(27, 58, 107, 0.08);
  --shadow-lg: 0 20px 50px rgba(27, 58, 107, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-top: 76px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform .3s ease;
}
.header.is-hidden { transform: translateY(-100%); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: inherit;
}
.brand__logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.footer__logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.header__ctas {
  display: flex;
  gap: .6rem;
  align-items: center;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s, background .25s;
}
.btn-header:hover { transform: translateY(-2px) scale(1.03); }

.btn-header--phone {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-header--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-header--whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 6px 18px rgba(37,211,102,.4);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(13,148,136,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(245,158,11,.1) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  z-index: 0;
  animation: mesh-drift 14s ease-in-out infinite alternate;
}
@keyframes mesh-drift {
  0% {
    background:
      radial-gradient(ellipse 80% 60% at 10% 20%, rgba(13,148,136,.12) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 90% 80%, rgba(245,158,11,.1) 0%, transparent 55%),
      linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  }
  100% {
    background:
      radial-gradient(ellipse 70% 55% at 18% 28%, rgba(13,148,136,.16) 0%, transparent 60%),
      radial-gradient(ellipse 55% 45% at 82% 72%, rgba(245,158,11,.14) 0%, transparent 55%),
      linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  background: var(--accent-soft);
  color: #B45309;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.hero__tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: normal;
  color: var(--teal);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 8px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s, border-color .3s;
}
.trust-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.trust-pill svg {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-pill:hover svg { transform: scale(1.15); }

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s;
}
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(27, 58, 107, 0.14);
}
.form-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 6px;
  margin-bottom: .75rem;
}
.form-card h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: .35rem;
}
.form-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.lead-form { display: flex; flex-direction: column; gap: .75rem; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg);
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.15);
  background: var(--white);
}
.btn-submit {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--primary) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s;
  box-shadow: 0 6px 20px rgba(13,148,136,.3);
}
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .55s ease;
}
.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(13,148,136,.45);
}
.btn-submit:hover::after { left: 140%; }
.form-privacy {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .75rem;
}

/* ── Quick FAQ strip ── */
.quick-faq {
  padding: 2rem 0 3rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quick-faq__header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.quick-faq__header h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: .4rem;
}
.quick-faq__header p { color: var(--text-muted); font-size: .95rem; }

.quick-faq__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.qf-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s, border-color .35s, background .35s;
  cursor: default;
}
.qf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(27, 58, 107, 0.12);
  border-color: var(--teal);
  background: var(--white);
}
.qf-card__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .75rem;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .35s;
}
.qf-card:hover .qf-card__icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 6px 16px rgba(13,148,136,.35);
}
.qf-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.qf-card p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Pain points ── */
.pain {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #E8EEF5 100%);
}
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.section-lead {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s, border-left-width .35s;
}
.pain-card:hover {
  transform: translateY(-6px) translateX(4px);
  box-shadow: var(--shadow-lg);
  border-left-width: 6px;
}
.pain-card__emoji {
  font-size: 1.75rem;
  margin-bottom: .75rem;
  display: inline-block;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pain-card:hover .pain-card__emoji {
  transform: scale(1.2) rotate(-8deg);
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}
.pain-card p { font-size: .875rem; color: var(--text-muted); }

.pain__cta {
  text-align: center;
  margin-top: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), background .3s, box-shadow .3s;
}
.btn-primary svg { transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.btn-primary:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
}
.btn-primary:hover svg { transform: scale(1.15); }

/* ── Journey ── */
.journey {
  padding: 4rem 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.journey::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(13,148,136,.25) 0%, transparent 70%);
  pointer-events: none;
}
.journey .section-eyebrow { color: var(--accent); }
.journey .section-title { color: var(--white); }
.journey .section-lead { color: rgba(255,255,255,.75); }

.journey__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
.journey__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: rgba(255,255,255,.2);
  z-index: 0;
}
.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.journey-step {
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey-step:hover { transform: translateY(-6px); }
.journey-step__num {
  width: 56px; height: 56px;
  margin: 0 auto .85rem;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .35s;
}
.journey-step:hover .journey-step__num {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(13,148,136,.45);
}
.journey-step h3 {
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.journey-step p {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
}

/* ── Coverage ── */
.coverage {
  padding: 4rem 0;
  background: var(--white);
}
.coverage__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.coverage__map {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s;
}
.coverage__map:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.coverage__leaflet {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: calc(var(--radius-lg) - 4px);
  z-index: 0;
  background: #E8EEF5;
  isolation: isolate;
  overflow: hidden;
}
.coverage__leaflet .leaflet-pane,
.coverage__leaflet .leaflet-top,
.coverage__leaflet .leaflet-bottom {
  z-index: 1 !important;
}
.coverage__leaflet .leaflet-tile-pane { z-index: 1 !important; }
.coverage__leaflet .leaflet-overlay-pane { z-index: 2 !important; }
.coverage__leaflet .leaflet-shadow-pane { z-index: 3 !important; }
.coverage__leaflet .leaflet-marker-pane { z-index: 4 !important; }
.coverage__leaflet .leaflet-tooltip-pane { z-index: 5 !important; }
.coverage__leaflet .leaflet-popup-pane { z-index: 6 !important; }
.coverage__leaflet .leaflet-control {
  z-index: 7 !important;
}
.coverage__leaflet .leaflet-control-zoom {
  border: none !important;
  box-shadow: var(--shadow) !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.coverage__leaflet .leaflet-control-zoom a {
  color: var(--primary) !important;
  border-color: var(--border) !important;
}
.coverage__leaflet .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font);
}
.coverage__leaflet .leaflet-popup-content {
  margin: .65rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
}
.map-pin {
  background: transparent;
  border: none;
}
.map-pin__dot {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--teal);
  border: 2.5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(13,148,136,.55);
  transition: transform .2s;
}
.map-pin__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  background: rgba(13,148,136,.2);
  border-radius: 50%;
  animation: map-pulse 2s ease infinite;
}
@keyframes map-pulse {
  0%,100% { transform: scale(.6); opacity: .8; }
  50% { transform: scale(1); opacity: 0; }
}
.leaflet-marker-icon:hover .map-pin__dot {
  transform: scale(1.25);
  background: var(--teal-light);
}
.coverage__excluded {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--danger-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(220,38,38,.15);
}
.coverage__excluded h4 {
  font-size: .8rem;
  color: var(--danger);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.coverage__excluded ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.coverage__excluded li {
  font-size: .75rem;
  color: #991B1B;
  background: var(--white);
  padding: .25rem .6rem;
  border-radius: 50px;
}

/* ── How it works ── */
.how {
  padding: 4rem 0;
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s, border-color .35s;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,148,136,.3);
}
.step-card__num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .875rem;
}
.step-card__icon {
  font-size: 2.5rem;
  margin: .5rem 0 1rem;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step-card:hover .step-card__icon { transform: scale(1.15); }
.step-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.step-card p { font-size: .875rem; color: var(--text-muted); }

/* ── Differentials ── */
.diff {
  padding: 4rem 0;
  background: var(--white);
}
.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.diff-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--bg) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s, border-color .35s;
}
.diff-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.diff-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: inline-block;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.diff-card:hover .diff-card__icon {
  transform: scale(1.2) rotate(5deg);
}
.diff-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .4rem;
}
.diff-card p { font-size: .8rem; color: var(--text-muted); }

/* ── Social proof ── */
.proof {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--primary) 100%);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  color: var(--white);
}
.proof__grid > div {
  padding: .5rem;
  border-radius: var(--radius);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), background .35s;
}
.proof__grid > div:hover {
  transform: scale(1.06);
  background: rgba(255,255,255,.08);
}
.proof__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .35rem;
}
.proof__label {
  font-size: .85rem;
  font-weight: 600;
  opacity: .95;
  line-height: 1.2;
}
.proof__sublabel {
  font-size: .75rem;
  opacity: .8;
  line-height: 1.3;
  margin-top: .15rem;
}

/* ── Unidades por estado ── */
.unidades {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.unidades__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.unidades__counter {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(27, 58, 107, .08);
  padding: .35rem .75rem;
  border-radius: 999px;
}
.unidades-skeleton {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
}
.unidades-skeleton__card {
  max-width: 900px;
  height: 420px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, #e8edf3 25%, #f4f7fa 50%, #e8edf3 75%);
  background-size: 200% 100%;
  animation: unidades-shine 1.2s ease infinite;
}
@keyframes unidades-shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
#unidades-carousel {
  margin-top: 2rem;
  overflow: hidden;
}
#unidades-carousel .lp-carousel__viewport {
  display: flex;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: .5rem 0 1.25rem;
  scrollbar-width: none;
}
#unidades-carousel .lp-carousel__viewport::-webkit-scrollbar { display: none; }
#unidades-carousel .lp-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
#unidades-carousel .lp-carousel__dots {
  display: none;
}
.unidades__statement {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
}
.unidades__statement strong {
  color: var(--primary);
  font-weight: 700;
}
.unidade-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background: var(--border);
  box-shadow: var(--shadow-lg);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s;
}
.unidade-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(27, 58, 107, .18);
}
.unidade-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unidade-card__uf {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: .5rem 1.1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .12em;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(27, 58, 107, .35);
}
.lp-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}
.lp-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
  max-width: 480px;
}
.lp-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: transform .25s, background .25s;
}
.lp-carousel__dot--active {
  background: var(--teal);
  transform: scale(1.25);
}
.lp-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .25s, transform .25s, border-color .25s;
}
.lp-carousel__arrow:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}
.lp-carousel__arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* ── Testimonials ── */
.testimonials {
  padding: 4rem 0;
  background: var(--bg);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s, border-color .35s;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,.35);
}
.testimonial__stars { transition: letter-spacing .35s; }
.testimonial:hover .testimonial__stars { letter-spacing: 4px; }
.testimonial__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: .75rem;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-size: .9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial cite {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

/* ── FAQ ── */
.faq {
  padding: 4rem 0;
  background: var(--white);
}
.faq__list {
  max-width: 760px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.faq-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: rgba(13,148,136,.25);
}
.faq-item[open] {
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__answer {
  padding: 0 1.25rem 1.1rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA Final ── */
.cta-final {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0F2744 100%);
  text-align: center;
  color: var(--white);
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .75rem;
}
.cta-final p {
  opacity: .8;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s;
}
.btn-cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
}
.btn-cta--phone {
  background: var(--white);
  color: var(--primary);
}
.btn-cta--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 0;
  background: #0A1628;
  color: rgba(255,255,255,.7);
  text-align: center;
}
.footer p { font-size: .85rem; margin-bottom: .5rem; }
.footer a { color: var(--teal-light); }
.footer__credit {
  margin-top: 1.25rem;
  font-size: .75rem;
  opacity: .5;
}

/* ── Floating buttons ── */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}

.float-phone {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.float-phone__label {
  background: var(--primary);
  color: var(--white);
  padding: .5rem .9rem;
  border-radius: 50px 0 0 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: var(--shadow);
  margin-right: -4px;
  animation: float-label 3s ease infinite;
}
@keyframes float-label {
  0%,100% { opacity: 1; }
  50% { opacity: .7; }
}
.float-phone__btn {
  width: 52px; height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27,58,107,.4);
  transition: transform .2s;
}
.float-phone__btn:hover { transform: scale(1.08); }

.whatsapp__float {
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.whatsapp__balloon {
  background: var(--white);
  padding: .65rem .9rem;
  border-radius: 18px 18px 18px 4px;
  box-shadow: var(--shadow-lg);
  margin-right: 10px;
  margin-bottom: 4px;
  font-size: .8rem;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.35;
}
.whatsapp__balloon strong { color: var(--primary); display: block; font-size: .75rem; }
.whatsapp__dots {
  display: flex; gap: 4px; margin-top: 4px;
}
.whatsapp__dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: typing 1.4s ease infinite both;
}
.whatsapp__dots span:nth-child(1) { background: #E53935; }
.whatsapp__dots span:nth-child(2) { background: #FDD835; animation-delay: .2s; }
.whatsapp__dots span:nth-child(3) { background: #43A047; animation-delay: .4s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.whatsapp__btn {
  position: relative;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform .2s, background .2s;
}
.whatsapp__btn:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.08);
}
.whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wpp-pulse 2s infinite;
  pointer-events: none;
}
@keyframes wpp-pulse {
  0% { transform: scale(1); opacity: .5; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .form-card { position: static; max-width: 480px; }
  .quick-faq__grid { grid-template-columns: repeat(2, 1fr); }
  .journey__steps { grid-template-columns: repeat(3, 1fr); }
  .journey__steps::before { display: none; }
  .coverage__wrap { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile redirect notice (hidden on desktop) ── */
.mobile-redirect { display: none; }

@media (max-width: 768px) {
  body { padding-top: 64px; }
  .brand__logo { height: 36px; }
  .brand__name { font-size: 1rem; }
  .btn-header span.btn-label { display: none; }
  .pain__grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .journey__steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .quick-faq__grid { grid-template-columns: 1fr; }
  .coverage__leaflet { height: 300px; }
}

/* ── Animações de entrada (scroll reveal) ── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--up,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__mesh { animation: none; }
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal--up { transform: translateY(32px); }
.reveal--left { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--scale { transform: scale(0.94); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: 2px;
  transition: width .6s cubic-bezier(0.22, 1, 0.36, 1) .2s;
}
.reveal.is-visible.section-title::after,
.section-title.is-visible::after {
  width: 100%;
}
