/* =============================================
   promo99.css — InnovaWebUY Landing Page
   Standalone: sin Bootstrap, sin dependencias
   ============================================= */

/* --- Reset & Base --- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0a0e1a;
  color: #e8eaf0;
  line-height: 1.6;
  font-size: 16px;
}

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

/* --- Variables --- */

:root {
  --color-bg: #0a0e1a;
  --color-surface: #131929;
  --color-surface2: #1a2235;
  --color-accent: #00d4aa;
  --color-accent2: #0099ff;
  --color-text: #e8eaf0;
  --color-muted: #8892a4;
  --color-white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1100px;
}

/* --- Container --- */

.lp-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */

.lp-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  border: none;
  text-align: center;
}

.lp-btn--primary {
  background: linear-gradient(135deg, #00d4aa, #0099ff);
  color: #0a0e1a;
  box-shadow: 0 8px 32px rgba(0, 212, 170, 0.35);
}

.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 212, 170, 0.5);
}

.lp-btn--white {
  background: #ffffff;
  color: #0a0e1a;
  box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}

.lp-btn--white:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.lp-btn--large {
  padding: 20px 48px;
  font-size: 1.15rem;
}

/* --- Section Titles --- */

.lp-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 48px;
}

/* =============================================
   HERO
   ============================================= */

.lp-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 64px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #0d2a3e 0%, #0a0e1a 70%);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero__badge {
  display: inline-block;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lp-hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}

.lp-hero__highlight {
  background: linear-gradient(135deg, #00d4aa, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.lp-hero__note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* =============================================
   INCLUDES / CARDS
   ============================================= */

.lp-includes {
  padding: 96px 0;
  background-color: var(--color-bg);
}

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

.lp-card {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 170, 0.25);
}

.lp-card__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.lp-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.lp-card__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* =============================================
   PRICING
   ============================================= */

.lp-pricing {
  padding: 96px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #0d1a2e 100%);
  display: flex;
  justify-content: center;
}

.lp-pricing__box {
  background: var(--color-surface);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 80px rgba(0, 212, 170, 0.08);
}

.lp-pricing__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.lp-pricing__amount {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-pricing__currency {
  font-size: 2rem;
  color: var(--color-muted);
}

.lp-pricing__list {
  list-style: none;
  text-align: left;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-pricing__list li {
  font-size: 1rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =============================================
   PARA QUIÉN
   ============================================= */

.lp-for {
  padding: 96px 0;
  background-color: var(--color-bg);
}

.lp-for__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lp-for__item {
  background: var(--color-surface2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.lp-for__item:hover {
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-2px);
}

/* =============================================
   PASOS
   ============================================= */

.lp-steps {
  padding: 96px 0;
  background: var(--color-surface);
}

.lp-steps__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.lp-step__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #00d4aa, #0099ff);
  color: #0a0e1a;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-step__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.lp-step__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* =============================================
   FOOTER CTA
   ============================================= */

.lp-footer-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, #071a12 0%, #071324 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,212,170,0.08), transparent 70%);
  pointer-events: none;
}

.lp-footer-cta__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.lp-footer-cta__sub {
  font-size: 1.1rem;
  color: var(--arena);
  margin-bottom: 40px;
}

.lp-footer-cta__legal {
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--arena);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 600px) {
  .lp-pricing__box {
    padding: 36px 24px;
  }
}

@media (max-width: 600px) {
  .lp-pricing__amount {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .lp-btn--large {
    padding: 18px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .lp-step {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================================   TESTIMONIOS   ============================================= */

.lp-testimonios {
  padding: 96px 0;
  background: linear-gradient(180deg, #0d1a2e 0%, #0a0e1a 100%);
}

.lp-card--testimonio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-testi__stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.lp-testi__text {
  font-size: 0.97rem;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.lp-testi__autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.lp-testi__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4aa, #0099ff);
  color: #0a0e1a;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-testi__nombre {
  display: block;
  font-size: 0.95rem;
  color: var(--color-white);
  font-weight: 700;
}

.lp-testi__rubro {
  display: block;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 4px;
}

