/* ============================================
   ZYRON — style.css v2
   Verde: #8BC53F  |  Plomo oscuro: #2B2B3B
   Fuente: Montserrat
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --verde:        #8BC53F;
  --verde-dk:     #6FA32D;
  --verde-glow:   rgba(139,197,63,.15);
  --negro:        #1C1C2E;
  --plomo:        #2B2B3B;
  --plomo-mid:    #3A3A4E;
  --plomo-light:  #5A5A6E;
  --gris-claro:   #F0F1F5;
  --gris-mid:     #E2E4EA;
  --blanco:       #F4F4F6;
  --blanco-soft:  #CACAD4;
  --lady-purple:  #9B59B6;
  --lady-glow:    rgba(155,89,182,.15);
  --font:         'Montserrat', sans-serif;
  --r:            12px;
  --r-lg:         20px;
  --shadow:       0 8px 32px rgba(0,0,0,.3);
  --shadow-green: 0 0 24px rgba(139,197,63,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--negro); color: var(--blanco); overflow-x: hidden; line-height: 1.6; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--plomo); }
::-webkit-scrollbar-thumb { background: var(--verde); border-radius: 3px; }

.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 120px 0; }
.highlight  { color: var(--verde); }

/* Secciones alternas */
.bg-dark  { background: var(--negro); }
.bg-mid   { background: var(--plomo); }
.bg-light { background: var(--gris-claro); color: var(--negro); }
.bg-light .tag             { background: rgba(139,197,63,.1); }
.bg-light .body-text       { color: #555; }
.bg-light .feature-row h4  { color: var(--negro); }
.bg-light .feature-row p   { color: #666; }
.bg-light .contact-label   { color: var(--plomo-light); }
.bg-light .contact-val     { color: var(--negro); }
.bg-light .contact-icon    { background: rgba(139,197,63,.1); }
.bg-light .dept-box        { background: var(--gris-mid); border-color: #ccc; }
.bg-light .dept-grid a     { color: #555; }
.bg-light .dept-grid a:hover { color: var(--verde-dk); }

/* Tipografía */
.tag {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--verde); background: var(--verde-glow);
  border: 1px solid rgba(139,197,63,.3);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.tag-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }
.title-lg  { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -.5px; }
.body-text { font-size: 1.125rem; line-height: 1.75; color: var(--blanco-soft); max-width: 540px; margin-top: 14px; }
.section-header { text-align: center; margin-bottom: 56px; }

/* Botones */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-family: var(--font); font-weight: 700; font-size: 1.05rem; cursor: pointer; border: none; text-decoration: none; transition: all .25s ease; }
.btn-sm { padding: 10px 20px; font-size: .95rem; }
.btn-primary { background: var(--verde); color: var(--negro); }
.btn-primary:hover { background: var(--verde-dk); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-outline { background: transparent; color: var(--blanco); border: 1.5px solid var(--plomo-mid); }
.btn-outline:hover { border-color: var(--verde); color: var(--verde); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 25px 0; transition: all .35s ease; }
.nav.scrolled { background: rgba(28,28,46,.95); backdrop-filter: blur(16px); padding: 25px 0; border-bottom: 1px solid rgba(139,197,63,.12); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { width: 169px; height: auto; display: block; mix-blend-mode: screen; }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { text-decoration: none; color: rgba(255,255,255,.75); font-size: 1rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--verde); }
.nav__actions { display: flex; gap: 12px; align-items: center; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(28,28,46,.90) 0%, rgba(28,28,46,.65) 55%, rgba(28,28,46,.3) 100%);
}
.hero__container { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 90px; padding-bottom: 90px; width: 60%; }
.hero__content { width: 100%; }
.hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero__badge { background: var(--verde); color: var(--negro); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.hero__eyebrow-text { font-size: .97rem; color: rgba(255,255,255,.75); font-weight: 500; }
.hero__titles { position: relative; min-height: 200px; margin-bottom: 28px; width: 100%; }
.hero__title-item { position: absolute; bottom: 0; left: 0; width: 100%; opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; pointer-events: none; }
.hero__title-item.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero__title { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.06; letter-spacing: -2px; color: #fff; }
.hero__desc { font-size: 1.175rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__dots { position: absolute; bottom: 96px; left: 24px; display: flex; gap: 8px; z-index: 3; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.hero__dot.active { background: var(--verde); width: 24px; border-radius: 4px; }

.hero__stats-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: rgba(28,28,46,.88); backdrop-filter: blur(12px); border-top: 1px solid rgba(139,197,63,.15); padding: 38px 0; }
.hero__stats { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero__stat { text-align: center; padding: 4px 36px; }
.hero__stat-div { width: 1px; height: 28px; background: var(--plomo-mid); }
.hero__stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--verde); line-height: 1; }
.hero__stat-label { font-size: .825rem; color: var(--blanco-soft); text-transform: uppercase; letter-spacing: 1px; }

/* STRIP */
.strip { background: var(--plomo); border-top: 1px solid var(--plomo-mid); border-bottom: 1px solid var(--plomo-mid); padding: 40px 0; }
.strip__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }
.strip__item { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 500; color: var(--blanco-soft); }
.strip__item strong { color: var(--blanco); }
.strip__sep { color: var(--plomo-mid); }

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col--reverse > *:first-child { order: 2; }
.two-col--reverse > *:last-child  { order: 1; }

/* Image stack */
.img-stack { position: relative; }
.img-stack__main { width: 100%; border-radius: var(--r-lg); object-fit: cover; height: 460px; box-shadow: var(--shadow); display: block; }
.img-stack__badge { position: absolute; background: var(--negro); border: 1px solid var(--plomo-mid); border-radius: var(--r); padding: 12px 18px; box-shadow: var(--shadow); }
.img-stack__badge--br { bottom: 24px; right: -28px; }
.img-stack__badge--tr { top: 24px; right: -28px; }
.bg-light .img-stack__badge { background: #fff; border-color: var(--gris-mid); }
.badge-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--verde); line-height: 1; }
.badge-lbl { font-size: .8rem; color: var(--blanco-soft); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; display: block; }
.bg-light .badge-lbl { color: #888; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.feature-row { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { width: 42px; height: 42px; min-width: 42px; background: var(--verde-glow); border: 1px solid rgba(139,197,63,.25); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.bg-light .feature-icon { background: rgba(139,197,63,.1); }
.feature-row h4 { font-size: .92rem; font-weight: 700; margin-bottom: 3px; }
.feature-row p  { font-size: .95rem; line-height: 1.55; }

/* Parallax section */
.parallax-section { position: relative; padding: 100px 0; background-attachment: fixed; background-size: cover; background-position: center; }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(28,28,46,.75), rgba(28,28,46,.65)); }
.parallax-overlay--dark { background: rgba(10,10,20,.82); }

/* Steps */
.steps-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step-card { background: rgba(255,255,255,.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-lg); padding: 32px 28px; max-width: 260px; flex: 1; min-width: 200px; color: #fff; }
.step-num { font-size: 2.2rem; font-weight: 900; color: var(--verde); line-height: 1; margin-bottom: 12px; }
.step-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: .95rem; line-height: 1.55; color: rgba(255,255,255,.7); }
.step-arrow { font-size: 1.5rem; color: var(--verde); font-weight: 900; }

/* Servicios */
.servicios-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.servicio-card { background: var(--negro); border: 1px solid var(--plomo-mid); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.servicio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-green); border-color: rgba(139,197,63,.4); }
.servicio-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.servicio-card__body { padding: 20px; }
.servicio-card__body h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--blanco); }
.servicio-card__body p  { font-size: .925rem; color: var(--blanco-soft); line-height: 1.55; }
.servicio-card--lady { border-color: rgba(155,89,182,.3); }
.servicio-card--lady:hover { box-shadow: 0 0 24px rgba(155,89,182,.25); border-color: rgba(155,89,182,.6); }
.serv-badge { display: inline-block; background: var(--lady-glow); color: var(--lady-purple); font-size: .825rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; border: 1px solid rgba(155,89,182,.3); margin-bottom: 8px; }

/* Comisión */
.comision-block { text-align: center; max-width: 700px; margin: 0 auto; }
.comision-num { font-size: clamp(5rem, 12vw, 9rem); font-weight: 900; letter-spacing: -4px; line-height: 1; background: linear-gradient(135deg, var(--verde) 0%, #c6e87a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.comision-sub  { font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 700; color: #fff; margin: 8px 0 18px; }
.comision-desc { font-size: 1.125rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 28px; }
.comision-checks { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.85); }

/* Seguridad */
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.seg-card--light { background: #fff; border: 1px solid var(--gris-mid); border-radius: var(--r); padding: 22px; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: box-shadow .2s; }
.seg-card--light:hover { box-shadow: 0 4px 20px rgba(139,197,63,.15); }
.seg-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.seg-card--light h4 { font-size: .88rem; font-weight: 700; margin-bottom: 5px; color: var(--negro); }
.seg-card--light p  { font-size: .905rem; color: #666; line-height: 1.5; }

/* Lady block */
.lady-block { background: linear-gradient(145deg, #2a1040 0%, #1C1C2E 100%); border: 1px solid rgba(155,89,182,.3); border-radius: var(--r-lg); overflow: hidden; }
.lady-block__img { width: 100%; height: 220px; object-fit: cover; display: block; }
.lady-block__body { padding: 28px; }
.lady-tag { display: inline-block; background: var(--lady-glow); color: var(--lady-purple); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(155,89,182,.3); margin-bottom: 14px; }
.lady-block__body h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.lady-block__body p  { font-size: .975rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 18px; }
.lady-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lady-checks li { display: flex; align-items: center; gap: 10px; font-size: .975rem; color: rgba(255,255,255,.85); font-weight: 500; }
.lady-checks li::before { content: '✓'; width: 20px; height: 20px; background: rgba(155,89,182,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--lady-purple); font-weight: 800; flex-shrink: 0; line-height: 20px; text-align: center; }

/* App features */
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.app-feat { display: flex; align-items: center; gap: 10px; font-size: .965rem; font-weight: 500; color: var(--blanco-soft); background: var(--plomo); border: 1px solid var(--plomo-mid); border-radius: var(--r); padding: 11px 14px; }

/* Cobertura */
.ciudades-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 40px 0 48px; }
.ciudad-pill { background: #fff; border: 1px solid var(--gris-mid); border-radius: 100px; padding: 10px 20px; font-size: .975rem; font-weight: 600; color: #444; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.ciudad-pill--on { border-color: var(--verde); color: var(--verde-dk); background: rgba(139,197,63,.07); }
.ciudad-pill--next { border-style: dashed; color: #999; }
.dot { width: 7px; height: 7px; background: var(--verde); border-radius: 50%; box-shadow: 0 0 6px var(--verde); flex-shrink: 0; }
.mapa-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.12); border: 1px solid var(--gris-mid); }

/* Descarga */
.descarga-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.store-label { font-size: .875rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blanco-soft); margin: 24px 0 12px; }
.store-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--plomo); border: 1px solid var(--plomo-mid); border-radius: var(--r); padding: 11px 20px; text-decoration: none; color: var(--blanco); font-family: var(--font); transition: all .25s; }
.store-btn:hover { border-color: var(--verde); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.store-icon { font-size: 1.3rem; }
.store-sub  { font-size: .75rem; color: var(--blanco-soft); display: block; font-weight: 400; }
.store-name { font-size: .975rem; font-weight: 700; display: block; }
.store-badge-link { display: inline-block; transition: transform .25s, filter .25s; }
.store-badge-link:hover { transform: translateY(-2px); filter: brightness(1.1); }
.store-badge { height: 52px; width: auto; display: block; }

/* Contacto */
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; min-width: 44px; background: var(--verde-glow); border: 1px solid rgba(139,197,63,.3); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-label { font-size: .8rem; color: var(--plomo-light); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 3px; }
.contact-val { font-size: 1.025rem; font-weight: 600; color: var(--blanco); text-decoration: none; }
.contact-val:hover { color: var(--verde); }
.dept-box { background: var(--plomo); border: 1px solid var(--plomo-mid); border-radius: var(--r); padding: 18px 20px; margin-top: 24px; }
.dept-title { font-size: .825rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--verde); margin-bottom: 10px; }
.dept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dept-grid a { font-size: .905rem; color: var(--blanco-soft); text-decoration: none; transition: color .2s; }
.dept-grid a:hover { color: var(--verde); }
.contact-form { background: #fff; border-radius: var(--r-lg); padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--negro); margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .905rem; font-weight: 600; color: #555; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; background: var(--gris-claro); border: 1px solid var(--gris-mid); border-radius: var(--r); padding: 12px 15px; color: var(--negro); font-family: var(--font); font-size: 1.025rem; transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--verde); box-shadow: 0 0 0 3px rgba(139,197,63,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* Footer */
.footer { background: #12121e; border-top: 1px solid var(--plomo-mid); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__col-title { font-size: .825rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--verde); margin-bottom: 14px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: .955rem; color: var(--blanco-soft); text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: var(--verde); }
.footer__social { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; background: var(--plomo); border: 1px solid var(--plomo-mid); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; color: var(--blanco-soft); font-weight: 700; transition: all .2s; }
.social-link:hover { background: var(--verde-glow); border-color: rgba(139,197,63,.4); color: var(--verde); }
.footer__bottom { border-top: 1px solid var(--plomo-mid); padding-top: 24px; display: flex; justify-content: space-between; font-size: .875rem; color: var(--blanco-soft); }

/* Animaciones scroll */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }

/* Responsive */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col--reverse > * { order: unset; }
  .img-stack__badge--br, .img-stack__badge--tr { position: static; margin-top: 10px; display: inline-block; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__logo img { width: 140px; height: auto; }
  .hero__content { margin-left: 0; max-width: 100%; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--negro); justify-content: center; align-items: center; z-index: 999; gap: 28px; }
  .nav__links.open a { font-size: 1.225rem; }
  .hero__title { font-size: 2.4rem; letter-spacing: -1px; }
  .hero__titles { min-height: 280px; }
  .hero__actions { flex-direction: column; }
  .hero__stats { flex-wrap: wrap; }
  .hero__stat { padding: 4px 14px; }
  .strip__sep { display: none; }
  .strip__inner { flex-direction: column; gap: 10px; }
  .seg-grid { grid-template-columns: 1fr; }
  .app-features { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .parallax-section { background-attachment: scroll; }
}
@media (max-width: 480px) {
  .hero__stat-num { font-size: 1.3rem; }
  .servicios-grid { grid-template-columns: 1fr; }
  .comision-num { letter-spacing: -2px; }
}
