/* ══════════════════════════════════════════════════════════════════
   VERO — Sistema de diseño (web de marketing)
   Estética limpia tipo Apple · azul #0071e3 · Playfair Display + Inter.
   Mock-ups standalone para revisión; Orbit los integra en Next + SEO.
   ══════════════════════════════════════════════════════════════════ */

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

:root {
  --azul:        #0071e3;
  --azul-accent: #2997ff;
  --azul-dark:   #0058b0;
  --azul-wash:   #e8f1fd;

  --ink:         #1d1d1f;
  --ink-mute:    #515154;
  --ink-faint:   #86868b;

  --bg:          #ffffff;
  --bg-soft:     #f5f5f7;
  --bg-dark:     #0b0b0f;

  --hairline:    #d2d2d7;
  --hairline-2:  #e3e3e6;

  --ok:          #34c759;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-full: 980px;
  --maxw: 1120px;
  --maxw-wide: 1320px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.05);
  --shadow-md: 0 18px 50px -22px rgba(0,0,0,.28);
  --shadow-lg: 0 40px 90px -40px rgba(0,30,80,.35);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.55; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--azul); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--maxw-wide); }
.pad { padding: clamp(72px, 10vw, 128px) 0; }
.pad-sm { padding: clamp(56px, 7vw, 88px) 0; }
section { position: relative; }
.soft { background: var(--bg-soft); }

/* ══ TYPE ════════════════════════════════════════════════════════ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; color: var(--ink); }
.eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--azul); margin-bottom: 16px; }
.display { font-size: clamp(2.5rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -0.02em; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-lead { margin-top: 20px; font-family: var(--font-body); font-size: 1.18rem; line-height: 1.6; color: var(--ink-mute); }
.lead { font-family: var(--font-body); font-size: 1.22rem; line-height: 1.6; color: var(--ink-mute); }

/* ══ BUTTONS (estilo Apple, pill) ════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-weight: 500; font-size: 1.02rem; line-height: 1; padding: 14px 24px; border-radius: var(--r-full); border: 1px solid transparent; cursor: pointer; transition: background .25s, color .25s, transform .25s var(--ease), box-shadow .3s, border-color .25s; white-space: nowrap; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--azul); color: #fff; }
.btn-primary:hover { background: var(--azul-dark); transform: translateY(-1px); box-shadow: 0 12px 28px -12px rgba(0,113,227,.7); }
.btn-secondary { background: rgba(0,0,0,.05); color: var(--ink); }
.btn-secondary:hover { background: rgba(0,0,0,.09); }
.btn-ghost { background: transparent; color: var(--azul); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--azul); }
.btn-lg { padding: 17px 32px; font-size: 1.1rem; }
.btn-white { background: #fff; color: var(--azul); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -16px rgba(0,0,0,.5); }
/* Enlace estilo Apple "Saber más ›" */
.link-cta { display: inline-flex; align-items: center; gap: 5px; color: var(--azul); font-weight: 500; font-size: 1.02rem; }
.link-cta svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-cta:hover svg { transform: translateX(4px); }

/* ══ REVEAL ══════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } html { scroll-behavior: auto; } }

/* ══ NAV (barra translúcida tipo Apple) ══════════════════════════ */
#vnav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(0,0,0,.08); }
.vnav-inner { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 24px; height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.vnav-brand { display: inline-flex; align-items: center; gap: 9px; }
.vnav-brand img { height: 26px; width: auto; }
.vnav-brand .wm { font-family: var(--font-display); font-weight: 700; font-size: 1.34rem; letter-spacing: -0.01em; color: var(--ink); }
/* Logo oficial de Vero (mismo /vero-logo.svg que usa la app) */
.vlogo { height: 30px; width: auto; display: block; }
.vfoot .brand .vlogo { height: 28px; }
.vnav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.vnav-links a { font-size: 14px; font-weight: 400; color: var(--ink); opacity: .85; transition: opacity .2s, color .2s; }
.vnav-links a:hover { opacity: 1; color: var(--azul); }
.vnav-cta { display: inline-flex; align-items: center; gap: 14px; }
.vnav-cta .signin { font-size: 14px; color: var(--ink); opacity: .85; }
.vnav-cta .signin:hover { color: var(--azul); opacity: 1; }
.vnav-cta .btn { padding: 8px 18px; font-size: 14px; }
.vnav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }
.vnav-mobile { display: none; flex-direction: column; gap: 2px; position: fixed; top: 56px; left: 0; right: 0; z-index: 99; background: rgba(255,255,255,.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--hairline); padding: 12px 18px 20px; }
.vnav-mobile.open { display: flex; }
.vnav-mobile a { padding: 14px 6px; font-size: 17px; color: var(--ink); border-bottom: 1px solid var(--hairline-2); }
.vnav-mobile a:last-child { border-bottom: 0; }
.vnav-mobile .btn { margin-top: 14px; }
@media (max-width: 860px) { .vnav-links, .vnav-cta .signin { display: none; } .vnav-toggle { display: flex; } }

/* ══ HERO ════════════════════════════════════════════════════════ */
.hero { padding: 132px 0 0; text-align: center; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.hero .eyebrow { display: inline-block; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em; max-width: 16ch; margin: 0 auto; }
.hero .hero-sub { margin: 24px auto 0; max-width: 600px; font-size: 1.32rem; line-height: 1.5; color: var(--ink-mute); }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .92rem; color: var(--ink-faint); }
.hero-visual { margin: 64px auto 0; max-width: 980px; }

/* Marco de mock-up de producto */
.mock { position: relative; border-radius: var(--r-xl); overflow: hidden; background: #fff; border: 1px solid var(--hairline); box-shadow: var(--shadow-lg); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: #f6f6f8; border-bottom: 1px solid var(--hairline-2); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d6d6db; }
.mock img { width: 100%; display: block; }
.mock-body { padding: 0; }

/* ══ FEATURE / MÓDULOS ═══════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card { background: var(--bg); border: 1px solid var(--hairline-2); border-radius: var(--r-lg); padding: 34px 30px; transition: transform .4s var(--ease), box-shadow .4s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--azul-wash); color: var(--azul); margin-bottom: 20px; }
.card-ico svg { width: 25px; height: 25px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card .tag { font-size: 12px; font-weight: 600; letter-spacing: .02em; color: var(--azul); text-transform: uppercase; margin-bottom: 8px; }
.card p { font-family: var(--font-body); color: var(--ink-mute); font-size: 1rem; line-height: 1.6; }
.card .link-cta { margin-top: 16px; }

/* Módulo destacado (bloque alterno texto+imagen) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.flip .feature-media { order: -1; }
.feature-copy .eyebrow { display: inline-block; }
.feature-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.feature-copy p { font-family: var(--font-body); margin-top: 18px; font-size: 1.12rem; line-height: 1.62; color: var(--ink-mute); }
.feature-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 1.04rem; color: var(--ink); }
.feature-list svg { flex: none; width: 21px; height: 21px; color: var(--azul); margin-top: 1px; }
.feature-media img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--hairline); box-shadow: var(--shadow-md); }
.feature-media.plain img { border: 0; box-shadow: none; }

/* ══ "POR QUÉ VERO" / badges ═════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { text-align: center; padding: 12px; }
.why-item .ico { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--azul-wash); color: var(--azul); display: grid; place-items: center; }
.why-item .ico svg { width: 27px; height: 27px; }
.why-item h3 { font-size: 1.28rem; margin-bottom: 8px; }
.why-item p { font-family: var(--font-body); color: var(--ink-mute); font-size: 1rem; line-height: 1.55; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--azul-wash); color: var(--azul-dark); font-weight: 600; font-size: 13.5px; padding: 8px 16px; border-radius: var(--r-full); }

/* ══ PRUEBA SOCIAL ═══════════════════════════════════════════════ */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--azul); line-height: 1; }
.stat .l { font-family: var(--font-body); color: var(--ink-mute); margin-top: 8px; font-size: 1rem; }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote { background: var(--bg); border: 1px solid var(--hairline-2); border-radius: var(--r-lg); padding: 32px; }
.quote p { font-family: var(--font-body); font-size: 1.12rem; line-height: 1.55; color: var(--ink); }
.quote .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--azul-wash); color: var(--azul); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.quote .who .name { font-weight: 600; font-size: .96rem; }
.quote .who .role { font-size: .86rem; color: var(--ink-faint); }

/* ══ PRECIOS ═════════════════════════════════════════════════════ */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px 26px; transition: transform .35s var(--ease), box-shadow .35s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--azul); box-shadow: 0 24px 60px -28px rgba(0,113,227,.5); position: relative; }
.price-card.featured .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--azul); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-full); }
.price-card .plan { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.price-card .price { margin: 14px 0 4px; font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--ink); }
.price-card .price span { font-family: var(--font-body); font-size: .98rem; font-weight: 500; color: var(--ink-faint); }
.price-card .for { font-family: var(--font-body); color: var(--ink-mute); font-size: .96rem; min-height: 42px; }
.price-card .btn { margin: 22px 0; width: 100%; }
.price-card ul { list-style: none; display: grid; gap: 11px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-body); font-size: .95rem; color: var(--ink-mute); }
.price-card li svg { flex: none; width: 18px; height: 18px; color: var(--azul); margin-top: 1px; }

/* ══ CTA BAND ════════════════════════════════════════════════════ */
.cta-band { background: linear-gradient(135deg, var(--azul) 0%, var(--azul-dark) 100%); color: #fff; text-align: center; border-radius: var(--r-xl); padding: clamp(48px, 7vw, 80px) 32px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin: 0 auto; }
.cta-band p { font-family: var(--font-body); margin: 18px auto 0; max-width: 44ch; color: rgba(255,255,255,.9); font-size: 1.12rem; }
.cta-band .hero-actions { margin-top: 30px; }

/* ══ FOOTER ══════════════════════════════════════════════════════ */
.vfoot { background: var(--bg-soft); border-top: 1px solid var(--hairline); padding: 64px 0 40px; font-size: 14px; color: var(--ink-mute); }
.vfoot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.vfoot .brand { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.vfoot .brand img { height: 24px; }
.vfoot .brand .wm { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.vfoot .tag { max-width: 260px; line-height: 1.55; color: var(--ink-faint); }
.vfoot h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.vfoot ul { list-style: none; display: grid; gap: 10px; }
.vfoot ul a { color: var(--ink-mute); transition: color .2s; }
.vfoot ul a:hover { color: var(--azul); }
.vfoot-legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--ink-faint); font-size: 13px; }
.vfoot-legal a { color: var(--ink-faint); } .vfoot-legal a:hover { color: var(--azul); }

/* ══ BREADCRUMB (spokes) ═════════════════════════════════════════ */
.crumb { font-family: var(--font-body); font-size: 13px; color: var(--ink-faint); padding-top: 96px; }
.crumb a:hover { color: var(--azul); }

/* ══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 940px) {
  .grid-4, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .why-grid, .stat-row { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.flip .feature-media { order: 0; }
  .quote-grid { grid-template-columns: 1fr; }
  .vfoot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .why-grid, .price-grid, .stat-row, .grid-2 { grid-template-columns: 1fr; }
  .vfoot-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 104px; }
}

/* ══ MODAL "Solicitar información" ══════════════════════════════════ */
.vmodal-ov {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(15, 22, 38, .48);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .26s var(--ease-out);
}
.vmodal-ov[hidden] { display: none; }
.vmodal-ov.open { opacity: 1; }
.vmodal {
  position: relative; width: 100%; max-width: 460px;
  background: #fff; border-radius: var(--r-xl);
  padding: 36px 34px 30px; box-shadow: var(--shadow-lg);
  max-height: 92vh; overflow-y: auto;
  transform: translateY(14px) scale(.985);
  transition: transform .32s var(--ease-out);
}
.vmodal-ov.open .vmodal { transform: none; }
.vmodal .x {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(0,0,0,.05); color: var(--ink-mute);
  transition: background .2s, color .2s;
}
.vmodal .x:hover { background: rgba(0,0,0,.09); color: var(--ink); }
.vmodal h3 { font-size: 1.7rem; }
.vmodal .sub { font-family: var(--font-body); color: var(--ink-mute); font-size: .98rem; line-height: 1.5; margin: 8px 0 22px; }

.vform { display: flex; flex-direction: column; gap: 11px; }
.vform input, .vform select {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.vform input::placeholder { color: var(--ink-faint); }
.vform input:focus, .vform select:focus {
  outline: none; border-color: var(--azul); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,113,227,.13);
}
.vform .row { display: flex; gap: 8px; }
.vform .row select { flex: 0 0 auto; width: auto; min-width: 104px; background-image: none; }
.vform .row input[type="tel"] { flex: 1; }
.vform button[type="submit"] {
  margin-top: 6px; width: 100%; font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  color: #fff; background: var(--azul); border: 0; border-radius: var(--r-md);
  padding: 15px; cursor: pointer; transition: background .2s, transform .2s;
}
.vform button[type="submit"]:hover { background: var(--azul-dark); transform: translateY(-1px); }
.vform button[type="submit"]:disabled { opacity: .6; cursor: default; transform: none; }
.vform .privy { font-family: var(--font-body); font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 2px; }
.vform .privy a { color: var(--ink-mute); text-decoration: underline; }
.vform .hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.vmodal .ok { display: none; text-align: center; padding: 22px 10px; font-family: var(--font-body); font-size: 1.06rem; font-weight: 600; color: var(--ok); }

@media (max-width: 480px) {
  .vmodal { padding: 30px 22px 24px; border-radius: var(--r-lg); }
  .vmodal h3 { font-size: 1.5rem; }
}
