:root {
  --ink: #141416;
  --muted: #6f7380;
  --muted-light: #a0a4b0;
  --brand-pink: #EC4899;
  --brand-orange: #FF8F44;
  --pink-light: #FDF2F8;
  --pink-medium: #FBCFE8;
  --pink-dark: #DB2777;
  --border: #f0d6e3;
  --bg-light: #fdf2f8;
  --radius: 12px;
  --radius-sm: 8px;
}

/* Reset */
.lc * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, var(--pink-light) 0%, #ffffff 30%, #ffffff 70%, var(--pink-light) 100%);
  min-height: 100vh;
}

/* Contenedor más ancho para desktop */
.container-wide { 
  width: min(1200px, 95vw); 
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Section - Más ancha */
.sale-hero { 
  padding: 4rem 0 3rem; 
}

.sale-title {
  font-size: 3.5rem;
  line-height: 1.1; 
  margin: 0 0 2rem;
  font-weight: 800;
  color: var(--brand-pink);
  text-align: center;
}

.sale-title .hl {
  color: var(--brand-orange);
  font-weight: 900;
}

.sale-sub {
  font-size: 1.4rem;
  color: var(--muted);
  margin: 0 auto 3rem;
  line-height: 1.6;
  max-width: 700px;
  text-align: center;
}

/* Benefits Simple - Más ancho */
.benefits-simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 3rem auto;
  max-width: 600px;
}

.benefit-item {
  padding: 1.5rem 1rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* Divider */
.divider {
  height: 2px;
  background: var(--border);
  margin: 3rem auto;
  width: 100px;
}

/* Social Proof Simple - Más ancho */
.social-proof-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  max-width: 600px;
}

.social-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-main strong {
  font-size: 1.5rem;
  color: var(--brand-pink);
  margin-bottom: 0.5rem;
}

.social-main span {
  color: var(--muted);
  font-size: 1rem;
}

.social-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stars {
  color: #FFB800;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.social-rating span {
  color: var(--muted);
  font-size: 1rem;
}

/* Pricing Simple - Mucho más ancho */
.pricing-simple {
  margin: 4rem 0;
  text-align: center;
}

.pricing-simple h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--brand-pink);
}

.pricing-subtitle {
  color: var(--muted);
  margin: 0 0 3rem;
  font-size: 1.3rem;
  font-weight: 500;
}

/* Price Card Wide - Expandida */
.price-card-wide {
  background: white;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  margin: 0 auto;
  max-width: 700px;
  position: relative;
  text-align: center;
}

.price-badge-simple {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
}

.price-content-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

.price-info {
  flex: 1;
}

.price-old {
  display: block;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.price-main-wide {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-main-wide strong {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand-pink);
  line-height: 1;
}

.price-main-wide .currency {
  font-size: 1.8rem;
  color: var(--muted);
  font-weight: 600;
}

.features-wide {
  flex: 1;
  text-align: left;
}

.feature-item-wide {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.feature-item-wide .check {
  color: var(--brand-pink);
  font-weight: 900;
  font-size: 1.3rem;
  width: 25px;
  text-align: center;
}

/* Button Wide */
.pay-btn-wide {
  display: block;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-sm);
  margin: 2rem 0 1.5rem;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.pay-btn-wide:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

/* Security Wide */
.security-wide {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 1.5rem 0;
}

.security-item-wide {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.security-icon {
  font-size: 1.2rem;
}

/* Guarantee Wide */
.guarantee-wide {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-top: 2rem;
  border: 2px solid var(--border);
}

.guarantee-wide p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

.guarantee-wide strong {
  color: var(--brand-pink);
}

/* Testimonials Wide */
.testimonials-wide {
  margin: 5rem 0 3rem;
  text-align: center;
}

.testimonials-wide h2 {
  font-size: 2.5rem;
  margin: 0 0 3rem;
  font-weight: 800;
  color: var(--brand-pink);
}

.testimonials-grid-wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card-wide {
  background: white;
  padding: 2.5rem 2rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.testimonial-card-wide .stars {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.testimonial-card-wide p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.1rem;
}

.author {
  font-weight: 700;
  color: var(--brand-pink);
  font-size: 1.1rem;
}

/* Responsive para mantener centrado en todos los dispositivos */
@media (max-width: 1024px) {
  .container-wide {
    width: 95vw;
    padding: 0 25px;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container-wide {
    width: 100vw;
    padding: 0 20px;
  }
  
  .sale-title {
    font-size: 2.8rem;
  }
  
  .sale-sub {
    font-size: 1.2rem;
  }
  
  .benefits-simple {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .social-proof-simple {
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
  }
  
  .price-content-wide {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .features-wide {
    text-align: center;
  }
  
  .price-main-wide {
    justify-content: center;
  }
  
  .price-main-wide strong {
    font-size: 3.5rem;
  }
  
  .security-wide {
    flex-direction: column;
    gap: 1rem;
  }
  
  .testimonials-grid-wide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card-wide {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .sale-hero {
    padding: 3rem 0 2rem;
  }
  
  .sale-title {
    font-size: 2.3rem;
  }
  .price-card-wide {
    padding: 2.5rem 1.5rem;
    margin: 0 -10px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .price-badge-simple {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .feature-item-wide {
    font-size: 1.1rem;
  }
  .pay-btn-wide {
    font-size: 1.2rem;
    padding: 1.25rem 1.5rem;
  }
}
/* Opcional: cards de ventajas tipo iconos */
.testimonials-wide { margin: 3rem 0; }
.testimonials-grid-wide .testimonial-card-wide p {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-pink);
  margin: 0;
}
/* ====== HERO NUEVO – look más "promo" ====== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr; /* la imagen ocupa más */
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 2rem;
  border-radius: 28px;
  background: radial-gradient(1200px 600px at 20% 20%, rgba(252,231,243,.7), transparent 60%),
              radial-gradient(900px 500px at 80% 80%, rgba(255,237,213,.7), transparent 60%),
              linear-gradient(135deg, #FFEAF2 0%, #FFF4EC 100%);
  box-shadow: 0 30px 70px rgba(236,72,153,.15);
  border: 2px solid #ffe2ef;
}

/* título grande con acento */
.display {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--ink);
}
.display .accent { 
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* badges como pastillas */
.badges { 
  display: flex; 
  flex-wrap: wrap; 
  gap: .75rem; 
  margin: 1.25rem 0 1.75rem; 
}

.badge {
  display: inline-flex; 
  align-items: center; 
  gap: .5rem;
  padding: .65rem 1rem; 
  border-radius: 999px;
  background: #fff; 
  border: 2px solid #ffe1ee;
  box-shadow: var(--shadow-1, 0 8px 30px rgba(255,140,180,.18));
  font-weight: 800; 
  color: var(--brand-pink);   /* ⬅️ antes era marrón */
}
.badge .emoji { 
  font-size: 1.1rem; 
  line-height: 1; 
}

/* botón principal con glow */
.cta-glow {
  display: inline-block; text-decoration: none; text-align: center;
  padding: 1.1rem 1.6rem; border-radius: 14px; font-weight: 900;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-orange));
  color:#fff; box-shadow: 0 14px 40px rgba(236,72,153,.35);
  transition: transform .15s ease, box-shadow .2s ease;
}
.cta-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(236,72,153,.45);
  color: #fff5fa; /* o cualquier otro color */
}

/* tarjeta de precio compacta estilo “pill card” */
.price-pill {
  display:flex; align-items:center; gap:1rem; 
  background: #fff; border: 3px solid var(--border);
  border-radius: 16px; padding: .9rem 1.1rem; width: fit-content;
  box-shadow: 0 10px 30px rgba(255,100,150,.12);
}
.price-pill .old { text-decoration: line-through; color: var(--muted); font-weight:700; }
.price-pill .now { font-size: 2rem; font-weight: 900; color: var(--brand-pink); }
.price-note { color: var(--muted); font-weight: 600; }

/* mockup derecha (foto + marco) */
.mockup {
  position: relative;
  justify-self: end; /* la alinea a la derecha */
  align-self: start; /* la sube hacia arriba */
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(135deg,#ffd6bf,#ffdfe9);
  box-shadow: 0 25px 60px rgba(255,100,150,.18);
  border: 2px solid #ffd7e6;
  overflow: hidden;
  max-width: 500px; /* agranda la imagen */
  transition: transform .3s ease, box-shadow .3s ease;
  transform: translateY(50px); /* sube */
}
.mockup .frame {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
  object-fit: cover;
  overflow: hidden;
}
.mockup:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 80px rgba(255,100,150,.25);
}
/* En pantallas grandes, dale más protagonismo */
@media (min-width: 1400px) {
  .mockup {
    max-width: 600px;
    margin-top: -20px; /* la sube un poco */
  }
}

/* En tablets, centra para que no se rompa */
@media (max-width: 980px) {
  .mockup {
    justify-self: center;
    max-width: 400px;
    margin-top: 2rem;
  }
}
/* contador con neumorfismo */
.countdown {
  margin-top:2rem; text-align:center;
}
.timer {
  display:flex; justify-content:center; gap:1rem; flex-wrap:wrap;
}
.timebox {
  background:#fff; border:2px solid #ffe1ee; border-radius:16px;
  padding: .9rem 1.1rem; min-width:90px;
  box-shadow: 6px 6px 18px rgba(255,140,180,.12), -6px -6px 18px rgba(255,255,255,.8);
}
.timebox .num { font-size:1.6rem; font-weight:900; color:var(--brand-pink); line-height:1; }
.timebox .lab { font-size:.85rem; color:var(--muted); font-weight:700; }

/* Ocultar la fila de “perks” (por si quedó en el HTML) */
.perks { display: none !important; }
.perk {
  background:#fff; border:2px solid var(--border); border-radius:14px;
  padding:1rem; text-align:center; font-weight:800; color:var(--brand-pink);
}
/* formulario estilo glass (si lo usas) */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.45));
  border: 2px solid #ffe1ee; border-radius:18px; padding:1.2rem;
  box-shadow: 0 12px 35px rgba(255,100,150,.18);
  backdrop-filter: blur(6px);
}
.glass input, .glass button {
  width:100%; border-radius:12px; border:2px solid #ffe1ee; padding:.9rem 1rem; font-weight:700;
}
.glass button { border:none; background:linear-gradient(135deg,var(--brand-pink),var(--brand-orange)); color:#fff; }
@media (max-width: 520px){
  .perks { grid-template-columns: 1fr; }
}
/* ===== FAQ Sección interactiva ===== */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #FFD3E2 0%, #FFEAF2 100%);
}

.faq-card {
  background: #fff;
  border-radius: 22px;
  border: 2px solid var(--border);
  box-shadow: 0 18px 60px rgba(255, 100, 150, 0.16);
  padding: 2rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-chip {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: var(--brand-pink);
  color: #fff;
  font-weight: 900;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Contenedor */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Elementos FAQ */
.faq-item {
  border: 2px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(255, 140, 180, 0.08);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item[open] {
  border-color: var(--brand-pink);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

/* Título (summary) */
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.2rem;
  font-weight: 800;
  color: var(--brand-pink);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-item summary:hover {
  color: var(--brand-orange);
}

/* Flecha animada */
.faq-item summary::after {
  content: "›";
  font-size: 1.3rem;
  color: var(--brand-pink);
  position: absolute;
  right: 1rem;
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(270deg);
}

/* Numeración */
.faq-item summary .n {
  font-weight: 900;
  color: var(--brand-orange);
}

/* Contenido oculto */
.faq-item p {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 560px) {
  .faq-card {
    padding: 1.5rem 1rem;
  }
  .faq-item summary {
    font-size: 0.98rem;
  }
}

/* ===========================
   MOBILE POLISH (≤ 640px)
   =========================== */
@media (max-width: 640px){

  /* Contenedor + hero más compacto */
  .sale-hero{ padding: 1.5rem 0 1.25rem; }
  .hero-split{
    display: block !important;   /* pila todo en 1 columna */
    padding: 1rem 0.75rem; 
    gap: 0 !important;
  }

  /* Título: más grande, aireado y con buen interlineado */
  .display{
    font-size: clamp(1.8rem, 6.4vw, 2.4rem);
    line-height: 1.08;
    margin-bottom: .6rem;
  }

  /* Badges: dos por fila, más compactos */
  .badges{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .6rem;
    margin: .8rem 0 .6rem;
  }
  .badge{
    padding: .6rem .8rem;
    font-weight: 800;
    font-size: .95rem;
    border-radius: 999px;
    justify-content: center;
  }
  .badge .emoji{ font-size: 1rem; }

  /* MOCKUP: centrado y ANTES de leer el párrafo
     (visual, sin tocar el HTML) */
  .mockup{
    max-width: 92vw !important;
    margin: .6rem auto 1rem !important;
    transform: none !important;
    align-self: center !important;
    justify-self: center !important;
    box-shadow: 0 14px 34px rgba(255,100,150,.18);
  }

  /* Párrafo introductorio: legible y con respiro */
  .sale-sub{
    max-width: 92vw !important;
    margin: .5rem auto 1rem !important;
    font-size: 1.02rem;
    line-height: 1.65;
    text-align: left;
  }

  /* Price pill: más grande y centrado */
  .price-pill{
    margin: .4rem 0 .35rem;
    padding: .85rem 1rem;
    gap: .75rem;
    border-width: 2px;
  }
  .price-pill .old{ font-size: 1rem; }
  .price-pill .now{ font-size: 1.8rem; }

  .price-note{
    margin-bottom: .6rem;
    font-size: .98rem;
  }

  /* CTA: botón full-width y cómodo para el pulgar */
  .cta-glow{
    display: block;
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    font-size: 1.05rem;
    text-align: center;
  }

  /* Quitar cualquier barra lateral del mockup en mobile */
  .mockup .toolbar{ display: none !important; }
}
/* Un poco más de fine-tuning para teléfonos muy pequeños (≤ 380px) */
@media (max-width: 380px){
  .badge{ font-size: .9rem; padding: .5rem .7rem; }
  .display{ font-size: 1.9rem; }
  .price-pill .now{ font-size: 1.7rem; }
}