/* ============================================================
   LANDING PAGE - landing.css PARCHE D (reemplaza el anterior)
   ============================================================ */

.landing-body {
  background: var(--blanco);
  font-family: var(--font-body);
}

/* ---- Navbar ---- */
.landing-nav {
  background: var(--blanco);
  box-shadow: var(--sombra-xs);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.landing-logo img { height: 44px; object-fit: contain; }

/* ---- Hero ---- */
.landing-hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 60%, #FFECB3 100%);
  overflow: hidden;
  position: relative;
}
.landing-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,184,48,.20) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--naranja), var(--amarillo));
  color: white;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: .3px;
}

.hero-titulo {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--negro-suave);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-titulo .highlight {
  color: var(--naranja);
  position: relative;
}
.hero-titulo .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: var(--amarillo);
  border-radius: 4px;
  z-index: -1;
  opacity: .6;
}

.hero-subtitulo {
  font-size: 1.1rem;
  color: var(--gris-medio);
  font-weight: 600;
  line-height: 1.6;
  max-width: 480px;
}

.hero-stats { display: flex; align-items: center; gap: 24px; }
.hstat { display: flex; flex-direction: column; }
.hstat-num { font-size: 1.8rem; font-weight: 900; color: var(--naranja); line-height: 1; }
.hstat-label { font-size: .75rem; color: var(--gris-medio); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.hstat-div { width: 1px; height: 40px; background: #DDD; }

/* ============================================================
   PHONE MOCKUP — más ancho y con borde de botones realista
   ============================================================ */
.phone-mockup {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.25));
}

.phone-frame {
  width: 320px;      /* más ancho que antes (280) */
  height: 640px;     /* proporcional */
  background: var(--negro-suave);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 0 0 4px #1a1a1a,
    inset 0 0 0 1px #444;
  position: relative;
  overflow: hidden;
}

/* Notch centrado */
.phone-notch {
  width: 110px; height: 26px;
  background: var(--negro-suave);
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
/* Cámara y speaker en el notch */
.phone-notch::before {
  content: '';
  width: 10px; height: 10px;
  background: #333;
  border-radius: 50%;
}
.phone-notch::after {
  content: '';
  width: 40px; height: 5px;
  background: #333;
  border-radius: 50px;
}

/* Botones laterales del teléfono */
.phone-frame::before {
  content: '';
  position: absolute;
  right: -5px; top: 100px;
  width: 4px; height: 60px;
  background: #2a2a2a;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 70px 0 #2a2a2a, 0 140px 0 #2a2a2a;
}
.phone-frame::after {
  content: '';
  position: absolute;
  left: -5px; top: 140px;
  width: 4px; height: 80px;
  background: #2a2a2a;
  border-radius: 3px 0 0 3px;
}

.phone-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 32px;
  background: var(--crema);
  display: block;
}

.phone-shadow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,.20) 0%, transparent 70%);
}

/* ============================================================
   BENEFICIOS — más amplios con imagen de referencia
   ============================================================ */
.landing-section { padding: 90px 0; }

.seccion-chip {
  display: inline-block;
  background: var(--crema-dark);
  color: var(--naranja-dark);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.landing-titulo {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--negro-suave);
  margin-bottom: 12px;
  line-height: 1.15;
}

.landing-subtitulo {
  font-size: 1.05rem;
  color: var(--gris-medio);
  font-weight: 600;
}

/* Beneficio card mejorado con imagen */
.beneficio-card {
  background: var(--blanco);
  border-radius: var(--radio-xl);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--sombra-sm);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid #F0F0F0;
}
.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
}
/* Imagen de referencia del beneficio */
.bc-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.bc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.beneficio-card:hover .bc-img-wrap img {
  transform: scale(1.05);
}
/* Ícono flotante sobre la imagen */
.bc-icon-float {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 48px; height: 48px;
  border-radius: var(--radio-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--sombra-md);
  border: 3px solid white;
}
/* Contenido de la card */
.bc-content {
  padding: 32px 20px 20px;
}
.bc-content h4 {
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--negro-suave);
}
.bc-content p {
  font-size: .88rem;
  color: var(--gris-medio);
  line-height: 1.6;
  margin: 0;
}

/* ---- Planes ---- */
.plan-card {
  background: var(--blanco);
  border-radius: var(--radio-xl);
  padding: 32px 28px;
  box-shadow: var(--sombra-sm);
  border: 2px solid #F0F0F0;
  text-align: center;
  position: relative;
  transition: transform .25s;
  height: 100%;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.plan-destacado {
  border-color: var(--naranja);
  box-shadow: 0 8px 32px rgba(255,107,53,.2);
}
.plan-badge-top {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--naranja);
  color: white;
  border-radius: 50px;
  padding: 4px 18px;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}
.plan-nombre { font-weight: 900; font-size: 1.2rem; color: var(--gris-dark); margin-bottom: 8px; }
.plan-precio { margin-bottom: 24px; }
.plan-precio span { font-size: 2.2rem; font-weight: 900; color: var(--naranja-dark); }
.plan-precio small { font-size: .9rem; color: var(--gris-medio); font-weight: 700; }
.plan-features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.plan-features li { padding: 6px 0; font-size: .88rem; font-weight: 700; color: var(--gris-dark); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #F5F5F5; }
.plan-features li:last-child { border: none; }

/* ---- Registro ---- */
.registro-card {
  background: var(--blanco);
  border-radius: var(--radio-xl);
  padding: 36px;
  box-shadow: var(--sombra-md);
  border: 2px solid #F0F0F0;
}
.reg-label { font-weight: 800; font-size: .85rem; margin-bottom: 4px; color: var(--gris-dark); display: block; }

/* ---- Footer ---- */
.landing-footer { background: var(--negro-suave); padding: 40px 0; }

/* ---- Animaciones ---- */
[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-anim="fade-left"] { transform: translateX(30px); }
[data-anim].visible { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .phone-frame { width: 290px; height: 590px; }
}
@media (max-width: 991px) {
  .hero-titulo { font-size: 2.4rem; }
  .phone-frame { width: 280px; height: 570px; }
  .bc-img-wrap { height: 140px; }
}
@media (max-width: 576px) {
  .hero-titulo { font-size: 1.9rem; }
  .landing-titulo { font-size: 1.7rem; }
  .landing-section { padding: 60px 0; }
  .registro-card { padding: 20px; }
  .phone-frame { width: 250px; height: 510px; }
}
