﻿/* ===== FONTS ===== */
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../fonts/Outfit-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../fonts/Outfit-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #0a0f2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== BRAND COLORS — Endesa Guidelines ===== */
/* Primary:   #0555FA — Sky Blue Pantone 285 — RGB 5/85/250 */
/* Secondary: #41B9E6 — Pantone 298 */
:root {
  --blue: #0555fa;
  --blue-dark: #0340c8;
  --blue-light: #41b9e6;
  --blue-pale: #ebf0ff;
  --blue-pale2: #f0f6ff;
  --dark: #0a0f2e;
  --dark-mid: #1a2040;
  --gray: #6b7280;
  --gray-light: #f3f4f8;
  --border: #dde3f0;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(5, 85, 250, 0.12);
  --shadow-lg: 0 12px 48px rgba(5, 85, 250, 0.18);
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ===== HEADER ===== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.lp-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-header__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.lp-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
}
.lp-header__phone svg {
  flex-shrink: 0;
}
.lp-header__cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.lp-header__cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.lp-hero {
  background: var(--blue-pale2);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 0;
  min-height: 580px;
}
/* Foto de fondo derecha — desktop only, estilo refs Endesa */
.lp-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background-image: url("../img/jpg/hero-bg.jpg");
  background-size: cover;
  background-position: center top;
  z-index: 0;
  pointer-events: none;
}
/* Gradiente de transición entre azul-pale y foto */
.lp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 38%;
  width: 220px;
  height: 100%;
  background: linear-gradient(to right, var(--blue-pale2) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
/* RING — top-left, never rotated/mirrored, as per guidelines */
.hero-ring {
  position: absolute;
  top: -90px;
  left: -90px;
  width: 420px;
  height: 420px;
  border: 70px solid var(--blue);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.hero-ring--inner {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 260px;
  height: 260px;
  border: 44px solid var(--blue);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}
.lp-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-content {
  padding-top: 12px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 460px;
}
.hero-stat {
  flex: 1;
  text-align: center;
}
.hero-stat__num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat__label {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 3px;
  line-height: 1.3;
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}
.hero-testimonial {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 460px;
}
.hero-testimonial__stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.hero-testimonial__text {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 6px;
}
.hero-testimonial__author {
  font-size: 11px;
  color: var(--gray);
  font-weight: 600;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(5, 85, 250, 0.25);
  padding-bottom: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
  align-self: flex-start;
}
.hero-cta-secondary:hover {
  border-color: var(--blue);
}
.hero-content__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 85, 250, 0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-content__label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero-content__h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-content__h1 span {
  color: var(--blue);
}
.hero-content__sub {
  font-size: 17px;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 480px;
}
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}
.trust-chip__dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* OFFER BOX */
.offer-box {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}
.offer-box__badge {
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}
.offer-box__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.offer-box__price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
}
.offer-box__price {
  font-size: 52px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.offer-box__unit {
  font-size: 17px;
  font-weight: 500;
  color: var(--gray);
}
.offer-box__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.offer-box__features {
  list-style: none;
  margin-bottom: 24px;
}
.offer-box__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.offer-box__features li:last-child {
  border: none;
}
.check-icon {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon::after {
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.offer-box__cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
}
.offer-box__cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 85, 250, 0.3);
}
.offer-box__micro {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

/* ===== TRUST BAR ===== */
.lp-trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.lp-trust-bar__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.trust-item__icon {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item__icon svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

/* ===== FORM SECTION ===== */
.lp-form {
  background: var(--dark);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.form-ring {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  border: 60px solid rgba(65, 185, 230, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.lp-form__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.form-content__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.form-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.form-content h2 span {
  color: var(--blue-light);
}
.form-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.form-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.form-checklist__icon {
  width: 32px;
  height: 32px;
  background: rgba(65, 185, 230, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
  font-size: 14px;
}

/* FORM CARD */
.form-card {
  scroll-margin-top: 80px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.form-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
}
.form-group input::placeholder {
  color: #b0b8cc;
}
.form-submit {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 8px;
  margin-bottom: 12px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 85, 250, 0.3);
}
.legal {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray);
  background: var(--blue-pale);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.legal:hover {
  border-color: var(--blue);
}
.legal--pulse {
  border-color: #ef4444;
  background: #fff5f5;
  animation: legalPulse 1.2s ease-in-out infinite;
}
.legal--pulse input[type="checkbox"] {
  outline: 2px solid #ef4444;
  outline-offset: 2px;
  border-radius: 3px;
}
@keyframes legalPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
}
.legal input[type="checkbox"] {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.legal a:hover {
  color: var(--blue-dark);
}
.form-privacy {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}
.form-privacy a {
  color: var(--blue);
  text-decoration: none;
}
.form-privacy a:hover {
  text-decoration: underline;
}

/* ===== FORM VALIDATION STATES ===== */
.form-group {
  position: relative;
}
.form-group input,
.form-group select {
  padding-right: 38px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-group.err input,
.form-group.err select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.form-group.valid input,
.form-group.valid select {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
.field-msg {
  display: none;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.4;
}
.form-group.err .field-msg {
  display: block;
  color: #ef4444;
}
.form-group.valid .field-msg {
  display: none;
}
.field-icon {
  position: absolute;
  right: 12px;
  top: 34px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.field-icon svg {
  width: 16px;
  height: 16px;
  display: none;
}
.form-group.valid .field-icon .icon-ok {
  display: block;
}
.form-group.err .field-icon .icon-err {
  display: block;
}
.form-group.validating .field-icon .icon-spin {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-group.validating .icon-spin {
  animation: spin 0.7s linear infinite;
}
.form-group.validating input,
.form-group.validating select {
  border-color: var(--blue-light);
}

.api-err {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #b91c1c;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.api-err.visible {
  display: block;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ===== BENEFITS ===== */
.lp-benefits {
  padding: 88px 24px;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 16px;
  color: var(--gray);
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--blue-pale2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  color: #4b5568;
  line-height: 1.65;
}

/* ===== TARIFAS ===== */
.lp-tarifas {
  background: var(--blue-pale2);
  padding: 88px 24px;
}
.tarifas-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.tarifa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tarifa-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tarifa-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(5, 85, 250, 0.08);
}
.tarifa-badge {
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 20px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.tarifa-card__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}
.tarifa-card__desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 22px;
}
.tarifa-card__price {
  font-size: 40px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.tarifa-card__price-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
.tarifa-list {
  list-style: none;
  margin: 20px 0 26px;
}
.tarifa-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.tarifa-list li:last-child {
  border: none;
}
.tarifa-check {
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.tarifa-cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: center;
  border: 2px solid var(--blue);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.tarifa-cta:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}
.tarifa-cta--outline {
  background: transparent;
  color: var(--blue);
}
.tarifa-cta--outline:hover {
  background: var(--blue);
  color: #fff;
}

/* ===== STATS ===== */
.lp-stats {
  background: var(--dark-mid);
  padding: 72px 24px;
}
.lp-stats__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  text-align: center;
}
.stat-card__num {
  font-size: 42px;
  font-weight: 900;
  color: var(--blue-light);
  letter-spacing: -0.02em;
  display: block;
}
.stat-card__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.5;
}
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== STEPS ===== */
.lp-steps {
  background: var(--blue-pale2);
  padding: 88px 24px;
}
.steps-grid {
  max-width: 1160px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-line {
  position: absolute;
  top: 35px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 4px solid var(--blue-pale2);
  box-shadow: 0 0 0 3px rgba(5, 85, 250, 0.15);
}
.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.lp-faq {
  background: var(--white);
  padding: 88px 24px;
}
.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: "Outfit", sans-serif;
}
.faq-q:hover {
  background: var(--blue-pale2);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--blue-light);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

/* ===== FINAL CTA ===== */
.lp-final-cta {
  background: var(--blue);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-ring {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border: 64px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.final-ring--2 {
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border: 40px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.lp-final-cta h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.lp-final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.final-btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  padding: 18px 48px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.final-micro {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

/* ===== LEGAL ===== */
.lp-legal {
  background: #f8f9fb;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
}
.lp-legal__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}
.legal-links a {
  font-size: 12px;
  color: var(--blue);
  text-decoration: none;
}
.legal-links a:hover {
  text-decoration: underline;
}
.legal-text {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 100%;
}

/* ===== FOOTER ===== */
.lp-footer {
  background: var(--dark);
  padding: 20px 24px;
}
.lp-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
}
.lp-footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== CONSUMPTION SELECTOR ===== */
.cons-selector {
  background: var(--blue-pale);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 18px;
}
.cons-selector__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.cons-selector__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.cons-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.18s ease;
  text-align: center;
}
.cons-btn:hover {
  border-color: var(--blue);
  background: #f0f4ff;
}
.cons-btn--active,
.cons-btn--active:hover,
.cons-btn--active:focus,
.cons-btn--active:active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(5, 85, 250, 0.3);
}
.cons-btn__icon {
  font-size: 18px;
  line-height: 1;
}
.cons-btn__name {
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.cons-btn__desc {
  font-size: 10px;
  opacity: 0.75;
}
.cons-result__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
}
.cons-result__saving {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
}
.cons-result__num {
  font-size: 26px;
  font-weight: 900;
  color: #059669;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.cons-result__label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  max-width: 100px;
  line-height: 1.3;
}
.cons-result__year {
  font-size: 13px;
  color: var(--dark);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
/* PULSE CTA */
.offer-cta--pulse {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.offer-cta--pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.offer-cta--pulse:hover::before {
  transform: translateX(100%);
}
.offer-cta__text {
  font-size: 15px;
  font-weight: 700;
}
.offer-cta__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.offer-cta--pulse:hover .offer-cta__arrow {
  transform: translateX(4px);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
.mobile-sticky a {
  display: block;
  background: var(--blue);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr 420px;
    padding-bottom: 48px;
    gap: 32px;
  }
  .lp-hero::after,
  .lp-hero::before {
    display: none;
  }
  .lp-form__inner {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tarifas-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-line {
    display: none;
  }
  .lp-header__phone {
    display: none;
  }
}
@media (max-width: 600px) {
  .lp-hero {
    padding: 20px 16px 0;
    min-height: unset;
  }
  .lp-hero__inner {
    padding-bottom: 0 !important;
  }
  .hero-content__h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .hero-content__sub {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .hero-trust-chips {
    margin-bottom: 16px;
    gap: 6px;
  }
  .trust-chip {
    font-size: 11px;
    padding: 5px 10px;
  }
  .hero-ring {
    width: 260px;
    height: 260px;
    border-width: 44px;
    top: -60px;
    left: -60px;
  }
  .hero-ring--inner {
    width: 160px;
    height: 160px;
    border-width: 28px;
    top: -24px;
    left: -24px;
  }
  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .lp-trust-bar__inner {
    gap: 16px;
  }
  .mobile-sticky {
    display: block;
  }
  .lp-benefits,
  .lp-tarifas,
  .lp-steps,
  .lp-faq,
  .lp-final-cta {
    padding: 60px 16px;
  }
  .lp-form {
    padding: 56px 16px;
  }
  .lp-form__inner {
    gap: 40px;
  }
  .hero-stats-row,
  .hero-testimonial,
  .hero-cta-secondary {
    display: none;
  }
  .offer-box {
    padding: 20px 18px;
    border-radius: 14px;
  }
  .offer-box__price {
    font-size: 38px;
  }
  .offer-box__badge {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
  .offer-box__features {
    margin-bottom: 14px;
  }
  .offer-box__features li {
    padding: 5px 0;
    font-size: 12px;
  }
  .cons-selector {
    padding: 12px 14px;
    margin-bottom: 12px;
  }
  .cons-btn__icon {
    font-size: 16px;
  }
  .cons-btn__name {
    font-size: 11px;
  }
  .cons-btn__desc {
    font-size: 9px;
  }
  .cons-result__num {
    font-size: 22px;
  }
  .section-header {
    margin-bottom: 36px;
  }
}
