/* ================================================================
   MI CIUDAD EMPRESARIOS · TARJETAS DE DESCUENTO
   Estética oficial MiCiudad.uy
================================================================ */

:root {
  --azul:       #003F8A;
  --azul2:      #0057BE;
  --azulclaro:  #EBF3FF;
  --celeste:    #00AEEF;
  --rojo:       #D62839;
  --rojo2:      #B71C1C;
  --rojoclaro:  #FFEBEE;
  --gris:       #F4F6FA;
  --gris2:      #E8ECF4;
  --gris3:      #CBD5E1;
  --texto:      #0F172A;
  --texto2:     #475569;
  --blanco:     #FFFFFF;
  --shadow:     0 8px 24px rgba(0,63,138,.08);
  --shadow-lg:  0 18px 50px rgba(0,63,138,.14);
  --shadow-sm:  0 2px 8px rgba(0,63,138,.06);
  --radio:      18px;
  --radio-sm:   12px;
  --radio-lg:   24px;
  --gradiente:  linear-gradient(135deg, var(--azul), var(--celeste));
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;
  color: var(--texto);
  background: var(--gris);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--azul2); text-decoration: none; }
a:hover { color: var(--azul); }

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--texto);
  margin: 0 0 14px 0;
  letter-spacing: -.01em;
}
h1 { font-size: 28px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
p  { line-height: 1.5; }

/* ===== Layout ===== */
.mc-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
}
.mc-wrap.narrow { max-width: 560px; }

.mc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--blanco);
  border-radius: var(--radio-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.mc-head .mc-nav-links { display: flex; gap: 8px; flex-wrap: wrap; }

.mc-logo {
  font-weight: 700;
  font-size: 22px;
  background: var(--gradiente);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}
.mc-logo span { font-weight: 700; }
.mc-logo small {
  display: block;
  font-size: 11px;
  color: var(--texto2);
  -webkit-text-fill-color: var(--texto2);
  background: none;
  font-weight: 500;
  margin-top: -2px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ===== Tarjetas contenedoras (cards UI) ===== */
.mc-card {
  background: var(--blanco);
  border-radius: var(--radio-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  border-left: 6px solid var(--azul);
}
.mc-card.accent-celeste { border-left-color: var(--celeste); }
.mc-card.accent-rojo    { border-left-color: var(--rojo); }
.mc-card.no-accent      { border-left: none; }
.mc-card h2 { margin-top: 0; }

.mc-card .head-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
}

/* ===== Grids ===== */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.grid4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 720px) {
  .grid, .grid3, .grid4 { grid-template-columns: 1fr; }
}

/* ===== Botones ===== */
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gradiente);
  color: var(--blanco);
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,87,190,.25);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.mc-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,87,190,.35); color: var(--blanco); }
.mc-btn:active { transform: translateY(0); }

.mc-btn.light {
  background: var(--azulclaro);
  color: var(--azul);
  box-shadow: none;
}
.mc-btn.light:hover { background: #DCEAFE; color: var(--azul); }

.mc-btn.gray {
  background: var(--gris2);
  color: var(--texto2);
  box-shadow: none;
}
.mc-btn.gray:hover { background: var(--gris3); color: var(--texto); }

.mc-btn.danger {
  background: linear-gradient(135deg, var(--rojo), var(--rojo2));
  box-shadow: 0 6px 16px rgba(214,40,57,.25);
}
.mc-btn.full { width: 100%; padding: 14px; font-size: 16px; }
.mc-btn.small { padding: 7px 12px; font-size: 13px; border-radius: 10px; }

button.mc-btn { font-family: inherit; }

/* ===== Formularios ===== */
label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
  font-size: 14px;
  color: var(--texto2);
}
input[type="text"], input[type="password"], input[type="email"],
input[type="tel"], input[type="number"], input[type="date"],
input:not([type]), select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gris2);
  border-radius: 12px;
  background: var(--blanco);
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  color: var(--texto);
  transition: border-color .12s, box-shadow .12s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--azul2);
  box-shadow: 0 0 0 3px rgba(0,87,190,.12);
}
textarea { resize: vertical; min-height: 90px; }

/* ===== Tablas ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radio); }
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanco);
  font-size: 14px;
}
.table th, .table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--gris2);
}
.table th {
  font-weight: 700;
  font-size: 13px;
  color: var(--texto2);
  text-transform: uppercase;
  letter-spacing: .03em;
  background: var(--gris);
}
.table tr:last-child td { border-bottom: 0; }
.table tr:hover td { background: var(--azulclaro); }
.table small { color: var(--texto2); }

/* ===== Badges ===== */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blanco);
  background: var(--azul);
}
.badge.ok   { background: #16a34a; }
.badge.no   { background: var(--rojo); }
.badge.gray { background: var(--gris3); color: var(--texto2); }

.badge.plan-bronce   { background: linear-gradient(135deg, #b87333, #d49560); }
.badge.plan-plata    { background: linear-gradient(135deg, #708090, #b8c2cc); color: #1f2937; }
.badge.plan-oro      { background: linear-gradient(135deg, #b8860b, #ffd700); color: #3b2f00; }
.badge.plan-diamante {
  background: linear-gradient(135deg, #5b6cf0, #c084fc, #ec4899, #06b6d4);
  background-size: 300% 300%;
  animation: holo 6s ease infinite;
}

@keyframes holo {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Mensajes flash ===== */
.mc-flash {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 600;
  border-left: 6px solid var(--azul);
  background: var(--azulclaro);
  color: var(--azul);
}
.mc-flash-error { border-left-color: var(--rojo); background: var(--rojoclaro); color: var(--rojo2); }
.mc-flash-warn  { border-left-color: #f59e0b; background: #FFF7E6; color: #92400e; }
.mc-flash-ok    { border-left-color: #16a34a; background: #E8F5EE; color: #166534; }

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--rojoclaro);
  color: var(--rojo2);
  border-left: 6px solid var(--rojo);
  margin: 10px 0;
  font-weight: 600;
}

/* ===== Stats numéricos (dashboard) ===== */
.stat {
  background: var(--blanco);
  border-radius: var(--radio-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--azul);
}
.stat .label { font-size: 13px; color: var(--texto2); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.stat .value { font-size: 38px; font-weight: 700; color: var(--azul); margin-top: 6px; line-height: 1; }
.stat.celeste { border-left-color: var(--celeste); }
.stat.celeste .value { color: var(--celeste); }
.stat.rojo    { border-left-color: var(--rojo); }
.stat.rojo .value { color: var(--rojo); }
.stat.oro     { border-left-color: #b8860b; }
.stat.oro .value { color: #b8860b; }

/* ===== Footer ===== */
.mc-footer {
  text-align: center;
  padding: 28px 16px;
  color: var(--texto2);
  font-size: 13px;
}
.mc-footer .brand { color: var(--rojo); font-weight: 700; }
.mc-footer .brand b { font-weight: 700; }

/* ===== Login pages ===== */
.mc-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(160deg, var(--azulclaro) 0%, #FFFFFF 60%, #FFF 100%);
}
.mc-login-card {
  width: 100%;
  max-width: 460px;
  background: var(--blanco);
  border-radius: var(--radio-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--azul);
}
.mc-login-card .mc-logo { font-size: 26px; margin-bottom: 18px; }
.mc-login-card .wa-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 10px;
  background: #E7F8E9;
  color: #1f7a2b;
  border-radius: 12px;
  font-weight: 600;
}
.mc-login-card .wa-link:hover { background: #d3f1d7; color: #155a1c; }

/* ===== Hero pública (index) ===== */
.hero {
  background: var(--gradiente);
  color: var(--blanco);
  border-radius: var(--radio-lg);
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-lg);
}
.hero h1 { color: var(--blanco); font-size: 38px; margin-bottom: 14px; }
.hero p  { font-size: 17px; opacity: .95; max-width: 620px; margin: 0 auto 22px; }

/* ===== Filtros / búsqueda ===== */
.filtros {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}
.filtros input, .filtros select { width: auto; min-width: 180px; flex: 1; }

/* ===== Print del cartel ===== */
@media print {
  body { background: white; }
  .no-print { display: none !important; }
  .mc-wrap { padding: 0; }
  .mc-card { box-shadow: none; border-left: none; }
}

/* ================================================================
   MODO PRO · landing y logins con estética impactante
================================================================ */

body.pro-page { background: #fff; }

/* ============ HERO ============ */
.hero-pro {
  position: relative;
  background: linear-gradient(135deg, #003F8A 0%, #0057BE 55%, #00AEEF 100%);
  color: #fff;
  padding: 90px 24px 160px;
  overflow: hidden;
  text-align: center;
}
.hero-pro::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, #00AEEF 0%, transparent 70%);
  filter: blur(70px); opacity: 0.45;
  top: -200px; left: -180px; pointer-events: none;
}
.hero-pro::after {
  content: ''; position: absolute;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, #FFE082 0%, transparent 70%);
  filter: blur(80px); opacity: 0.25;
  bottom: 80px; right: -150px; pointer-events: none;
}
.hero-pro > * { position: relative; z-index: 2; }

.hero-nav {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto 64px; padding: 0 8px;
}
.hero-brand-pro {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 26px; letter-spacing: -0.01em;
}
.hero-brand-pro b { color: #FFE082; font-weight: 700; }
.hero-nav-links { display: flex; gap: 18px; align-items: center; }
.hero-nav-links a:not(.mc-btn) {
  color: rgba(255,255,255,.88); text-decoration: none;
  font-weight: 500; font-size: 14px; transition: color .2s;
}
.hero-nav-links a:not(.mc-btn):hover { color: #fff; }
.hero-nav-links .mc-btn.light.small {
  background: rgba(255,255,255,.18); color: #fff;
  border: 1px solid rgba(255,255,255,.32); padding: 8px 16px;
}
.hero-nav-links .mc-btn.light.small:hover { background: rgba(255,255,255,.3); }

.hero-content { max-width: 980px; margin: 0 auto; }

.hero-logo-pro {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(54px, 11vw, 120px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin: 0 0 24px;
  display: inline-block; position: relative;
}
.hero-logo-pro .dot {
  display: inline-block;
  width: clamp(14px, 1.6vw, 20px); height: clamp(14px, 1.6vw, 20px);
  background: #D62839; border-radius: 50%;
  box-shadow: 0 0 30px rgba(214,40,57,0.75);
  vertical-align: super; margin-left: 6px;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(214,40,57,0.75); }
  50%      { transform: scale(1.18); box-shadow: 0 0 55px rgba(214,40,57,0.95); }
}

.hero-title-pro {
  font-size: clamp(19px, 2.6vw, 28px); font-weight: 400; line-height: 1.45;
  max-width: 720px; margin: 0 auto 38px; opacity: 0.95;
}

.hero-actions-pro {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-btn-pro {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 14px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: inherit;
}
.hero-btn-pro.primary {
  background: #D62839; color: #fff;
  box-shadow: 0 14px 30px rgba(214,40,57,0.42);
}
.hero-btn-pro.primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(214,40,57,0.6); }
.hero-btn-pro.secondary {
  background: rgba(255,255,255,0.97); color: #003F8A;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.hero-btn-pro.secondary:hover { transform: translateY(-3px); background: #fff; }

/* ============ MOCKUP DE TARJETA FLOTANDO ============ */
.hero-mockup { margin: 56px auto 0; width: fit-content; perspective: 1500px; }
.float-card-pro {
  width: 380px; max-width: 86vw;
  aspect-ratio: 1.586 / 1; border-radius: 22px;
  padding: 22px 26px; position: relative;
  color: #3b2f00; overflow: hidden;
  background: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #ffec80 100%);
  box-shadow: 0 50px 100px rgba(0,0,0,0.45), 0 20px 40px rgba(0,63,138,0.4);
  transform: rotateY(-14deg) rotateX(8deg) rotate(-4deg);
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: rotateY(-14deg) rotateX(8deg) rotate(-4deg) translateY(0); }
  50%      { transform: rotateY(-11deg) rotateX(6deg) rotate(-3deg) translateY(-14px); }
}
.float-card-pro::before {
  content: ''; position: absolute;
  top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: sheen-pro 5s infinite;
}
@keyframes sheen-pro {
  0% { left: -60%; } 100% { left: 120%; }
}
.float-card-pro > * { position: relative; z-index: 2; }
.fc-top { display: flex; justify-content: space-between; align-items: center; }
.fc-brand-mock { font-family: Quicksand; font-weight: 600; font-size: 14px; }
.fc-brand-mock b { font-weight: 700; }
.fc-plan-badge {
  padding: 4px 12px; background: rgba(255,255,255,0.6);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
}
.fc-chip {
  width: 42px; height: 30px; margin: 14px 0 14px;
  background: linear-gradient(135deg, #c4951b, #f5d456);
  border-radius: 7px;
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.25);
  position: relative;
}
.fc-chip::after {
  content: ''; position: absolute; inset: 6px;
  border: 1px solid rgba(0,0,0,0.15); border-radius: 4px;
}
.fc-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.02em; }
.fc-num {
  font-family: 'Courier New', monospace;
  font-size: 18px; font-weight: 600; letter-spacing: 0.1em; margin-bottom: 14px;
}
.fc-bottom { display: flex; justify-content: space-between; }
.fc-bottom .label {
  font-size: 9px; opacity: 0.6; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 2px;
}
.fc-bottom .val { font-weight: 700; font-size: 13px; }

/* ============ ONDA INFERIOR ============ */
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 90px; display: block;
}
.hero-wave path { fill: #ffffff; }

/* ============ FEATURE SECTION (3 pasos) ============ */
.feature-section { background: #fff; padding: 0 24px 96px; }
.feature-grid-pro {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px; margin: -100px auto 0;
  position: relative; z-index: 5;
}
.feature-card-pro {
  background: #fff; border-radius: 22px; padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(0,63,138,0.08), 0 4px 14px rgba(0,63,138,0.05);
  border: 1px solid rgba(0,63,138,0.05);
  transition: transform .3s, box-shadow .3s;
}
.feature-card-pro:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(0,63,138,0.16); }
.feature-icon-pro {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0,63,138,0.32);
}
.feature-card-pro h3 { font-size: 19px; margin: 0 0 8px; color: #003F8A; font-weight: 700; }
.feature-card-pro p { font-size: 14px; color: #475569; line-height: 1.55; margin: 0; }

/* ============ PLANES ============ */
.planes-section { background: #F4F6FA; padding: 80px 24px; }
.section-title-pro {
  text-align: center; font-family: Quicksand; font-weight: 700;
  font-size: clamp(28px, 4vw, 40px); color: #003F8A;
  margin: 0 0 12px; letter-spacing: -0.02em;
}
.section-subtitle-pro {
  text-align: center; color: #475569; font-size: 16px;
  max-width: 600px; margin: 0 auto 48px;
}
.planes-grid-pro {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.plan-card-pro {
  background: #fff; border-radius: 22px; padding: 30px 26px;
  position: relative; overflow: hidden; border-left: 6px solid;
  box-shadow: 0 20px 40px rgba(0,63,138,0.08);
  transition: transform .3s, box-shadow .3s;
}
.plan-card-pro:hover { transform: translateY(-6px); box-shadow: 0 35px 65px rgba(0,63,138,0.16); }
.plan-card-pro.p-bronce { border-color: #b87333; }
.plan-card-pro.p-plata  { border-color: #708090; }
.plan-card-pro.p-oro    { border-color: #b8860b; }
.plan-card-pro.p-diamante {
  border: 6px solid transparent;
  border-image: linear-gradient(135deg, #b3e5fc, #ce93d8, #ffe082) 1;
  border-right: 0; border-top: 0; border-bottom: 0;
}
.plan-tag-pro {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  margin-bottom: 14px; color: #fff;
}
.p-bronce .plan-tag-pro { background: linear-gradient(135deg, #b87333, #d49560); }
.p-plata  .plan-tag-pro { background: linear-gradient(135deg, #708090, #b8c2cc); color: #1c2434; }
.p-oro    .plan-tag-pro { background: linear-gradient(135deg, #b8860b, #ffd700); color: #3b2f00; }
.p-diamante .plan-tag-pro {
  background: linear-gradient(135deg, #b3e5fc, #ce93d8 50%, #ffe082);
  background-size: 200% 200%; color: #1a1a2e;
  animation: holo-tag 6s ease infinite;
}
@keyframes holo-tag {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.plan-card-pro h3 { font-size: 22px; margin: 0 0 8px; color: #003F8A; font-weight: 700; letter-spacing: -0.01em; }
.plan-card-pro p { font-size: 14px; color: #475569; line-height: 1.55; margin: 0; min-height: 60px; }

/* ============ CTA ============ */
.cta-section-pro { background: #fff; padding: 80px 24px; }
.cta-box-pro {
  max-width: 800px; margin: 0 auto;
  background: linear-gradient(135deg, #003F8A, #0057BE 65%, #00AEEF);
  border-radius: 28px; padding: 64px 48px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,63,138,0.32);
}
.cta-box-pro::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,224,130,0.32), transparent 50%);
}
.cta-box-pro > * { position: relative; z-index: 2; }
.cta-box-pro h2 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 12px; font-weight: 700; }
.cta-box-pro p  { opacity: 0.92; margin: 0 0 28px; font-size: 16px; }

/* ============ ANIMACIONES DE ENTRADA ============ */
.fade-up { animation: fade-up-pro 0.8s ease both; opacity: 0; }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.25s; }
.fade-up.d3 { animation-delay: 0.4s; }
.fade-up.d4 { animation-delay: 0.55s; }
@keyframes fade-up-pro {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ AUTH SCREEN (logins) ============ */
.auth-screen {
  min-height: 100vh; display: grid; grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 920px) { .auth-screen { grid-template-columns: 1.1fr 1fr; } }
.auth-left {
  background: linear-gradient(135deg, #003F8A 0%, #0057BE 55%, #00AEEF 100%);
  color: #fff; padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.auth-left::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, #00AEEF, transparent 70%);
  filter: blur(70px); opacity: 0.4;
  top: -100px; right: -150px; pointer-events: none;
}
.auth-left::after {
  content: ''; position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, #FFE082, transparent 70%);
  filter: blur(80px); opacity: 0.22;
  bottom: -80px; left: -100px; pointer-events: none;
}
.auth-left > * { position: relative; z-index: 2; }
.auth-brand-pro {
  font-family: Quicksand; font-weight: 700;
  font-size: 26px; margin-bottom: 48px;
}
.auth-brand-pro b { color: #FFE082; }
.auth-headline {
  font-size: clamp(34px, 4.5vw, 52px); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 22px;
}
.auth-subtitle {
  font-size: 17px; opacity: 0.92; max-width: 460px;
  line-height: 1.5; margin: 0 0 28px;
}
.auth-bullets {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 420px; margin-top: 12px;
}
.auth-bullets div {
  display: flex; gap: 12px; align-items: center; font-size: 15px;
}
.auth-bullets .b-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.auth-right {
  background: #fff; display: flex;
  align-items: center; justify-content: center;
  padding: 48px 24px;
}
.auth-card-pro { width: 100%; max-width: 420px; }
.auth-card-pro h2 {
  font-size: 28px; margin: 0 0 8px; font-weight: 700;
  color: #003F8A; letter-spacing: -0.02em;
}
.auth-card-pro .lead { color: #475569; font-size: 15px; margin: 0 0 28px; }
.auth-card-pro label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #475569; margin: 14px 0 6px;
}
.auth-card-pro input[type=text],
.auth-card-pro input[type=password] {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid #E8ECF4; border-radius: 12px;
  font-family: inherit; font-size: 15px;
  background: #F4F6FA; box-sizing: border-box;
  transition: border .2s, box-shadow .2s, background .2s;
}
.auth-card-pro input[type=text]:focus,
.auth-card-pro input[type=password]:focus {
  border-color: #0057BE; outline: none; background: #fff;
  box-shadow: 0 0 0 4px rgba(0,87,190,0.12);
}
.btn-pro-submit {
  width: 100%; padding: 16px; border: 0; border-radius: 12px;
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  color: #fff; font-weight: 700; font-size: 15px;
  cursor: pointer; margin-top: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(0,63,138,0.32);
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.btn-pro-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,63,138,0.5);
}
.auth-link-wa {
  display: block; text-align: center; margin-top: 18px;
  padding: 13px; background: #E8F5EE; color: #166534;
  border-radius: 12px; text-decoration: none;
  font-weight: 600; font-size: 14px;
  transition: background .2s;
}
.auth-link-wa:hover { background: #d4ecdf; }

@media (max-width: 919px) {
  .auth-left { padding: 48px 24px 36px; text-align: center; }
  .auth-left .auth-bullets { display: none; }
  .auth-subtitle { font-size: 15px; margin-bottom: 0; }
  .auth-headline { font-size: 30px; }
}

/* Responsive hero */
@media (max-width: 720px) {
  .hero-pro { padding: 60px 18px 110px; }
  .hero-nav { margin-bottom: 36px; }
  .hero-nav-links a:not(.mc-btn) { display: none; }
  .float-card-pro { width: 320px; padding: 18px 22px; }
  .fc-name { font-size: 14px; }
  .fc-num { font-size: 16px; }
  .feature-grid-pro { margin-top: -60px; }
  .cta-box-pro { padding: 48px 28px; }
}

/* ================================================================
   MODO PREMIUM 3D · panel del comercio, dashboard financial
================================================================ */

/* Card "premium" con gradiente azul → celeste y borde dorado sutil */
.pcard {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 20px 50px rgba(0,63,138,0.08),
    0 4px 14px rgba(0,63,138,0.05);
  border: 1px solid rgba(0,63,138,0.06);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.pcard.tilt:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 35px 70px rgba(0,63,138,0.18),
    0 8px 20px rgba(0,63,138,0.08);
}

/* Card hero del último uso (la "tarjeta de dinero") */
.pcard-hero {
  background: linear-gradient(135deg, #003F8A 0%, #0057BE 55%, #00AEEF 100%);
  color: #fff;
  border-radius: 24px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 30px 70px rgba(0,63,138,0.35),
    0 8px 20px rgba(0,63,138,0.18);
}
.pcard-hero::before {
  content: ''; position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, #FFE082 0%, transparent 70%);
  filter: blur(70px); opacity: 0.28;
  top: -120px; right: -120px; pointer-events: none;
}
.pcard-hero::after {
  content: ''; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, #00AEEF 0%, transparent 70%);
  filter: blur(60px); opacity: 0.35;
  bottom: -100px; left: -80px; pointer-events: none;
}
.pcard-hero > * { position: relative; z-index: 2; }

/* Big number stat */
.big-stat {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pcard-hero .big-stat {
  background: linear-gradient(135deg, #FFE082, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
}
.big-stat-suf {
  font-size: 0.45em; font-weight: 600;
  opacity: 0.75; margin-left: 6px; vertical-align: top;
}
.stat-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(15,23,42,0.5);
  margin-bottom: 6px;
}
.pcard-hero .stat-label { color: rgba(255,255,255,0.75); }

/* Grid de stats */
.stats-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 20px 0 24px;
}

/* Botón ver novedades (CTA grande) */
.btn-refresh {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #D62839, #B71C1C);
  color: #fff !important; font-weight: 700; font-size: 16px;
  text-decoration: none; cursor: pointer; border: 0;
  font-family: inherit; letter-spacing: 0.02em;
  box-shadow:
    0 15px 35px rgba(214,40,57,0.4),
    0 4px 12px rgba(214,40,57,0.25),
    0 1px 0 rgba(255,255,255,0.25) inset;
  transition: transform .2s, box-shadow .2s;
}
.btn-refresh:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px rgba(214,40,57,0.55),
    0 6px 16px rgba(214,40,57,0.35),
    0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-refresh .ico { font-size: 20px; }

/* Header del panel del comercio */
.com-header {
  background: linear-gradient(135deg, #003F8A 0%, #0057BE 55%, #00AEEF 100%);
  color: #fff;
  padding: 24px 28px 30px;
  position: relative; overflow: hidden;
}
.com-header::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, #00AEEF, transparent 70%);
  filter: blur(80px); opacity: 0.3;
  top: -250px; right: -200px;
}
.com-header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; position: relative; z-index: 2;
}
.com-brand-line {
  font-family: Quicksand; font-weight: 600;
  font-size: 13px; opacity: 0.85; letter-spacing: 0.08em;
}
.com-brand-line b { color: #FFE082; font-weight: 700; }
.com-name {
  font-size: clamp(22px, 3vw, 32px); margin: 4px 0 0;
  font-weight: 700; letter-spacing: -0.02em;
}
.com-nav {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.com-nav a, .com-nav button {
  padding: 10px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; text-decoration: none; font-weight: 600; font-size: 13px;
  font-family: inherit; cursor: pointer;
  transition: background .2s;
}
.com-nav a:hover, .com-nav button:hover { background: rgba(255,255,255,0.28); }
.com-nav a.active { background: #fff; color: #003F8A; }
.com-nav .salir { background: rgba(214,40,57,0.85); border-color: rgba(214,40,57,0.5); }
.com-nav .salir:hover { background: #D62839; }

.com-main { max-width: 1200px; margin: 0 auto; padding: 32px 24px 60px; }

/* Último uso destacado */
.ultimo-uso-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  align-items: center;
}
@media (min-width: 720px) {
  .ultimo-uso-grid { grid-template-columns: 1.2fr 1fr; }
}
.uu-bigpct {
  font-size: clamp(72px, 12vw, 130px); font-weight: 700;
  line-height: 0.9; letter-spacing: -0.04em;
  font-family: Quicksand;
  background: linear-gradient(135deg, #FFE082 0%, #FFFFFF 60%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.uu-bigpct .pct-sym { font-size: 0.5em; vertical-align: top; opacity: 0.85; }
.uu-info { font-size: 14px; line-height: 1.6; }
.uu-info .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.75; }
.uu-info .val { font-size: 18px; font-weight: 700; margin-top: 2px; }
.uu-info .row + .row { margin-top: 12px; }
.uu-empty {
  text-align: center; padding: 40px 20px;
}
.uu-empty h3 { font-size: 28px; margin: 0 0 8px; font-weight: 700; }
.uu-empty p { opacity: 0.9; margin: 0; font-size: 15px; max-width: 480px; margin: 0 auto; line-height: 1.5; }

/* Tabla de usos elegante */
.tabla-pro {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,63,138,0.06);
}
.tabla-pro thead th {
  background: linear-gradient(135deg, #F4F6FA, #fff);
  text-align: left; padding: 14px 18px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #475569; border-bottom: 1px solid #E8ECF4;
}
.tabla-pro tbody td {
  padding: 14px 18px; border-bottom: 1px solid #F4F6FA;
  font-size: 14px;
}
.tabla-pro tbody tr:hover { background: #F4F6FA; }
.tabla-pro tbody tr:last-child td { border-bottom: 0; }
.tabla-pro .pct {
  font-weight: 700; color: #003F8A; font-size: 16px;
  font-family: Quicksand;
}
.tabla-pro .empresario b { color: #0F172A; }
.tabla-pro .empresario span { color: #475569; font-size: 12px; display: block; margin-top: 2px; }
.tabla-pro .plan-bag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: #fff;
}
.plan-bag.p-bronce { background: linear-gradient(135deg, #b87333, #d49560); }
.plan-bag.p-plata  { background: linear-gradient(135deg, #708090, #b8c2cc); color: #1c2434; }
.plan-bag.p-oro    { background: linear-gradient(135deg, #b8860b, #ffd700); color: #3b2f00; }
.plan-bag.p-diamante { background: linear-gradient(135deg, #b3e5fc, #ce93d8 50%, #ffe082); color: #1a1a2e; }

/* Días de la semana checkboxes */
.dias-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px;
  margin: 10px 0 6px;
}
@media (max-width: 600px) {
  .dias-grid { grid-template-columns: repeat(4, 1fr); }
}
.dia-check {
  position: relative; cursor: pointer; user-select: none;
}
.dia-check input { position: absolute; opacity: 0; pointer-events: none; }
.dia-check .dia-card {
  display: block; padding: 14px 8px;
  border: 2px solid #E8ECF4; border-radius: 12px;
  text-align: center; background: #F4F6FA;
  transition: all .2s; font-weight: 600; font-size: 13px;
  color: #475569;
}
.dia-check .dia-card b {
  display: block; font-size: 18px; font-weight: 700; margin-bottom: 2px;
}
.dia-check input:checked + .dia-card {
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  border-color: #003F8A; color: #fff;
  box-shadow: 0 8px 20px rgba(0,63,138,0.3);
  transform: translateY(-2px);
}

/* Filtros tipo pill */
.filtros-pill {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px;
}
.filtros-pill a {
  padding: 9px 18px; border-radius: 100px;
  background: #fff; border: 1px solid #E8ECF4;
  color: #475569; text-decoration: none; font-weight: 600;
  font-size: 13px; transition: all .2s;
}
.filtros-pill a:hover { background: #F4F6FA; }
.filtros-pill a.activo {
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 16px rgba(0,63,138,0.25);
}

/* Banner "día no aplica" */
.dia-no-aplica {
  background: linear-gradient(135deg, #FFEBEE, #FFD6DA);
  border-radius: 20px; padding: 32px 28px;
  text-align: center; border-left: 8px solid #D62839;
}
.dia-no-aplica .ico { font-size: 56px; margin-bottom: 8px; }
.dia-no-aplica h2 { font-size: 26px; color: #B71C1C; margin: 0 0 10px; font-weight: 700; }
.dia-no-aplica p { color: #475569; margin: 6px 0; font-size: 15px; }
.dia-no-aplica .dias-disp {
  display: inline-flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; justify-content: center;
}
.dia-no-aplica .dias-disp span {
  padding: 6px 14px; background: #fff; color: #B71C1C;
  border-radius: 100px; font-weight: 700; font-size: 13px;
}

/* ================================================================
   ▲▲▲ VIP MODE ▲▲▲ · estética premium awwwards
   metales realistas, glassmorphism, glow dinámico, tilt 3D, scroll reveal
================================================================ */

:root {
  /* Oro real */
  --gold-1: #5c3a0c;
  --gold-2: #8a6010;
  --gold-3: #b8860b;
  --gold-4: #e6c14f;
  --gold-5: #ffd700;
  --gold-6: #fff3a0;
  --gold-glow: rgba(255, 215, 0, 0.45);

  /* Plata pulida */
  --silver-1: #2c3540;
  --silver-2: #4f5a6b;
  --silver-3: #708090;
  --silver-4: #aab4c0;
  --silver-5: #d6dde5;
  --silver-6: #f0f3f7;
  --silver-glow: rgba(170, 180, 192, 0.4);

  /* Bronce metálico */
  --bronze-1: #3d2208;
  --bronze-2: #6b3d12;
  --bronze-3: #8b5a2b;
  --bronze-4: #b87333;
  --bronze-5: #d49560;
  --bronze-6: #e6b78a;
  --bronze-glow: rgba(184, 115, 51, 0.4);

  /* Diamante iridiscente */
  --dia-1: #b3e5fc;
  --dia-2: #80deea;
  --dia-3: #ce93d8;
  --dia-4: #f48fb1;
  --dia-5: #ffe082;

  /* Premium blues */
  --vip-blue-1: #001b4d;
  --vip-blue-2: #0033a0;
  --vip-blue-3: #0066ff;
  --vip-blue-4: #00aeef;
}

/* === Body VIP con fondo vivo === */
body.vip {
  background: #ffffff;
  position: relative;
}

body.vip::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 0% 0%, rgba(0, 174, 239, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 600px at 100% 100%, rgba(0, 102, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 50% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* === Partículas flotantes === */
.particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 1;
}
.particles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(0, 174, 239, 0.4) 40%, transparent 70%);
  box-shadow: 0 0 8px rgba(0, 174, 239, 0.4);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(50px); opacity: 0; }
}

/* === Hero VIP cinematográfico === */
.hero-vip {
  position: relative;
  background: linear-gradient(135deg, #001b4d 0%, #003F8A 40%, #0057BE 70%, #00AEEF 100%);
  color: #fff;
  padding: 100px 24px 180px;
  overflow: hidden;
  text-align: center;
}
.hero-vip::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.5) 0%, transparent 60%);
  filter: blur(90px); opacity: 0.7;
  top: -300px; left: -250px;
  animation: blob-drift 18s ease-in-out infinite;
}
.hero-vip::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, transparent 60%);
  filter: blur(100px); opacity: 0.45;
  bottom: -200px; right: -200px;
  animation: blob-drift 22s ease-in-out infinite reverse;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.08); }
  66%      { transform: translate(-40px, 30px) scale(0.95); }
}
.hero-vip > * { position: relative; z-index: 3; }

.hero-vip-grid {
  position: absolute; inset: 0; opacity: 0.08; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 90%);
}

.hero-nav-vip {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto 60px; padding: 0 8px;
}
.hero-brand-vip {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 26px;
  letter-spacing: -0.01em; position: relative;
}
.hero-brand-vip b { color: var(--gold-5); font-weight: 700; }

.hero-logo-vip {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 11vw, 130px);
  line-height: 0.95; letter-spacing: -0.035em;
  margin: 0 0 24px;
  display: inline-block; position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #b3d9ff 50%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shine 6s ease-in-out infinite;
}
@keyframes text-shine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero-logo-vip .dot {
  display: inline-block;
  width: clamp(14px, 1.6vw, 22px); height: clamp(14px, 1.6vw, 22px);
  background: #D62839; border-radius: 50%;
  box-shadow: 0 0 30px rgba(214, 40, 57, 0.8), 0 0 60px rgba(214, 40, 57, 0.4);
  vertical-align: super; margin-left: 8px;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.hero-tagline-vip {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 300; line-height: 1.5;
  max-width: 680px; margin: 0 auto 44px;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

/* === Botón VIP con shimmer y glow === */
.btn-vip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; border: 0; cursor: pointer;
  font-family: inherit; letter-spacing: 0.02em;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .35s;
}
.btn-vip.primary {
  background: linear-gradient(135deg, #D62839 0%, #B71C1C 100%);
  color: #fff;
  box-shadow:
    0 14px 36px rgba(214, 40, 57, 0.45),
    0 0 60px rgba(214, 40, 57, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-vip.secondary {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  color: #003F8A;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.btn-vip::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(.2,.7,.3,1);
}
.btn-vip:hover::before { left: 130%; }
.btn-vip.primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px rgba(214, 40, 57, 0.6),
    0 0 90px rgba(214, 40, 57, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-vip.secondary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* === TARJETAS METÁLICAS REALISTAS === */

.tarjeta-metal {
  width: 100%;
  aspect-ratio: 1.586 / 1;
  border-radius: 22px;
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
}

/* Brillo barrido (sheen) */
.tarjeta-metal::after {
  content: '';
  position: absolute;
  top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  animation: metal-sheen 6s infinite;
  pointer-events: none;
  z-index: 4;
}
@keyframes metal-sheen {
  0%   { left: -60%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* Reflejo arriba (glaze) */
.tarjeta-metal::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    transparent 60%);
  pointer-events: none; z-index: 3;
}

.tarjeta-metal > * { position: relative; z-index: 5; }

/* === ORO REAL === */
.tarjeta-metal.oro {
  background:
    linear-gradient(135deg,
      var(--gold-2) 0%,
      var(--gold-3) 18%,
      var(--gold-5) 42%,
      var(--gold-6) 55%,
      var(--gold-5) 70%,
      var(--gold-3) 88%,
      var(--gold-2) 100%);
  box-shadow:
    0 30px 70px var(--gold-glow),
    0 12px 30px rgba(184, 134, 11, 0.35),
    0 0 0 1px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(92, 58, 12, 0.3);
  color: var(--gold-1);
}

/* === PLATA PULIDA === */
.tarjeta-metal.plata {
  background:
    linear-gradient(135deg,
      var(--silver-3) 0%,
      var(--silver-4) 20%,
      var(--silver-6) 45%,
      var(--silver-5) 55%,
      var(--silver-4) 75%,
      var(--silver-3) 100%);
  box-shadow:
    0 30px 70px var(--silver-glow),
    0 12px 30px rgba(108, 121, 138, 0.3),
    0 0 0 1px rgba(170, 180, 192, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 4px rgba(44, 53, 64, 0.25);
  color: var(--silver-1);
}

/* === BRONCE === */
.tarjeta-metal.bronce {
  background:
    linear-gradient(135deg,
      var(--bronze-3) 0%,
      var(--bronze-4) 25%,
      var(--bronze-5) 50%,
      var(--bronze-6) 60%,
      var(--bronze-4) 80%,
      var(--bronze-2) 100%);
  box-shadow:
    0 30px 70px var(--bronze-glow),
    0 12px 30px rgba(139, 90, 43, 0.32),
    0 0 0 1px rgba(184, 115, 51, 0.4),
    inset 0 1px 0 rgba(255, 230, 200, 0.5),
    inset 0 -2px 4px rgba(61, 34, 8, 0.3);
  color: var(--bronze-1);
}

/* === DIAMANTE IRIDISCENTE === */
.tarjeta-metal.diamante {
  background:
    conic-gradient(from 0deg at 50% 50%,
      var(--dia-1), var(--dia-2), var(--dia-3), var(--dia-4), var(--dia-5), var(--dia-1));
  background-size: 250% 250%;
  animation: diamante-spin 10s linear infinite;
  box-shadow:
    0 30px 70px rgba(206, 147, 216, 0.4),
    0 12px 30px rgba(179, 229, 252, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: #1a1a2e;
  position: relative;
}
.tarjeta-metal.diamante > * { mix-blend-mode: normal; }
@keyframes diamante-spin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Cards de plan grandes en landing === */
.plan-cards-vip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-vip-wrap {
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
}
.plan-vip-wrap:hover { transform: translateY(-12px); }

/* === Glass card === */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow:
    0 20px 50px rgba(0, 63, 138, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* === Feature cards premium === */
.feature-vip {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245, 247, 252, 0.95));
  border-radius: 24px;
  padding: 36px 30px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0, 63, 138, 0.08);
  box-shadow:
    0 25px 60px rgba(0, 63, 138, 0.08),
    0 5px 15px rgba(0, 63, 138, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform .4s, box-shadow .4s;
}
.feature-vip:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 80px rgba(0, 63, 138, 0.18),
    0 8px 20px rgba(0, 63, 138, 0.08);
}
.feature-vip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.5), transparent);
}

.feature-icon-vip {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #003F8A 0%, #0066ff 50%, #00AEEF 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 20px;
  box-shadow:
    0 14px 30px rgba(0, 63, 138, 0.35),
    0 0 50px rgba(0, 174, 239, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}
.feature-icon-vip::after {
  content: '';
  position: absolute;
  top: 1px; left: 1px; right: 1px; height: 50%;
  border-radius: 17px 17px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
}

/* === Scroll reveal === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.3,1), transform 0.9s cubic-bezier(.2,.7,.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.25s; }
.reveal.delay-3 { transition-delay: 0.4s; }
.reveal.delay-4 { transition-delay: 0.55s; }

/* === Tilt 3D base (JS aplica el transform) === */
.tilt-3d {
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

/* === Section títulos VIP === */
.section-vip {
  padding: 100px 24px;
  position: relative;
}
.section-title-vip {
  text-align: center;
  font-family: Quicksand; font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  color: #003F8A; margin: 0 0 14px;
  letter-spacing: -0.025em; line-height: 1.05;
}
.section-title-vip b {
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-subtitle-vip {
  text-align: center;
  color: #475569; font-size: 17px;
  max-width: 640px; margin: 0 auto 64px;
  line-height: 1.5;
}

/* === Onda inferior con stroke === */
.wave-vip {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 100px; display: block;
}
.wave-vip path { fill: #ffffff; }

/* === Comercios carousel === */
.com-marquee {
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.com-track {
  display: flex; gap: 28px; width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.com-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.com-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245, 247, 252, 0.95));
  border: 1px solid rgba(0, 63, 138, 0.1);
  box-shadow: 0 10px 25px rgba(0, 63, 138, 0.06);
  font-weight: 600; color: #003F8A; white-space: nowrap;
  font-size: 15px;
}
.com-chip::before {
  content: ''; width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.5);
}

/* === Stat cinemático === */
.stat-cine {
  text-align: center; padding: 28px;
}
.stat-cine .num {
  font-family: Quicksand; font-weight: 700;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #003F8A 0%, #00AEEF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-cine .lbl {
  margin-top: 8px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #475569;
}

/* === CTA final ultra premium === */
.cta-vip {
  background: linear-gradient(135deg, #001b4d 0%, #003F8A 50%, #00AEEF 100%);
  border-radius: 36px;
  padding: 88px 48px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
  max-width: 960px; margin: 0 auto;
  box-shadow:
    0 50px 100px rgba(0, 27, 77, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
.cta-vip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 215, 0, 0.3), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(214, 40, 57, 0.2), transparent 50%);
}
.cta-vip > * { position: relative; z-index: 2; }
.cta-vip h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
}
.cta-vip p { opacity: 0.92; margin: 0 0 36px; font-size: 17px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* === Logo shimmer === */
.shimmer-text {
  background: linear-gradient(120deg,
    #ffffff 30%,
    rgba(255, 215, 0, 0.5) 50%,
    #ffffff 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-pass 3s linear infinite;
}
@keyframes shimmer-pass {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === Responsive ajustes === */
@media (max-width: 720px) {
  .hero-vip { padding: 60px 18px 130px; }
  .hero-nav-vip { margin-bottom: 36px; }
  .section-vip { padding: 70px 18px; }
  .cta-vip { padding: 56px 28px; border-radius: 24px; }
}



/* ═══════════════════════════════════════════════════════════════
   ▼▼▼ LANDING v3 — réplica clavada del mockup mobile/desktop ▼▼▼
══════════════════════════════════════════════════════════════════ */

html, body { max-width: 100%; overflow-x: hidden; }
body.land *, body.land *::before, body.land *::after { box-sizing: border-box; }

body.land {
  background: #ffffff;
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #0F172A;
  margin: 0; padding: 0;
  min-width: 0;
}

/* ════════════════════════════════════════════════
   HERO con fondo azul cubriendo TODA la pantalla
════════════════════════════════════════════════ */
.land-hero-wrap {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(0,174,239,.4), transparent 70%),
    radial-gradient(ellipse 60% 60% at 100% 30%, rgba(0,102,255,.35), transparent 60%),
    linear-gradient(135deg, #001b4d 0%, #003F8A 50%, #0057BE 100%);
  color: #fff;
  padding: 0 0 0;
  overflow: hidden;
}

/* Grid pattern decorativo */
.land-hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 90%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════ NAV mobile-first ═══════ */
.land-nav {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px clamp(14px, 4vw, 56px);
  max-width: 1400px;
  margin: 0 auto;
}

.land-menu-toggle {
  background: transparent; border: 0; padding: 8px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  cursor: pointer;
  width: 40px; height: 40px;
}
.land-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .3s;
}

.land-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
  justify-self: center;
}

.land-logo-circle {
  width: clamp(40px, 6vw, 52px); height: clamp(40px, 6vw, 52px);
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  flex: 0 0 auto;
}
.land-logo-circle svg { width: 60%; height: 60%; color: #003F8A; }
.land-logo-circle::before {
  content: '';
  position: absolute;
  top: 17%; right: 22%;
  width: 16%; height: 16%;
  background: #D62839;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(214,40,57,.7);
}

.land-brand-text {
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1;
  color: white;
  letter-spacing: -.01em;
}
.land-brand-text small {
  display: block;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 500;
  margin-top: 3px;
  color: rgba(255,255,255,.75);
  letter-spacing: 0;
}

.land-brand img.logo-real { height: clamp(44px, 6vw, 56px); width: auto; max-width: 100%; }

.land-btn-mitarjeta {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  color: #003F8A !important;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 700; font-size: 13px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.land-btn-mitarjeta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.28); }
.land-btn-mitarjeta svg { width: 16px; height: 16px; color: #003F8A; }

@media (max-width: 480px) {
  .land-btn-mitarjeta { padding: 8px 14px; font-size: 12px; }
  .land-btn-mitarjeta svg { width: 14px; height: 14px; }
}

/* ═══════ HERO content ═══════ */
.land-hero {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 8px clamp(16px, 5vw, 48px) 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Sub-badge dorado con estrella y líneas */
.land-sub-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
  margin: clamp(4px, 1vw, 10px) 0 16px;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 600;
  letter-spacing: .24em;
  color: #FFD27A;
  width: 100%;
  max-width: 540px;
}
.land-sub-badge::before, .land-sub-badge::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,210,122,.4), transparent);
}
.land-sub-badge svg { width: 16px; height: 16px; color: #FFE082; flex: 0 0 auto; }
.land-sub-badge .lbl { white-space: nowrap; }

/* Título H1 grande tipo Inter 800 */
.land-h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.12;
  letter-spacing: -.035em;
  color: white;
  margin: 0 0 18px;
  word-break: keep-all;
  padding-bottom: 0.1em;
}
.land-h1 .gold-grad { padding: 0 0.04em 0.08em 0; line-height: 1.12; }
.land-h1 .gold-grad {
  background: linear-gradient(135deg, #FFE082 0%, #FFD700 40%, #FFA000 70%, #FFE082 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gold-shine 6s ease-in-out infinite;
  display: inline-block;
}
@keyframes gold-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.land-lead {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin: 0 auto 22px;
  max-width: 480px;
}

/* ═══════ Tarjeta hero ═══════ */
.land-hero-card-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 10px auto 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.land-hero-card-stage .floating {
  animation: card-float 7s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.land-hero-img-real {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.5)) drop-shadow(0 10px 20px rgba(0,174,239,.3));
  position: relative;
  z-index: 2;
}

/* Reflejo sutil debajo (no podio gigante) */
.land-hero-card-stage::after {
  content: '';
  position: absolute;
  bottom: -16px; left: 8%; right: 8%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.4) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

/* Tarjeta CSS fallback (cuando no hay imagen) */
.land-card-css {
  position: relative;
  width: 100%;
  aspect-ratio: 1.65 / 1;
  background:
    linear-gradient(105deg, #f1f5fa 0%, #f1f5fa 38%, transparent 38%),
    linear-gradient(135deg, #001b4d 38%, #003F8A 60%, #0066ff 100%);
  border-radius: 22px;
  padding: clamp(14px, 3vw, 24px);
  color: white;
  box-shadow:
    0 50px 100px rgba(0,0,0,.45),
    0 20px 40px rgba(0,0,0,.3),
    0 4px 12px rgba(0,174,239,.3),
    inset 0 1px 0 rgba(255,255,255,.2);
  overflow: hidden;
  z-index: 2;
}

.land-card-css::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-25deg);
  animation: card-sheen 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes card-sheen { 0%, 100% { left: -100%; } 50% { left: 130%; } }

/* QR de la tarjeta con marcadores rojos esquineros */
.land-card-qr {
  position: absolute;
  top: 50%; left: 10%;
  transform: translateY(-50%);
  width: 24%; aspect-ratio: 1;
  background: white;
  border-radius: 8px;
  padding: 5%;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.land-card-qr-inner {
  width: 100%; height: 100%;
  background-image:
    linear-gradient(45deg, #003F8A 25%, transparent 25%),
    linear-gradient(-45deg, #003F8A 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #003F8A 75%),
    linear-gradient(-45deg, transparent 75%, #003F8A 75%);
  background-size: 6px 6px;
  position: relative;
}
/* Marcadores esquineros rojos */
.land-card-qr::before, .land-card-qr::after,
.land-card-qr .land-card-qr-inner::before, .land-card-qr .land-card-qr-inner::after {
  content: ''; position: absolute;
  width: 22%; height: 22%;
  border: 2.5px solid #D62839;
  border-radius: 3px;
  background: white;
  z-index: 5;
}
.land-card-qr::before { top: -3%; left: -3%; }
.land-card-qr::after  { top: -3%; right: -3%; }
.land-card-qr .land-card-qr-inner::before { bottom: -3%; left: -3%; position: absolute; }
.land-card-qr .land-card-qr-inner::after  { bottom: -3%; right: -3%; position: absolute; }

.land-card-logo-mini {
  position: absolute;
  top: clamp(10px, 2.5vw, 18px);
  right: clamp(14px, 3vw, 24px);
  display: flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: clamp(12px, 1.6vw, 15px);
  z-index: 3;
}
.land-card-logo-mini .circ {
  width: clamp(18px, 2.4vw, 24px); height: clamp(18px, 2.4vw, 24px);
  background: white;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.land-card-logo-mini .circ::before {
  content: ''; position: absolute;
  top: 18%; right: 22%;
  width: 18%; height: 18%;
  background: #D62839; border-radius: 50%;
}
.land-card-logo-mini .ttl small { display: block; font-size: 9px; font-weight: 500; opacity: .85; }

.land-card-data {
  position: absolute;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 22px);
  text-align: right;
  z-index: 3;
  line-height: 1.2;
}
.land-card-data .lbl { color: #FFD27A; font-weight: 700; font-size: clamp(8px, 1.2vw, 10px); letter-spacing: .08em; margin-top: clamp(5px, 1vw, 8px); }
.land-card-data .val { font-size: clamp(13px, 1.9vw, 17px); font-weight: 800; }
.land-card-data .val.lvl { font-size: clamp(15px, 2.2vw, 20px); }

/* ═══════ Botones hero ═══════ */
.land-hero-btns {
  display: flex;
  gap: 10px;
  margin: 6px 0 28px;
  width: 100%;
  max-width: 480px;
  flex-wrap: nowrap;
}

.land-btn-primary, .land-btn-outline {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 12px 8px 12px clamp(14px, 3vw, 22px);
  border-radius: 100px;
  font-weight: 700; font-size: clamp(12px, 1.7vw, 14px);
  text-decoration: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
  font-family: inherit;
  white-space: nowrap;
}

.land-btn-primary {
  background: linear-gradient(135deg, #E63946, #B71C1C);
  color: white !important;
  box-shadow:
    0 14px 32px rgba(214,40,57,.45),
    0 0 40px rgba(214,40,57,.2),
    inset 0 1px 0 rgba(255,255,255,.3);
}
.land-btn-primary::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
}
.land-btn-primary:hover::after { left: 130%; }
.land-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px rgba(214,40,57,.6),
    0 0 60px rgba(214,40,57,.3),
    inset 0 1px 0 rgba(255,255,255,.3);
}

.land-btn-outline {
  background: transparent;
  color: white !important;
  border: 1.5px solid rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.land-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.land-btn-primary .arrow {
  width: clamp(28px, 4vw, 34px); height: clamp(28px, 4vw, 34px);
  background: rgba(255,255,255,.22);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex: 0 0 auto;
}
.land-btn-outline .arrow {
  width: clamp(28px, 4vw, 34px); height: clamp(28px, 4vw, 34px);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex: 0 0 auto;
}

/* ═══════ 4 iconos sobre el AZUL ═══════ */
.land-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 540px;
  padding-bottom: clamp(28px, 4vw, 50px);
}

.land-benefit {
  text-align: center;
  position: relative;
  padding: 0 clamp(4px, 1vw, 10px);
  min-width: 0;
}
.land-benefit:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: rgba(255,255,255,.16);
}

.land-benefit-icon {
  width: clamp(52px, 8vw, 64px);
  height: clamp(52px, 8vw, 64px);
  background: white;
  border-radius: clamp(14px, 2vw, 16px);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: #003F8A;
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,.08);
}
.land-benefit-icon svg {
  width: clamp(22px, 3.5vw, 28px);
  height: clamp(22px, 3.5vw, 28px);
}

.land-benefit-label {
  font-size: clamp(9px, 1.4vw, 11px);
  font-weight: 700;
  letter-spacing: .08em;
  color: white;
  line-height: 1.3;
}

/* ═══════ Onda con línea roja ═══════ */
.land-wave {
  position: relative;
  width: 100%;
  height: clamp(50px, 8vw, 80px);
  margin-top: -2px;
  background: #ffffff;
  z-index: 6;
}
.land-wave svg {
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  width: 100%;
  height: clamp(60px, 9vw, 100px);
  display: block;
}

/* ═══════════════════════════════════════════════
   SECCIONES BLANCAS
═══════════════════════════════════════════════ */
.land-section {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) clamp(20px, 4vw, 56px);
}
.land-section-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }

.land-mini-badge {
  display: inline-block;
  background: #EBF3FF;
  color: #003F8A;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

.land-h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 12px;
  color: #0F172A;
}
.land-h2 .azul {
  background: linear-gradient(135deg, #003F8A, #00AEEF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.land-h2-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.55;
}

/* === 3 PASOS === */
.land-pasos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
}
@media (min-width: 800px) { .land-pasos { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.land-paso {
  background: linear-gradient(135deg, #ffffff, #fafbfd);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 30px);
  position: relative;
  border: 1px solid rgba(0,63,138,.08);
  box-shadow:
    0 10px 30px rgba(0,63,138,.06),
    inset 0 1px 0 rgba(255,255,255,1);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
  text-align: left;
  min-width: 0;
}
.land-paso:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,63,138,.15), inset 0 1px 0 rgba(255,255,255,1);
}
.land-paso::before {
  content: ''; position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,174,239,.6), transparent);
}

@media (min-width: 800px) {
  .land-paso:not(:last-child)::after {
    content: ''; position: absolute;
    top: 76px; right: -26px;
    width: 26px; height: 2px;
    background: repeating-linear-gradient(90deg, #CBD5E1 0 5px, transparent 5px 10px);
  }
}

.land-paso-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #EBF3FF, #C7DDFB);
  color: #003F8A;
  border-radius: 50%;
  font-weight: 800; font-size: 15px;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 6px 16px rgba(0,63,138,.12);
  font-family: 'Quicksand', sans-serif;
}

.land-paso-img-wrap {
  display: flex;
  justify-content: center; align-items: center;
  height: clamp(120px, 16vw, 160px);
  margin: 8px 0 22px;
}
.land-paso-img-wrap img {
  max-width: 100%;
  max-height: clamp(120px, 16vw, 160px);
  filter: drop-shadow(0 14px 28px rgba(0,63,138,.22));
}
.land-paso-icon {
  width: clamp(96px, 12vw, 120px);
  height: clamp(96px, 12vw, 120px);
  background: linear-gradient(135deg, #003F8A 0%, #0057BE 50%, #00AEEF 100%);
  border-radius: clamp(22px, 3vw, 28px);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow:
    0 24px 50px rgba(0,63,138,.35),
    0 8px 20px rgba(0,174,239,.25),
    inset 0 4px 0 rgba(255,255,255,.3),
    inset 0 -4px 0 rgba(0,0,0,.1);
  transform: rotate(-6deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.land-paso:hover .land-paso-icon { transform: rotate(0) scale(1.08); }
.land-paso-icon svg { width: 50%; height: 50%; position: relative; z-index: 2; filter: drop-shadow(0 2px 4px rgba(0,0,0,.2)); }
.land-paso-icon::after {
  content: ''; position: absolute;
  top: 4px; left: 4px; right: 4px;
  height: 45%;
  border-radius: 24px 24px 50% 50% / 24px 24px 100% 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
  pointer-events: none;
}

.land-paso h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: clamp(17px, 2.4vw, 20px);
  color: #003F8A;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.land-paso p { font-size: clamp(13px, 1.8vw, 14px); color: #475569; line-height: 1.6; margin: 0; }

/* === PLANES === */
.land-planes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 640px) { .land-planes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .land-planes { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.land-plan-wrap { position: relative; display: flex; min-width: 0; }

.land-plan {
  border-radius: 22px;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 2.5vw, 24px);
  position: relative; overflow: hidden;
  min-height: 340px;
  display: flex; flex-direction: column;
  width: 100%;
  box-shadow: 0 30px 70px rgba(0,0,0,.18), 0 10px 20px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.land-plan:hover { transform: translateY(-10px); }
.land-plan::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.32), transparent);
  pointer-events: none;
}
.land-plan::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-25deg);
  transition: left .9s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.land-plan:hover::after { left: 140%; }
.land-plan > * { position: relative; z-index: 2; }

.land-plan-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.land-plan-marca { font-size: 12px; font-weight: 600; opacity: .65; letter-spacing: .05em; }
.land-plan-tag {
  padding: 4px 12px;
  background: rgba(0,0,0,.2);
  color: white;
  border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
}
.land-plan-h3 { font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: clamp(22px, 3vw, 28px); margin: 0 0 8px; letter-spacing: -.015em; }
.land-plan-desc { font-size: 13px; line-height: 1.5; margin: 0 0 16px; opacity: .9; }
.land-plan-bullets { list-style: none; padding: 0; margin: 0 0 auto; }
.land-plan-bullets li { font-size: 13px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.land-plan-bullets li::before { content: '✓'; font-weight: 800; font-size: 13px; }

.land-plan-vermas { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 700; font-size: 13px; margin-top: 18px; align-self: flex-start; color: inherit; transition: gap .2s; }
.land-plan-vermas:hover { gap: 14px; }
.land-plan-vermas::after { content: '→'; font-size: 16px; }

.land-plan.bronce {
  background: radial-gradient(ellipse at 65% 0%, rgba(255,230,200,.7), transparent 50%), linear-gradient(135deg, #6b3d12 0%, #8b5a2b 25%, #b87333 50%, #d49560 65%, #b87333 85%, #6b3d12 100%);
  color: #2a1808;
}
.land-plan.plata {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.75), transparent 50%), linear-gradient(135deg, #5a6470 0%, #aab4c0 25%, #e8edf2 45%, #d6dde5 60%, #aab4c0 80%, #5a6470 100%);
  color: #1a1a2e;
}
.land-plan.plata .land-plan-marca, .land-plan.diamante .land-plan-marca { opacity: .55; }
.land-plan.oro {
  background: radial-gradient(ellipse at 60% 0%, rgba(255,255,200,.8), transparent 50%), linear-gradient(135deg, #8b6914 0%, #d4a017 22%, #ffd700 50%, #fff3a0 60%, #ffd700 78%, #d4a017 90%, #8b6914 100%);
  color: #3b2f00;
}
.land-plan.diamante {
  background: radial-gradient(ellipse at 25% 25%, rgba(179,229,252,.85), transparent 50%), radial-gradient(ellipse at 75% 70%, rgba(206,147,216,.5), transparent 50%), radial-gradient(ellipse at 50% 100%, rgba(255,224,130,.35), transparent 60%), linear-gradient(135deg, #e8f4fc 0%, #d4e4f5 40%, #e8d4f5 70%, #d4e4f5 100%);
  color: #1a1a2e;
}
.land-plan.diamante .land-plan-tag { background: rgba(0,63,138,.18); color: #003F8A; }

.land-plan-elegido {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #003F8A, #0066ff);
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 14px 14px;
  font-size: 10px; font-weight: 800; letter-spacing: .14em;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0,63,138,.4);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.land-plan-elegido::before { content: '★'; font-size: 12px; color: #FFE082; }

/* === CTA FINAL === */
.land-cta-section {
  position: relative; z-index: 1;
  max-width: 1300px;
  margin: clamp(40px, 6vw, 70px) auto clamp(60px, 8vw, 100px);
  padding: 0 clamp(20px, 4vw, 56px);
}
.land-cta {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0,174,239,.3), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(214,40,57,.15), transparent 50%),
    linear-gradient(135deg, #001b4d 0%, #003F8A 50%, #0057BE 100%);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 40px);
  align-items: center;
  position: relative; overflow: hidden;
  color: white;
  box-shadow: 0 50px 100px rgba(0,27,77,.35), 0 20px 40px rgba(0,27,77,.2);
}
@media (min-width: 800px) { .land-cta { grid-template-columns: 1.3fr 1fr; } }

.land-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-radial-gradient(circle at 80% 100%, transparent 0 80px, rgba(255,255,255,.04) 80px 82px);
  pointer-events: none;
}

.land-cta-content { position: relative; z-index: 2; text-align: center; }
@media (min-width: 800px) { .land-cta-content { text-align: left; } }

.land-cta h2 { font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: clamp(26px, 4vw, 42px); margin: 0 0 14px; line-height: 1.1; letter-spacing: -.02em; }
.land-cta h2 .gold {
  background: linear-gradient(120deg, #FFE082 0%, #ffffff 40%, #FFE082 70%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gold-shine 4s ease-in-out infinite;
}
.land-cta p { font-size: clamp(14px, 2vw, 16px); line-height: 1.6; opacity: .92; margin: 0 0 28px; max-width: 460px; }
@media (min-width: 800px) { .land-cta p { margin: 0 0 28px; } }
@media (max-width: 800px) { .land-cta p { margin: 0 auto 28px; } }

.land-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: white;
  color: #003F8A !important;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 800; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.land-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0,0,0,.35); }
.land-cta-btn .wa-mini {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #4dde7e, #25D366);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(37,211,102,.5);
}

.land-cta-wa { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; min-height: 140px; }
.land-cta-wa .floating { animation: card-float 5s ease-in-out infinite; }
.land-cta-wa img { max-width: 100%; max-height: 260px; filter: drop-shadow(0 30px 60px rgba(37,211,102,.55)); }

.land-wa-3d {
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  background: radial-gradient(circle at 30% 25%, #6ee896 0%, #25D366 50%, #128C7E 100%);
  border-radius: 26%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 50px 90px rgba(37,211,102,.5), 0 20px 40px rgba(37,211,102,.3), inset 0 5px 0 rgba(255,255,255,.35), inset 0 -5px 0 rgba(0,0,0,.15);
  transform: rotate(-6deg);
}
.land-wa-3d svg { width: 55%; height: 55%; color: white; filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }
.land-wa-3d::before {
  content: '';
  position: absolute;
  top: 8px; left: 12%; right: 12%;
  height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
  border-radius: 50% 50% 30% 30% / 80% 80% 30% 30%;
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   PATCH v3.1 — rotator de tarjetas 3D + ajustes
════════════════════════════════════════════════ */

/* Carrusel 3D de tarjetas */
.land-card-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 1.65 / 1;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.land-card-rotator .card-slot {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  opacity: 0;
  transform: translateZ(-400px) rotateY(60deg) scale(0.7);
  transition:
    opacity 1s cubic-bezier(.16, 1, .3, 1),
    transform 1.4s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.5)) drop-shadow(0 10px 20px rgba(0,174,239,.3));
}

.land-card-rotator .card-slot.active {
  opacity: 1;
  transform: translateZ(0) rotateY(0) scale(1);
  pointer-events: auto;
  z-index: 5;
  animation: card-float 7s ease-in-out infinite;
}

/* Slot que está saliendo (animado a la izquierda) */
.land-card-rotator .card-slot.leaving {
  opacity: 0;
  transform: translateZ(-200px) rotateY(-60deg) scale(0.7);
}

/* Reducir padding-top del primer section blanco */
.land-hero-wrap + .land-section,
.land-section.first-after-hero {
  padding-top: clamp(20px, 3vw, 36px);
}
.land-section { padding: clamp(36px, 6vw, 70px) clamp(20px, 4vw, 56px); }

/* Ajuste para que la onda no tape contenido */
.land-wave {
  margin-top: -3px;
  height: clamp(40px, 6vw, 60px);
}

/* ════════════════════════════════════════════════
   PATCH v3.2 — Pasos horizontales + Planes soft + CTA features
════════════════════════════════════════════════ */

/* === 3 PASOS rediseñados (cards horizontales grandes) === */
.land-pasos {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.land-paso {
  display: grid !important;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: #ffffff !important;
  border-radius: 24px;
  padding: 28px 32px !important;
  border: none !important;
  box-shadow: 0 8px 28px rgba(0, 30, 80, 0.08), 0 2px 8px rgba(0, 30, 80, 0.04) !important;
  position: relative;
  text-align: left;
  transition: transform .4s, box-shadow .4s;
}
.land-paso:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,63,138,.12);
}
.land-paso::before, .land-paso::after { display: none !important; content: none !important; }

@media (max-width: 600px) {
  .land-paso { grid-template-columns: 130px 1fr; gap: 16px; padding: 18px !important; }
}

.land-paso-left-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.land-paso .land-paso-num {
  position: absolute !important;
  top: -8px !important;
  left: -4px !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 13px !important;
  background: #EBF3FF !important;
  color: #003F8A !important;
  z-index: 3;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-weight: 700 !important;
  margin: 0 !important;
  box-shadow: 0 4px 12px rgba(0,63,138,.1);
}

.land-paso-img-circ {
  width: 100%;
  aspect-ratio: 1;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.land-paso-img-circ::before,
.land-paso-img-circ::after {
  display: none !important;
  content: none !important;
}
.land-paso-img-circ img {
  width: 90%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.land-paso-img-circ .land-paso-icon {
  width: 65%;
  height: 65%;
  margin: 0;
}

.land-paso-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.land-paso-mini-icon {
  width: 32px;
  height: 32px;
  color: #003F8A;
  margin-bottom: 4px;
}
.land-paso .land-paso-right h3 {
  margin: 0 !important;
  font-size: clamp(18px, 2.4vw, 22px) !important;
  color: #0F172A !important;
  font-weight: 700 !important;
  letter-spacing: -.015em;
}
.land-paso .land-paso-right p {
  margin: 4px 0 0 !important;
  font-size: clamp(13px, 1.8vw, 15px) !important;
  color: #475569 !important;
  line-height: 1.55 !important;
}

/* === PLANES rediseñados (horizontales soft tipo imagen 5) === */
.land-planes {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.land-plan-wrap {
  position: relative;
  display: block !important;
  min-width: 0;
  width: 100%;
}

.land-plan {
  display: grid !important;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 22px;
  padding: 26px 28px !important;
  position: relative;
  overflow: hidden;
  min-height: auto !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .4s, box-shadow .4s;
  width: 100%;
}
.land-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.land-plan::before, .land-plan::after { display: none !important; content: none !important; }

@media (max-width: 600px) {
  .land-plan { grid-template-columns: 100px 1fr; padding: 18px !important; gap: 16px; }
  .land-plan-tag { position: absolute !important; top: 14px !important; right: 14px !important; }
}

/* Icono 3D circular grande izquierda */
.land-plan-icon-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
}
.land-plan-icon-wrap img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.land-plan-icon-wrap .plan-icon-svg {
  width: 70%;
  height: 70%;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.25));
}

/* Contenido centro */
.land-plan-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.land-plan .land-plan-marca {
  font-size: 12px;
  font-weight: 500;
  opacity: .6;
  letter-spacing: 0;
}
.land-plan .land-plan-h3 {
  margin: 2px 0 4px !important;
  font-size: clamp(20px, 2.6vw, 26px) !important;
  font-weight: 700 !important;
  letter-spacing: -.015em;
}
.land-plan .land-plan-desc {
  margin: 0 0 10px !important;
  font-size: clamp(13px, 1.8vw, 15px) !important;
  line-height: 1.5 !important;
  opacity: .85;
}
.land-plan .land-plan-bullets {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 12px !important;
}
.land-plan .land-plan-bullets li {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.8vw, 14px) !important;
  margin-bottom: 6px !important;
  font-weight: 500;
}
.land-plan .land-plan-bullets li::before {
  content: '' !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
  position: relative;
  opacity: 0.85;
}
.land-plan .land-plan-bullets li {
  position: relative;
}
.land-plan .land-plan-bullets li::after {
  content: '✓';
  position: absolute;
  left: 5px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

/* Botón Ver más pill */
.land-plan .land-plan-vermas {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 22px !important;
  border-radius: 100px;
  border: 1.5px solid currentColor;
  font-weight: 700;
  font-size: 13px !important;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 6px !important;
  background: transparent;
  transition: all .3s;
  color: inherit;
}
.land-plan .land-plan-vermas::after { content: '→' !important; font-size: 15px; }
.land-plan .land-plan-vermas:hover { gap: 14px; transform: translateX(2px); }

/* Badge BRONCE/PLATA/ORO/DIAMANTE arriba derecha (pill) */
.land-plan .land-plan-top {
  display: none !important;
}
.land-plan-tag {
  position: absolute;
  top: 22px;
  right: 26px;
  padding: 7px 18px !important;
  border-radius: 100px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em;
  z-index: 5;
  background: rgba(0,0,0,.12);
  color: inherit;
  display: inline-flex;
  align-items: center;
}

/* Fondos SOFT (claros) por plan — como imagen 5 */
.land-plan.bronce {
  background: linear-gradient(105deg, #FFF4E8 0%, #F9E4CC 50%, #E8B98C 100%) !important;
  color: #5C3A1E !important;
}
.land-plan.bronce .land-plan-tag { background: linear-gradient(135deg, #B87333, #8B5A2B); color: white; }
.land-plan.bronce .land-plan-bullets li::before { background: #B87333; }
.land-plan.bronce .land-plan-vermas { color: #8B5A2B; }

.land-plan.plata {
  background: linear-gradient(105deg, #FAFBFC 0%, #E8ECF2 50%, #C8D0DA 100%) !important;
  color: #2C3E50 !important;
}
.land-plan.plata .land-plan-tag { background: linear-gradient(135deg, #8B95A5, #5A6470); color: white; }
.land-plan.plata .land-plan-bullets li::before { background: #5A6470; }
.land-plan.plata .land-plan-vermas { color: #5A6470; }

.land-plan.oro {
  background: linear-gradient(105deg, #FFFBEB 0%, #FFF3B0 50%, #FFE066 100%) !important;
  color: #5C4500 !important;
}
.land-plan.oro .land-plan-tag { background: linear-gradient(135deg, #D4A017, #B8860B); color: white; }
.land-plan.oro .land-plan-bullets li::before { background: #D4A017; }
.land-plan.oro .land-plan-vermas { color: #B8860B; }

.land-plan.diamante {
  background: linear-gradient(105deg, #F3F0FF 0%, #E0E7FF 40%, #C7D6FE 100%) !important;
  color: #1E1B4B !important;
}
.land-plan.diamante .land-plan-tag { background: linear-gradient(135deg, #4F46E5, #003F8A); color: white; }
.land-plan.diamante .land-plan-bullets li::before { background: #003F8A; }
.land-plan.diamante .land-plan-vermas { color: #003F8A; }

/* Tab "MÁS ELEGIDO" centrado encima de oro */
.land-plan-elegido {
  position: absolute;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #003F8A, #0066ff) !important;
  color: white !important;
  padding: 8px 22px !important;
  border-radius: 100px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  z-index: 10 !important;
  box-shadow: 0 10px 22px rgba(0,63,138,.4);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.land-plan-elegido::before {
  content: '★';
  color: #FFE082;
  font-size: 13px;
}

/* === CTA WhatsApp rediseñado (vertical centrado con features) === */
.land-cta {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  align-items: center;
  text-align: center;
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 56px) clamp(40px, 5vw, 60px) !important;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.land-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(0,174,239,.18), transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(0,174,239,.18), transparent 40%),
    repeating-radial-gradient(circle at 50% 100%, transparent 0 90px, rgba(255,255,255,.04) 90px 92px);
  pointer-events: none;
  border-radius: inherit;
}
.land-cta > * { position: relative; z-index: 2; }

.land-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  color: #6AB7E8;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.land-cta-badge::before, .land-cta-badge::after {
  content: '';
  width: 30px;
  height: 1px;
  background: rgba(106, 183, 232, .45);
}

.land-cta .land-cta-content {
  text-align: center !important;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.land-cta h2 {
  margin: 0 0 14px !important;
}
.land-cta p {
  margin: 0 auto 26px !important;
  max-width: 560px;
}

.land-cta-btn {
  margin-bottom: 36px !important;
}
.land-cta-btn::after { content: '→'; font-size: 16px; margin-left: 4px; }

/* Stage del WhatsApp con 4 features alrededor */
.land-cta-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  width: 100%;
  max-width: 900px;
}

@media (max-width: 700px) {
  .land-cta-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .land-cta-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}

.land-cta-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.land-cta-features.right { align-items: flex-start; }
.land-cta-features.left  { align-items: flex-end; }
@media (max-width: 700px) {
  .land-cta-features.right, .land-cta-features.left { align-items: stretch; }
}

.land-cta-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-align: left;
}
.land-cta-features.left .land-cta-feature {
  flex-direction: row-reverse;
  text-align: right;
}
@media (max-width: 700px) {
  .land-cta-features.left .land-cta-feature { flex-direction: row; text-align: left; }
}
.land-cta-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6AB7E8;
  flex: 0 0 auto;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.land-cta-feature-icon svg { width: 22px; height: 22px; }
.land-cta-feature-text {
  font-size: clamp(13px, 1.7vw, 14px);
  font-weight: 600;
  line-height: 1.25;
}

/* WhatsApp gigante en el centro */
.land-cta-wa-big {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.land-cta-wa-big .wa-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(37,211,102,.5) 0%, rgba(37,211,102,0) 60%);
  filter: blur(20px);
  z-index: 0;
  animation: wa-glow-pulse 3.5s ease-in-out infinite;
}
@keyframes wa-glow-pulse {
  0%, 100% { opacity: .6; transform: scale(.95); }
  50% { opacity: 1; transform: scale(1.05); }
}
.land-cta-wa-big img,
.land-cta-wa-big .land-wa-3d {
  position: relative;
  z-index: 2;
  width: clamp(140px, 26vw, 200px);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(37,211,102,.55));
  animation: card-float 5s ease-in-out infinite;
}

/* ════════════════════════════════════════════════
   PATCH v3.3 — CTA colores + WA prolijo + benefits 3D fijos
════════════════════════════════════════════════ */

/* === CTA: textos visibles sobre azul oscuro === */
.land-cta h2 {
  color: white !important;
}
.land-cta h2 .gold {
  background: linear-gradient(120deg, #FFE082 0%, #FFFFFF 40%, #FFE082 70%, #FFD700 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  padding: 0 0.04em 0.08em 0;
}
.land-cta p {
  color: #FFE9A8 !important;
  opacity: 1 !important;
}
.land-cta-badge {
  color: #FFD27A !important;
}
.land-cta-badge::before, .land-cta-badge::after {
  background: rgba(255,210,122,.5) !important;
  width: 36px !important;
}

/* === Botón "Escribinos por WhatsApp" prolijo === */
.land-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 26px 14px 14px !important;
  border-radius: 100px !important;
  background: white !important;
  color: #003F8A !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.25), 0 0 0 3px rgba(37,211,102,.18) !important;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.land-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.35), 0 0 0 4px rgba(37,211,102,.3) !important;
}
.land-cta-btn .wa-mini {
  width: 34px !important;
  height: 34px !important;
  background: linear-gradient(135deg, #5BE881 0%, #25D366 50%, #128C7E 100%) !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 34px !important;
  box-shadow: 0 4px 12px rgba(37,211,102,.5), inset 0 2px 0 rgba(255,255,255,.4), inset 0 -2px 0 rgba(0,0,0,.15) !important;
}
.land-cta-btn .wa-mini svg {
  width: 18px !important;
  height: 18px !important;
  color: white !important;
}
.land-cta-btn::after {
  content: '→';
  font-size: 18px;
  margin-left: 4px;
  color: #003F8A;
}

/* === 4 iconos beneficios: efecto 3D fijos === */
.land-benefit {
  pointer-events: none;
}
.land-benefit-icon {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%) !important;
  box-shadow:
    0 12px 28px rgba(0,0,0,.22),
    0 4px 10px rgba(0,63,138,.15),
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -3px 0 rgba(0,63,138,.08),
    inset 0 0 0 1px rgba(255,255,255,.7) !important;
  transition: none !important;
  transform: none !important;
}
.land-benefit-icon::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  border-radius: 12px 12px 50% 50% / 12px 12px 100% 100%;
  pointer-events: none;
}
.land-benefit-icon { position: relative; }
.land-benefit-icon svg {
  color: #003F8A !important;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.5));
}
.land-benefit:hover .land-benefit-icon {
  transform: none !important;
}

/* ════════════════════════════════════════════════
   PATCH v3.4 — Features en fila + espacios + benefits fijos
════════════════════════════════════════════════ */

/* 4 iconos benefits siempre visibles (sin animación reveal) */
.land-benefits {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.land-benefits, .land-benefit, .land-benefit-icon {
  opacity: 1 !important;
  visibility: visible !important;
}

/* === Espacios MÁS arriba (achicar todo) === */
.land-section,
.land-section.first-after-hero,
.land-hero-wrap + .land-section {
  padding-top: clamp(14px, 2vw, 28px) !important;
  padding-bottom: clamp(28px, 4vw, 50px) !important;
}
.land-section-head {
  margin-bottom: clamp(20px, 3vw, 36px) !important;
}
.land-mini-badge { margin-bottom: 12px !important; }
.land-h2 { margin: 0 0 8px !important; }

/* CTA section: subir el contenido */
.land-cta-section {
  margin-top: clamp(20px, 4vw, 40px) !important;
  margin-bottom: clamp(40px, 6vw, 70px) !important;
}
.land-cta {
  padding: clamp(28px, 4vw, 50px) clamp(20px, 4vw, 56px) !important;
}
.land-cta-content { margin-bottom: 8px !important; }
.land-cta-badge { margin-bottom: 14px !important; }
.land-cta h2 { margin: 0 0 12px !important; }
.land-cta p { margin: 0 auto clamp(20px, 3vw, 28px) !important; }

/* === 4 FEATURES EN FILA (el nuevo CTA simplificado) === */
.land-cta-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 2vw, 24px);
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.cta-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(8px, 1.5vw, 12px);
  text-decoration: none;
  color: white;
  transition: transform .25s ease;
  cursor: pointer;
  min-width: 0;
}
.cta-feat:hover { transform: translateY(-3px); }
.cta-feat:hover .cta-feat-icon {
  background: rgba(255,255,255,.16);
  border-color: rgba(106,183,232,.6);
  color: #FFD27A;
}

.cta-feat-icon {
  width: clamp(44px, 9vw, 64px);
  height: clamp(44px, 9vw, 64px);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6AB7E8;
  flex: 0 0 auto;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 4px 14px rgba(0,0,0,.2);
}
.cta-feat-icon svg {
  width: 50%;
  height: 50%;
}

.cta-feat-label {
  font-size: clamp(10px, 1.6vw, 13px);
  color: white !important;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

/* Desactivar solo el icono WhatsApp gigante (no el botón) */
.land-cta-stage,
.land-cta-wa-big,
.land-cta-features.left,
.land-cta-features.right {
  display: none !important;
}

/* Botón con márgenes simétricos: mismo espacio arriba y abajo */
.land-cta .land-cta-btn {
  margin: 0 0 clamp(20px, 3vw, 28px) !important;
}
/* Sin margen extra en la fila de features (el botón ya aporta el espacio) */
.land-cta-features-row { margin: 0 auto !important; }
