/* ═══════════════════════════════════════════
   VENCAPP LANDING — style.css
   ═══════════════════════════════════════════ */

:root {
  --brand:      #0a2f38;
  --brand-mid:  #0c3d4a;
  --accent:     #2979C8;
  --accent-2:   #2979C8;
  --dark:       #0a1628;
  --light-bg:   #f4f7f9;
  --white:      #ffffff;
  --text:       #1a2535;
  --text-muted: #5a6a7a;
  --border:     rgba(0,0,0,.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 84px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-logo img { height: 52px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  padding: 9px 22px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--brand-mid) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--brand);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(58,154,186,.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(0,0,0,.2) 0%, transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  opacity: .05;
  pointer-events: none;
}

.hero-deco-1 { right: -80px; bottom: -60px; width: 420px; }
.hero-deco-2 { left: -100px; top: -80px; width: 340px; transform: rotate(15deg); }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 24px;
}

.hero h1 em { font-style: normal; color: var(--accent-2); }

.hero-tagline {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  letter-spacing: -.1px;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 48px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  padding: 14px 30px;
  background: var(--accent-2);
  color: #fff;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .2s;
}

.btn-primary:hover { background: #1a5fa0; transform: translateY(-1px); }

.btn-secondary {
  padding: 14px 30px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }

.hero-feats {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: visible;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}

/* ── SECCIÓN GENÉRICA ────────────────── */
.section {
  padding: 96px 24px;
}

.section-dark {
  background: var(--brand);
  color: #fff;
}

.section-light {
  background: var(--light-bg);
}

.section-white {
  background: var(--white);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 16px;
}

.section-dark .section-title { color: #fff; }
.section-light .section-title, .section-white .section-title { color: var(--text); }
.section-light .section-title em, .section-white .section-title em { color: var(--accent-2); font-style: normal; }

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 56px;
}

.section-white .section-label { color: var(--accent); }
.section-white .pain-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
}
.section-white .pain-card h3 { color: var(--text); }
.section-white .pain-card p { color: var(--text-muted); }
.section-light .section-sub, .section-white .section-sub { color: var(--text-muted); }

/* ── PROBLEMA / SOLUCIÓN ─────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.pain-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 24px;
}

.pain-card .pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── FUNCIONALIDADES ─────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}

.feat-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.feat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(15,76,92,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CAPTURAS ────────────────────────── */
.screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.screenshot {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  border: 1px solid var(--border);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-full {
  grid-column: 1 / -1;
}

/* ── VIDEO ───────────────────────────── */
.video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.1);
  max-width: 860px;
  margin: 0 auto;
}

/* ── FLUJO ───────────────────────────── */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.flow-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow .2s, transform .2s;
}

.flow-step:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}

.flow-step:not(:last-child)::after {
  display: none;
}

.flow-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.flow-step h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.flow-step p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BETA CTA ────────────────────────── */
.beta-box {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.beta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 20%, rgba(93,202,165,.15) 0%, transparent 60%);
  pointer-events: none;
}

.beta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.beta-box p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.beta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.beta-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}

.beta-form input[type="email"]::placeholder { color: rgba(255,255,255,.4); }

/* Inputs cajas de precios */
.precio-input::placeholder { color: rgba(255,255,255,.5); font-weight:400; }
.beta-form input[type="email"]:focus { border-color: var(--accent-2); }

.beta-form button {
  padding: 13px 26px;
  background: var(--accent-2);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.beta-form button:hover { background: #1a5fa0; }

/* ── ACCESO PANEL ────────────────────── */
.access-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.access-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.access-box p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.access-row {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
  margin-bottom: 12px;
}

.access-row:focus-within { border-color: var(--accent); }

.access-prefix, .access-suffix {
  padding: 12px 10px 12px 16px;
  font-size: .85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.access-suffix { padding: 12px 16px 12px 4px; }

.access-row input {
  flex: 1;
  padding: 12px 4px;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.access-row input::placeholder { color: var(--text-muted); font-weight: 400; }

.btn-access {
  display: block;
  width: 100%;
  padding: 13px;
  background: #2979C8;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background .2s;
}

.btn-access:hover { background: #1a5fa0; }

.access-note {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── FEATURE BLOCKS ALTERNADOS ───────── */
.feature-block {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--border);
}

.feature-block.feature-block-reverse {
  grid-template-columns: 2fr 3fr;
}

.feature-block:last-child { 
  margin-bottom: 0; 
  padding-bottom: 0;
  border-bottom: none;
}

.feature-block-reverse {
  direction: ltr;
}

.feature-block-reverse .feature-block-img {
  order: 2;
}

.feature-block-reverse .feature-block-text {
  order: 1;
}

.feature-block-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  border: 1px solid var(--border);
}

.feature-block-img img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-block-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.feature-block-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 16px;
}

.feature-block-text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}

.feature-list li i { font-size: 20px; flex-shrink: 0; }

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .feature-block-reverse { direction: ltr; }
}
.footer {
  background: var(--dark);
  padding: 40px 24px;
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: .78rem;
}

.footer a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer a:hover { color: #fff; }

/* ── ANIMACIONES ─────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-tagline { font-size: 1.1rem; }

  .hero-feats { flex-wrap: wrap; }

  .screenshots { grid-template-columns: 1fr; }

  .beta-box { padding: 40px 24px; }

  .flow-step:not(:last-child)::after { display: none; }
  .flow-steps { grid-template-columns: 1fr; gap: 16px; }

  .access-box { padding: 32px 24px; }

  .section { padding: 64px 20px; }

  .feature-block, .feature-block-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    direction: ltr;
  }

  .feature-block-reverse .feature-block-img,
  .feature-block-reverse .feature-block-text {
    order: unset;
  }

  .feature-block-reverse {
    display: flex;
    flex-direction: column;
  }

  .feature-block-reverse .feature-block-img { order: 1; }
  .feature-block-reverse .feature-block-text { order: 2; }

  .pdf-grid { grid-template-columns: 1fr; }

  /* Cajas de precios — apilar en móvil */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .beta-form { flex-direction: column; }
  .beta-form input, .beta-form button { width: 100%; }
}

/* ── PDF GRID ────────────────────────── */
.pdf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pdf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
}

.pdf-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  transform: translateY(-3px);
}

.pdf-card .screenshot {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.pdf-card-info {
  padding: 24px 28px;
  background: var(--light-bg);
  border-top: 3px solid var(--accent);
}

.pdf-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

.pdf-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdf-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pdf-feat-list li i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 768px) {
  .pdf-grid { grid-template-columns: 1fr; }
}