/* ============================================================
   FINETWORK – DISTRIBUIDOR AUTORIZADO
   styles.css  |  Pure CSS — Poppins + Color corporativo #5c27be
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --purple: #5c27be;
  --purple-dark: #4a1f9a;
  --purple-light: #7c3ade;
  --purple-soft: rgba(92, 39, 190, 0.08);
  --purple-faint: #f3e8ff;
  --green: #16a34a;
  --green-bg: #dcfce7;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-purple: 0 8px 32px rgba(92, 39, 190, 0.28);
  --transition: 0.2s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* ── Utility ────────────────────────────────────────────────── */
.text-purple {
  color: var(--purple);
}

/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--purple-dark);
  box-shadow: var(--shadow-purple);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn--secondary:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}

.btn--outline {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn--outline:hover {
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

.btn--recommend {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.btn--recommend:hover {
  box-shadow: var(--shadow-purple);
  transform: translateY(-2px) scale(1.01);
}

.btn--recommend .icon-arrow {
  transition: transform var(--transition);
}

.btn--recommend:hover .icon-arrow {
  transform: translateX(4px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.btn--wa {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.btn--wa:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}

.btn--wa .icon-send {
  transition: transform var(--transition);
}

.btn--wa:hover .icon-send {
  transform: translateX(3px);
}

/* ── Badge "Más elegida" ────────────────────────────────────── */
.badge-floating {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  z-index: 10;
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 44px;
  height: 44px;
  background: var(--purple);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-box span {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.2;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%,
      rgba(92, 39, 190, 0.07) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 70%,
      rgba(124, 58, 222, 0.07) 0%,
      transparent 50%),
    linear-gradient(135deg, #f9fafb 0%, var(--purple-faint) 50%, #faf5ff 100%);
}

/* Dot pattern */
.hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(circle, var(--purple) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Animated blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}

.hero__blob--1 {
  width: 380px;
  height: 380px;
  right: -60px;
  top: 15%;
  background: var(--purple);
  opacity: 0.04;
}

.hero__blob--2 {
  width: 320px;
  height: 320px;
  left: -60px;
  bottom: 20%;
  background: var(--purple-light);
  opacity: 0.03;
  animation-delay: -4s;
  animation-duration: 10s;
}

@keyframes blobPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.04;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.08;
  }
}

.hero__panel {
  width: 100%;
  padding: 20px 0 80px 0;
}

.hero__center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--gray-600);
  margin-bottom: 8px;
}

.hero__sub {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 15px;
}

.hero__question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 28px;
}

/* Producto cards grid */
.producto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 36px;
}

.producto-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-md);
  overflow: visible;
}

.producto-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px) scale(1.02);
}

.producto-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--purple), var(--purple-light)) border-box;
  padding-top: 44px;
  box-shadow: var(--shadow-lg);
}

.producto-card--featured:hover {
  box-shadow: var(--shadow-xl);
}

.producto-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.25s ease;
}

.producto-card__icon svg {
  width: 36px;
  height: 36px;
}

.producto-card__icon--solid {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.producto-card__icon--outline {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: var(--purple);
}

.producto-card:hover .producto-card__icon--outline {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.producto-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.producto-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.producto-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-big {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.price-period {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.producto-card__saving {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
}

.producto-card__saving svg {
  width: 14px;
  height: 14px;
}

.saving--green {
  color: var(--green);
  background: var(--green-bg);
}

.saving--gray {
  color: var(--gray-500);
}

/* Divider "o" */
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto 24px;
}

.hero__divider-line {
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}

.hero__divider-text {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ── Hero: Recommendation view ─────────────────────────────── */
.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.rec-badge svg {
  width: 18px;
  height: 18px;
}

.rec-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 32px;
}

.rec-card {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--purple), var(--purple-light)) border-box;
  border: 3px solid transparent;
  animation: scaleIn 0.4s ease;
}

.rec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(243, 232, 255, 0.6),
      transparent,
      rgba(250, 245, 255, 0.3));
  pointer-events: none;
}

.rec-card__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}

.rec-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rec-icon-item svg {
  width: 44px;
  height: 44px;
  color: var(--purple);
}

.rec-icon-item .rec-icon-label {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9375rem;
}

.rec-icon-item .rec-icon-sub {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.rec-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
}

.price-huge {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.price-huge__period {
  font-size: 1.5rem;
  color: var(--gray-500);
}

.rec-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  position: relative;
}

.rec-card__features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.rec-card__features li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.rec-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: relative;
}

@media (min-width: 480px) {
  .rec-card__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.rec-link {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.rec-link:hover {
  color: var(--purple);
}

/* ============================================================
   TARIFAS
   ============================================================ */
.tarifas {
  padding: 50px 0;
  position: relative;
  background: linear-gradient(180deg,
      var(--white) 0%,
      #faf5ff 50%,
      var(--white) 100%);
}

.tarifas__topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd6fe, transparent);
}

.tarifas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding-top: 16px;
}

.tarifa-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-shadow: var(--shadow-md);
  overflow: visible;
  transition: all 0.25s ease;
}

.tarifa-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.tarifa-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--purple), var(--purple-light)) border-box;
  box-shadow: var(--shadow-lg);
  padding-top: 36px;
}

.tarifa-card--featured:hover {
  box-shadow: var(--shadow-xl);
}

.tarifa-card__body {
  flex: 1;
  margin-bottom: 20px;
}

.tarifa-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.tarifa-card__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f3ff;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  margin-bottom: 10px;
}

.spec-icon {
  width: 30px;
  height: 30px;
  background: var(--purple);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.spec-icon svg {
  width: 16px;
  height: 16px;
}

.tarifa-card__spec span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.tarifa-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0;
}

.price-main {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}

.tarifa-card__price span:last-child {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.tarifa-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tarifa-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--purple);
  flex-shrink: 0;
}

.tarifa-card__cta {
  margin-top: auto;
}

/* ============================================================
   FORMULARIO
   ============================================================ */
.formulario {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg,
      var(--gray-100) 0%,
      var(--purple-faint) 50%,
      #faf5ff 100%);
  overflow: hidden;
}

.formulario__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(30deg,
      transparent 48%,
      rgba(92, 39, 190, 0.04) 49%,
      rgba(92, 39, 190, 0.04) 51%,
      transparent 52%),
    linear-gradient(150deg,
      transparent 48%,
      rgba(92, 39, 190, 0.04) 49%,
      rgba(92, 39, 190, 0.04) 51%,
      transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
}

.formulario__inner {
  max-width: 640px;
  margin: 0 auto;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-bg);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #166534;
  font-weight: 500;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(92, 39, 190, 0.12);
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.form-group--check {
  margin-bottom: 8px;
}

.check-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  cursor: pointer;
  background: var(--white);
  display: grid;
  place-items: center;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.check-label input[type="checkbox"]::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.check-label input[type="checkbox"]:checked {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(92, 39, 190, 0.15);
}

.check-label input[type="checkbox"]:checked::before {
  opacity: 1;
}

.check-label:has(input[type="checkbox"]:checked) span {
  color: var(--gray-900);
}

.check-label span {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

#aceptaPrivacidad {
  padding: 8px;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.link-purple {
  color: var(--purple);
  text-decoration: underline;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 5px;
  min-height: 1.1em;
}

.product-selected-badge {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}

.form-legal {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   BENEFICIOS
   ============================================================ */
.beneficios {
  padding: 50px 0;
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, #faf5ff 100%);
  overflow: hidden;
}

.beneficios__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: radial-gradient(circle at 1px 1px,
      rgba(92, 39, 190, 0.18) 1px,
      transparent 0);
  background-size: 40px 40px;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 24px;
  position: relative;
}

.beneficio {
  text-align: center;
  cursor: default;
  transition: transform 0.25s ease;
}

.beneficio:hover {
  transform: translateY(-8px);
}

.beneficio__icon {
  position: relative;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
  color: var(--white);
  transition: box-shadow 0.25s ease;
}

.beneficio:hover .beneficio__icon {
  box-shadow: var(--shadow-purple);
}

.beneficio__icon svg {
  width: 36px;
  height: 36px;
}

.beneficio__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
}

.beneficio h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.beneficio p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 0;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.brand-name--light {
  color: var(--white);
}

.brand-sub--light {
  color: var(--gray-400);
}

.footer__legal {
  border-top: 1px solid #1f2937;
  padding-top: 24px;
}

.footer__legal>p:first-child {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

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

.footer__copy {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
  transition: all 0.25s ease;
  animation: popIn 0.5s 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.5);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
}

.wa-fab__dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================================
   MODAL WHATSAPP
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.25s ease;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal__header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-icon-box {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.wa-icon-box svg {
  width: 22px;
  height: 22px;
}

.modal__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.modal__header p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.modal__close {
  color: var(--gray-400);
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.modal__close:hover {
  color: var(--gray-700);
}

.modal__close svg {
  width: 22px;
  height: 22px;
}

.modal .form-group small {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 6px;
}

.modal__foot-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

/* Scroll-triggered reveal */
.anim-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.anim-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.anim-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.anim-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .producto-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .tarifas__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rec-card {
    padding: 32px 20px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .header__inner {
    gap: 12px;
  }

  .hero__panel {
    padding-bottom: 40px;
  }

  .tarifas,
  .formulario,
  .beneficios {
    padding: 25px 0;
  }

  .section-header {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .beneficios__grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }

  .btn--recommend {
    font-size: 0.875rem;
    padding: 14px 20px;
  }
}