:root {
  --wf-azul-oscuro: #0b1930;
  --wf-azul: #163167;
  --wf-azul-claro: #4760ff;
  --wf-turquesa: #5be7c4;
  --wf-dorado: #ffd166;
  --wf-gris: #f5f7fb;
  --wf-gris-oscuro: #5e6a81;
  --wf-blanco: #ffffff;
  --wf-radius-lg: 26px;
  --wf-radius-md: 18px;
  --wf-radius-sm: 12px;
  --wf-shadow-lg: 0 30px 60px rgba(11, 25, 48, 0.18);
  --wf-shadow-md: 0 18px 32px rgba(16, 38, 77, 0.12);
  --wf-shadow-sm: 0 10px 20px rgba(16, 38, 77, 0.08);
  --wf-font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wf-font);
  background: linear-gradient(180deg, #f8faff 0%, #f0f4ff 60%, #f9fbff 100%);
  color: #101a2b;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wf-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: rgba(12, 23, 46, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(9, 20, 37, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wf-nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--wf-blanco);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.wf-nav__brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wf-nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.wf-nav__links a {
  padding: 10px 16px;
  border-radius: var(--wf-radius-sm);
  transition: background 0.3s ease, color 0.3s ease;
}

.wf-nav__links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--wf-blanco);
}

.wf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wf-btn--primary {
  background: linear-gradient(135deg, #4760ff 0%, #5be7c4 100%);
  color: #0b1425;
  box-shadow: 0 18px 30px rgba(71, 96, 255, 0.35);
}

.wf-btn--secondary {
  background: linear-gradient(135deg, #5be7c4 0%, #ffd166 100%);
  color: #0b1425;
  box-shadow: 0 16px 28px rgba(91, 231, 196, 0.3);
}

.wf-btn--gold {
  background: linear-gradient(135deg, #ffd166 0%, #ffba49 45%, #ff9b05 100%);
  color: #0b1425;
  box-shadow: 0 18px 32px rgba(255, 181, 53, 0.37);
}

.wf-btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--wf-blanco);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.wf-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--wf-blanco);
}

.wf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(21, 44, 83, 0.2);
}

.wf-hero {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 90px 6vw 70px;
}

.wf-hero__content {
  color: #0b1425;
  flex: 1 1 50%;
  max-width: 620px;
}

.wf-hero__visual {
  flex: 1 1 50%;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    inset 0 0 40px rgba(15, 28, 55, 0.2),
    0 25px 50px rgba(15, 28, 55, 0.25);
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 400px;
  max-height: 800px;
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  will-change: transform;
  transform: translateZ(0);
}

.wf-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(210deg, rgba(11, 25, 48, 0.38), rgba(11, 25, 48, 0.05));
  pointer-events: none;
  z-index: 1;
}

.wf-hero__visual img {
  display: none;
}

.wf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(71, 96, 255, 0.12);
  color: #4363ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.wf-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.wf-pill--light {
  background: rgba(11, 25, 48, 0.08);
  color: #0b1930;
}

.wf-section--alt .wf-pill--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--wf-blanco);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wf-hero h1 {
  margin: 24px 0 16px;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.wf-hero--main {
  padding: 64px 6vw;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wf-hero--main .wf-hero__content {
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.wf-hero__content--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .wf-hero__content--grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.wf-hero__left {
  text-align: left;
}

.wf-hero__right {
  text-align: left;
}

.wf-hero__value {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  margin: 0 0 32px;
  font-weight: 500;
}

.wf-hero__background {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 0;
}

.wf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 25, 48, 0.75) 0%,
    rgba(22, 49, 103, 0.65) 50%,
    rgba(11, 25, 48, 0.75) 100%
  );
  z-index: 1;
}

.wf-hero--main h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 20px;
  color: var(--wf-blanco);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.wf-hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  font-weight: 600;
  color: var(--wf-turquesa) !important;
  margin: 0 0 24px !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.wf-hero p {
  margin: 0 0 28px;
  font-size: 18px;
  color: var(--wf-gris-oscuro);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wf-hero--main p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  text-align: left;
  margin: 0 0 20px;
}

.wf-hero__right p:last-child {
  margin-bottom: 0;
}

.wf-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}

.wf-stats {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 0;
  padding: 0;
}

.wf-stats dt {
  font-weight: 700;
  font-size: 24px;
  color: #163167;
}

.wf-stats dd {
  margin: 4px 0 0;
  color: var(--wf-gris-oscuro);
  font-size: 14px;
}

.wf-hero__panel {
  background: linear-gradient(160deg, rgba(12, 23, 46, 0.92) 0%, rgba(22, 49, 103, 0.85) 100%);
  color: var(--wf-blanco);
  border-radius: var(--wf-radius-lg);
  padding: 34px;
  box-shadow: var(--wf-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wf-hero__panel h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.wf-hero__panel p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
}

.wf-hero__panel ul {
  margin: 0 0 26px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.wf-hero__panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.wf-hero__panel li::before {
  content: '✔';
  color: var(--wf-turquesa);
  font-size: 18px;
}

.wf-section {
  padding: 70px 6vw;
}

.wf-section--alt {
  background: rgba(11, 25, 48, 0.85);
  color: var(--wf-blanco);
}

.wf-section__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.wf-section__header h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.wf-section__header p {
  margin: 0;
  color: var(--wf-gris-oscuro);
}

.wf-section--alt .wf-section__header p {
  color: rgba(255, 255, 255, 0.7);
}

.wf-grid {
  display: grid;
  gap: 28px;
}

.wf-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.wf-grid--six {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.wf-grid--six .wf-card {
  padding: 20px 16px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.wf-grid--six .wf-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  height: auto;
  display: block;
  width: 100%;
  color: #0b1930;
}

.wf-grid--six .wf-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  color: var(--wf-gris-oscuro);
  flex: 1;
}

@media (max-width: 1400px) {
  .wf-grid--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .wf-grid--six {
    grid-template-columns: 1fr;
  }
}

.wf-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wf-card {
  background: var(--wf-blanco);
  border-radius: var(--wf-radius-md);
  padding: 32px;
  box-shadow: var(--wf-shadow-md);
  border: 1px solid rgba(22, 49, 103, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wf-card h3 {
  margin: 16px 0 12px;
  font-size: 20px;
}

.wf-card p {
  margin: 0 0 18px;
  color: var(--wf-gris-oscuro);
  flex: 1;
}

.wf-card .wf-btn {
  margin-top: auto;
  align-self: flex-start;
}

.wf-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: #26334b;
}

.wf-card li {
  position: relative;
  padding-left: 20px;
}

.wf-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4760ff, #5be7c4);
}

.wf-compare {
  background: radial-gradient(circle at top, rgba(10, 19, 36, 0.08), transparent 60%);
}

.wf-compare__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wf-compare__item {
  background: var(--wf-blanco);
  border-radius: var(--wf-radius-lg);
  padding: 34px;
  box-shadow: var(--wf-shadow-lg);
  border: 1px solid rgba(11, 25, 48, 0.05);
  display: grid;
  gap: 22px;
}

.wf-compare__item header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.wf-compare__item header h3 {
  margin: 0;
  font-size: 24px;
  color: #132851;
}

.wf-compare__intro {
  margin: 0;
  color: var(--wf-gris-oscuro);
  font-size: 15px;
}

.wf-compare__split {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.wf-compare__item h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #132851;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.wf-compare__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--wf-gris-oscuro);
  font-size: 15px;
}

.wf-compare__list li {
  position: relative;
  padding-left: 20px;
}

.wf-compare__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(135deg, #4760ff, #5be7c4);
}

.wf-compare__item footer {
  display: grid;
  gap: 12px;
}

.wf-compare__item footer strong {
  font-size: 14px;
  color: #101a2b;
}

.wf-pill--tag {
  background: rgba(71, 96, 255, 0.15);
  color: #304bff;
  font-size: 12px;
  padding: 6px 12px;
}

.wf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(71, 96, 255, 0.12);
  font-size: 24px;
}

.wf-timeline {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.wf-timeline__step {
  position: relative;
  padding: 24px;
  border-radius: var(--wf-radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 40px rgba(91, 231, 196, 0.08);
}

.wf-timeline__step span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--wf-turquesa);
  letter-spacing: 1.6px;
}

.wf-timeline__step h3 {
  margin: 8px 0 10px;
  font-size: 20px;
}

.wf-timeline__step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.wf-quote {
  background: var(--wf-blanco);
  border-radius: var(--wf-radius-md);
  padding: 32px;
  box-shadow: var(--wf-shadow-sm);
  border: 1px solid rgba(22, 49, 103, 0.08);
}

.wf-quote p {
  margin: 0 0 18px;
  font-size: 18px;
  color: #1d2a44;
}

.wf-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--wf-gris-oscuro);
}

.wf-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 70px 6vw 90px;
  background: linear-gradient(135deg, #10264d 0%, #1c3a72 40%, #0f1d3f 100%);
  color: var(--wf-blanco);
  border-top-left-radius: var(--wf-radius-lg);
  border-top-right-radius: var(--wf-radius-lg);
  box-shadow: 0 -20px 40px rgba(7, 15, 31, 0.3);
}

.wf-cta__content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.wf-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.wf-cta__form {
  display: grid;
  gap: 18px;
}

.wf-cta__form input {
  padding: 16px 18px;
  border-radius: var(--wf-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--wf-blanco);
  font-size: 16px;
}

.wf-cta__form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.wf-cta__form input:focus {
  outline: none;
  border-color: var(--wf-turquesa);
  background: rgba(255, 255, 255, 0.15);
}

.wf-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw 36px;
  background: #050b16;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.wf-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.wf-footer__links a {
  color: rgba(91, 231, 196, 0.82);
  font-weight: 500;
}

.wf-footer__links a:hover {
  color: var(--wf-blanco);
}

.form-message {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--wf-radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.form-message.success {
  background: rgba(91, 231, 196, 0.18);
  color: #083c2f;
  border: 1px solid rgba(91, 231, 196, 0.4);
}

.form-message.error {
  background: rgba(255, 120, 120, 0.18);
  color: #611b1b;
  border: 1px solid rgba(255, 120, 120, 0.3);
}

/* Formulario con carrusel */
.wf-cta-form {
  padding: 70px 6vw;
  background: linear-gradient(180deg, #f8faff 0%, #f0f4ff 100%);
}

.wf-cta-form__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.wf-cta-form__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wf-cta-form__form-container {
  max-width: 36rem;
  margin: 0 auto;
}

.wf-cta-form__header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #0b1425;
}

.wf-cta-form__header p {
  margin: 0;
  color: var(--wf-gris-oscuro);
  font-size: 16px;
}

.wf-cta-form__form {
  display: grid;
  gap: 12px;
}

.wf-cta-form__form label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #0b1425;
  margin-bottom: 4px;
}

.wf-cta-form__select,
.wf-cta-form__form input {
  padding: 10px 16px;
  border-radius: var(--wf-radius-sm);
  border: 1px solid rgba(22, 49, 103, 0.15);
  background: var(--wf-blanco);
  color: #0b1425;
  font-size: 16px;
  font-family: var(--wf-font);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wf-cta-form__select:focus,
.wf-cta-form__form input:focus {
  outline: none;
  border-color: var(--wf-azul-claro);
  box-shadow: 0 0 0 3px rgba(71, 96, 255, 0.1);
}

.wf-cta-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23163167' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

.wf-cta-form__form input::placeholder {
  color: var(--wf-gris-oscuro);
  opacity: 0.6;
}

/* Campo de teléfono con prefijo */
.wf-cta-form__form .phone-field {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(22, 49, 103, 0.15);
  border-radius: var(--wf-radius-sm);
  overflow: hidden;
  background: var(--wf-blanco);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wf-cta-form__form .phone-field:focus-within {
  border-color: var(--wf-azul-claro);
  box-shadow: 0 0 0 3px rgba(71, 96, 255, 0.1);
}

.wf-cta-form__form .phone-field .prefix {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--wf-blanco);
  border-right: 1px solid rgba(22, 49, 103, 0.15);
  font-weight: 600;
  color: var(--wf-azul);
  font-size: 16px;
  white-space: nowrap;
  user-select: none;
}

.wf-cta-form__form .phone-field input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  border-radius: 0;
  background: transparent;
  color: #0b1425;
  font-size: 16px;
}

.wf-cta-form__form .phone-field input:focus {
  outline: none;
  border-color: transparent;
}

/* Mensajes de error de campo */
.field-error {
  color: #d32f2f;
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 8px;
  display: block;
}

.field-error-input {
  border-color: #d32f2f !important;
}

.wf-cta-form__checkboxes {
  border: none;
  padding: 0;
  margin: 0;
}

.wf-cta-form__checkboxes legend {
  font-weight: 600;
  font-size: 15px;
  color: #0b1425;
  margin-bottom: 8px;
  padding: 0;
}

.wf-cta-form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wf-cta-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--wf-radius-sm);
  border: 1px solid rgba(22, 49, 103, 0.15);
  background: var(--wf-blanco);
  transition: all 0.3s ease;
}

.wf-cta-form__checkbox-label:hover {
  border-color: var(--wf-azul-claro);
  background: rgba(71, 96, 255, 0.05);
}

.wf-cta-form__checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--wf-azul-claro);
  flex-shrink: 0;
}

.wf-cta-form__checkbox-label span {
  font-size: 15px;
  color: #0b1425;
  user-select: none;
}

.wf-cta-form__security-text {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--wf-gris-oscuro);
  opacity: 0.8;
  font-style: italic;
}

.wf-cta-form__button-wrapper {
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}

.wf-cta-form__button-wrapper .wf-btn {
  width: 100%;
}

/* Carrusel */
.wf-carousel {
  position: relative;
  border-radius: var(--wf-radius-lg);
  overflow: hidden;
  box-shadow: var(--wf-shadow-lg);
  min-height: 600px;
  background: var(--wf-azul-oscuro);
  display: flex;
  flex-direction: column;
}

.wf-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-carousel__slide--active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.wf-carousel__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.1);
}

.wf-carousel__image--apv {
  background: linear-gradient(135deg, #1b3d6d 0%, #0b1b36 100%);
}

.wf-carousel__image--seguro {
  background: linear-gradient(135deg, #163167 0%, #0a1428 100%);
}

.wf-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 25, 48, 0.85) 0%, rgba(11, 25, 48, 0.95) 100%);
  z-index: 1;
}

.wf-carousel__content {
  position: relative;
  z-index: 2;
  padding: 50px 40px;
  color: var(--wf-blanco);
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.wf-carousel__content h3 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--wf-blanco);
  font-weight: 700;
}

.wf-carousel__subtitle {
  margin: 0 0 32px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--wf-turquesa);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wf-carousel__icon {
  font-size: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.wf-carousel__chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  height: 350px;
  margin: 20px 0 30px;
  padding: 0 20px;
}

.wf-carousel__bar {
  flex: 1;
  max-width: 100px;
  background: linear-gradient(180deg, var(--wf-azul-claro) 0%, var(--wf-turquesa) 100%);
  border-radius: 12px 12px 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  min-height: 50px;
  box-shadow: 0 4px 12px rgba(71, 96, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wf-carousel__bar:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(71, 96, 255, 0.5);
}

.wf-carousel__bar-value {
  color: var(--wf-blanco);
  font-weight: 700;
  font-size: 22px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wf-carousel__labels {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.wf-carousel__labels span {
  flex: 1;
  max-width: 100px;
  text-align: center;
}

.wf-carousel__source {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.wf-carousel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  display: grid;
  gap: 18px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.wf-carousel__list li {
  position: relative;
  padding-left: 32px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.wf-carousel__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wf-turquesa);
  font-weight: 700;
  font-size: 22px;
  text-shadow: 0 2px 4px rgba(91, 231, 196, 0.3);
}

.wf-carousel__indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.wf-carousel__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.wf-carousel__indicator--active,
.wf-carousel__indicator:hover {
  background: var(--wf-turquesa);
  border-color: var(--wf-turquesa);
}

/* Responsive para formulario y carrusel */
@media (max-width: 960px) {
  .wf-cta-form__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wf-cta-form__form-container {
    max-width: 100%;
  }

  .wf-carousel {
    min-height: 500px;
  }

  .wf-carousel__track {
    min-height: 500px;
  }

  .wf-carousel__content {
    padding: 40px 24px;
  }

  .wf-carousel__chart {
    height: 280px;
    margin: 16px 0 24px;
    gap: 16px;
  }

  .wf-carousel__bar {
    max-width: 70px;
  }

  .wf-carousel__labels span {
    max-width: 70px;
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .wf-nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .wf-nav__links {
    flex-wrap: wrap;
  }

  .wf-hero {
    flex-direction: column;
  }

  .wf-hero__visual {
    display: none;
  }
}

/* Mejoras para diferentes niveles de zoom y resoluciones */
@media (min-width: 961px) {
  .wf-hero__visual {
    aspect-ratio: 4 / 3;
  }
}

/* Ajustes para móviles - desactivar fixed para mejor rendimiento */
@media (max-width: 960px) {
  .wf-hero__visual {
    background-attachment: scroll;
  }
}

/* Ajustes para pantallas de alta resolución */
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .wf-hero__visual {
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
  }
}

@media (max-width: 720px) {
  .wf-cta {
    border-radius: 0;
  }
}

@media (max-width: 540px) {
  .wf-hero {
    padding-top: 70px;
  }

  .wf-hero__panel {
    padding: 28px;
  }
}

/* Botón flotante de WhatsApp */
.wf-whatsapp-float {
  display: none; /* Botón invisible - código preservado para uso futuro */
  /* display: flex; */ /* Descomentar para mostrar el botón */
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--wf-blanco);
}

.wf-whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.wf-whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .wf-whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .wf-whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

