/* =========================================================================
   Zeuz Fibra — landing
   Implementada desde Figma: -Auna- Recomendador de programas, nodo 548:11162
   ========================================================================= */

.zeuz {
  /* Paleta Claro: rojo de marca + negro */
  --red:        #dc2626;   /* primario */
  --red-dark:   #b91c1c;   /* hover y degradados */
  --red-light:  #f05252;   /* acentos sobre fondo oscuro */
  --black:      #222222;   /* titulares y superficies oscuras */
  --black-deep: #141414;   /* pie y degradados */
  --grey:       #64646e;   /* texto secundario sobre claro */
  --grey-soft:  #adadb8;   /* texto secundario sobre oscuro */
  --surface:    #f7f7f8;
  --line:       #e6e6e9;
  --wa:         #25d366;   /* verde de WhatsApp, marca ajena */

  --pad: 120px;
  --nav-h: 104px;

  --f-display: 'Unbounded', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-alt:     'Outfit', system-ui, sans-serif;

  background: #fff;
  color: var(--black);
  font-family: var(--f-body);
  line-height: normal;
  /* `clip` recorta el desbordamiento sin crear contenedor de scroll,
     que es lo que rompería el `position: sticky` de la nav. */
  overflow-x: clip;
}

.zeuz *,
.zeuz *::before,
.zeuz *::after { box-sizing: border-box; }

.zeuz img { max-width: 100%; display: block; }
.zeuz p { margin: 0; }
.zeuz h1, .zeuz h2, .zeuz h3, .zeuz h4 { margin: 0; font-weight: 800; font-family: var(--f-display); }
.zeuz a { text-decoration: none; color: inherit; }
.zeuz ul { margin: 0; padding: 0; list-style: none; }

/* `hidden` debe ganar a los `display` explícitos de los componentes
   (paneles de pestañas, acordeón). */
.zeuz [hidden] { display: none !important; }

/* El ancla no queda debajo de la barra fija */
.zeuz [id] { scroll-margin-top: var(--nav-h); }
html:has(.zeuz) { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html:has(.zeuz) { scroll-behavior: auto; } }

/* La plantilla es autónoma: reset mínimo sobre el body de WordPress */
body.zeuz-landing-page { margin: 0; padding: 0; background: #fff; }

/* La barra de administración no debe tapar la nav fija */
body.zeuz-landing-page.admin-bar .z-nav { top: 32px; }
body.zeuz-landing-page.admin-bar .zeuz [id] { scroll-margin-top: calc(var(--nav-h) + 32px); }
@media screen and (max-width: 782px) {
  body.zeuz-landing-page.admin-bar .z-nav { top: 46px; }
  body.zeuz-landing-page.admin-bar .zeuz [id] { scroll-margin-top: calc(var(--nav-h) + 46px); }
}

/* ------------------------------------------------------------------
   WPBakery envuelve cada elemento en .vc_row > .vc_column_container >
   .vc_column-inner, con márgenes y padding propios. Las secciones de la
   landing son a sangre, así que aquí se anulan.
   ------------------------------------------------------------------ */
.zeuz .vc_row { margin: 0; }
.zeuz .vc_row .vc_column_container { padding: 0; }
.zeuz .vc_column-inner { padding: 0 !important; }
.zeuz .wpb_content_element,
.zeuz .wpb_text_column { margin-bottom: 0; }
.zeuz .vc_row-full-width { display: none; }

/* wpautop convierte los saltos de línea entre filas en <br> de 20px.
   Si al editar en el builder se cuela alguno, aquí queda neutralizado. */
.zeuz .wpb-content-wrapper > br,
.zeuz > br { display: none; }

/* ------------------------------------------------------------------
   Plantilla con la cabecera de The7: el tema envuelve el contenido en
   #main > .wf-wrap > .wf-container-main, con ancho máximo y padding.
   Las secciones de la landing son a sangre, así que se rompe aquí.
   El pie lo pone el elemento «Zeuz · Pie», no The7.
   ------------------------------------------------------------------ */
.zeuz--the7 { width: 100%; }

body.zeuz-the7 #main { padding: 0 !important; }
body.zeuz-the7 #main > .wf-wrap,
body.zeuz-the7 #main .wf-wrap {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.zeuz-the7 #main .wf-container-main { width: 100% !important; margin: 0 !important; }
/* The7 pinta el logo a tamaño natural: se acota por si se sube otro archivo */
body.zeuz-the7 .masthead .branding img { max-height: 80px; width: auto; }

body.zeuz-the7 .sidebar,
body.zeuz-the7 #sidebar,
body.zeuz-the7 .sidebar-content { display: none !important; }

/* El pie de The7 sobra: la landing trae el suyo */
body.zeuz-the7 #footer,
body.zeuz-the7 .footer,
body.zeuz-the7 #bottom-bar,
body.zeuz-the7 .bottom-bar { display: none !important; }

/* Etiquetas solo para lectores de pantalla */
.zeuz .screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Piezas compartidas ---------- */
.z-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-display); font-weight: 700; font-size: 12px;
  padding: 12px 24px; border-radius: 100px; border: 0; cursor: pointer;
  text-align: center; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.z-btn:hover { transform: translateY(-2px); }
.zeuz .z-btn--primary   { background: var(--red);   color: #fff; }
.zeuz .z-btn--light  { background: #fff; color: var(--black); box-shadow: 0 10px 24px -10px rgba(0,0,0,.5); }
.zeuz .z-btn--ghost  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.z-btn--block  { width: 100%; }

.z-badge {
  display: inline-flex; font-family: var(--f-display); font-weight: 700;
  font-size: 12px; padding: 8px 16px; border-radius: 8px;
  background: var(--red); color: #fff;
}

.z-icon { display: inline-flex; align-items: center; justify-content: center; flex: none; }

/* =========================================================================
   Nav
   ========================================================================= */
.z-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: #fff; border-bottom: 1px solid var(--line);
}
.z-logo { display: flex; align-items: center; gap: 8px; flex: none; }
.z-logo__img { height: 76px; width: auto; display: block; }
.z-logo__mark {
  width: 40px; height: 40px; border-radius: 12px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 900; font-size: 20px; color: #fff;
}
.z-logo__text { font-family: var(--f-display); font-weight: 800; color: var(--black); font-size: 22px; white-space: nowrap; }
.z-logo__text span { font-size: 12px; color: var(--red); }

.z-nav__links { display: flex; align-items: center; gap: 32px; }
.z-nav__links a {
  font-family: var(--f-body); font-weight: 600; font-size: 14px; color: var(--black);
  white-space: nowrap; position: relative; padding: 4px 0;
}
.z-nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.z-nav__links a:hover::after,
.z-nav__links a.is-active::after { transform: scaleX(1); }
.z-nav__links a.is-active { color: var(--red); }

.z-nav__actions { display: flex; align-items: center; gap: 16px; flex: none; }
.z-nav__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--black); white-space: nowrap; }
.z-nav__phone img { width: 18px; height: 18px; }

.z-burger {
  display: none; width: 40px; height: 40px; flex: none; border: 0; background: transparent;
  cursor: pointer; padding: 8px; flex-direction: column; justify-content: center; gap: 5px;
}
.z-burger span { display: block; height: 2px; background: var(--black); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.z-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.z-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.z-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   Hero
   ========================================================================= */
.z-hero {
  position: relative; display: flex; align-items: center; gap: 64px;
  height: 640px; padding-left: var(--pad); overflow: hidden;
}
.z-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.z-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.z-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(34,34,34,.82), rgba(20,20,20,.95));
}
.z-hero__left { position: relative; flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.z-hero__title { font-size: 56px; line-height: 1.1; display: flex; flex-direction: column; gap: 8px; width: 100%; }
.z-hero__title span:first-child { color: #fff; }
.z-hero__title span:last-child  { color: var(--red-light); }
.z-hero__lead { font-size: 16px; color: #fff; opacity: .9; width: 100%; }

.z-hero__stats {
  display: flex; align-items: center; gap: 16px; width: 100%; padding: 16px;
  border-radius: 16px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(9px);
}
.z-stat { display: flex; flex-direction: column; gap: 4px; white-space: nowrap; }
.z-stat__label { font-size: 12px; color: var(--grey-soft); }
.z-stat__value { font-family: var(--f-display); font-weight: 800; font-size: 32px; color: #fff; }
.z-stat__value--accent { color: var(--red-light); }
.z-stat__value small { font-size: 16px; }
.z-hero__stats-sep { width: 1px; height: 40px; background: rgba(255,255,255,.3); flex: none; }

.z-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.z-hero__right { position: relative; width: 692px; height: 100%; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; flex: none; }
.z-hero__right img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================================
   Franja de clientes
   ========================================================================= */
.z-clients {
  display: flex; align-items: center; justify-content: center; gap: 50px;
  flex-wrap: wrap; padding: 24px 90px;
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.z-client { display: flex; align-items: center; gap: 12px; color: var(--black); font-family: var(--f-alt); }
.z-client img { flex: none; }
.z-client__label { font-size: 11px; }
.z-client__value { font-size: 15px; font-weight: 700; }

/* =========================================================================
   Promo Liga 1 Max
   ========================================================================= */
.z-promo { position: relative; display: flex; align-items: center; gap: 64px; padding: 80px var(--pad); }
.z-promo__bg { position: absolute; inset: 0; pointer-events: none; }
.z-promo__bg img { width: 100%; height: 100%; object-fit: cover; }
.z-promo__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,20,.92), rgba(34,34,34,.95)); }
.z-promo__left { position: relative; flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.z-promo__tag { font-family: var(--f-display); font-weight: 800; font-size: 10px; padding: 6px 12px; border-radius: 4px; background: var(--red); color: #fff; }
.z-promo__title { font-size: 36px; line-height: 1.2; color: #fff; width: 100%; }
.z-promo__lead { font-size: 16px; color: var(--grey-soft); width: 100%; }
.z-promo__media { width: 100%; height: 240px; border-radius: 16px; overflow: hidden; }
.z-promo__media img { width: 100%; height: 100%; object-fit: cover; }
.z-promo__right { position: relative; width: 420px; flex: none; display: flex; flex-direction: column; gap: 24px; }

.z-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  filter: drop-shadow(0 14px 16px rgba(0,0,0,.1));
}
.z-card--accent { border: 2px solid var(--red); filter: drop-shadow(0 14px 15px rgba(220,38,38,.18)); }
.z-card__title { font-family: var(--f-display); font-weight: 800; font-size: 16px; color: var(--black); }
.z-card__text { font-size: 14px; color: var(--black); opacity: .7; }
.z-card--accent .z-card__text { font-size: 13px; }

.zeuz .z-wa {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 12px; border-radius: 12px; background: var(--wa);
  color: #fff; font-weight: 700; font-size: 14px; border: 0; cursor: pointer;
  transition: filter .18s ease;
}
.z-wa:hover { filter: brightness(1.06); }

.z-form { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.z-form input[type="tel"],
.z-form input[type="text"] {
  width: 100%; padding: 12px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--line);
  font-family: var(--f-body); font-size: 14px; color: var(--black);
}
.z-form input::placeholder { color: var(--grey); }
.z-form input:focus-visible { outline: 2px solid var(--red); outline-offset: 1px; }
.z-consent { display: flex; align-items: center; gap: 8px; padding: 12px; }
.z-consent input { width: 16px; height: 16px; flex: none; accent-color: var(--red); border-radius: 4px; }
.z-consent label { font-size: 11px; color: var(--black); opacity: .8; }
.z-form__submit {
  width: 100%; padding: 12px; border-radius: 12px; background: var(--red); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 12px; border: 0; cursor: pointer;
  transition: filter .18s ease;
}
.z-form__submit:hover { filter: brightness(1.08); }
.z-form__note { font-size: 12px; color: var(--wa); font-weight: 600; }
.z-form__note[hidden] { display: none; }

/* =========================================================================
   Planes
   ========================================================================= */
.z-planes {
  padding: 96px var(--pad);
  background: linear-gradient(90deg, var(--surface), #fff);
}
/* =========================================================================
   Diferenciadores
   ========================================================================= */
.z-diff {
  display: flex; flex-direction: column; gap: 48px; padding: 80px var(--pad);
  background: linear-gradient(120deg, var(--red), var(--black-deep));
}
.z-diff__title { font-size: 32px; color: #fff; text-align: center; width: 100%; }
.z-diff__grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; width: 100%; }
.z-diff__item {
  width: 250px; padding: 24px; border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(9px);
}
.z-diff__icon { padding: 16px; border-radius: 100px; background: rgba(255,255,255,.13); }
.z-diff__icon img { width: 32px; height: 32px; }
.z-diff__name { font-size: 16px; color: #fff; text-align: center; }
.z-diff__text { font-size: 13px; line-height: 1.4; color: #fff; opacity: .8; text-align: center; }

/* =========================================================================
   Why choose us
   ========================================================================= */
.z-why {
  display: flex; align-items: center; gap: 80px; padding: 96px var(--pad);
  background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.z-why__left { flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.z-why__eyebrow { font-family: var(--f-display); font-weight: 800; font-size: 12px; color: var(--red); }
.z-why__title { font-size: 36px; line-height: 1.2; color: var(--black); width: 100%; }
.z-why__text { font-size: 15px; line-height: 1.6; color: var(--black); opacity: .7; width: 100%; }
.z-why__list { display: flex; flex-direction: column; gap: 12px; }
.z-why__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14px; color: var(--black); }
.z-why__check {
  width: 24px; height: 24px; border-radius: 100px; background: var(--surface);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.z-why__check img { width: 12px; height: 12px; }
.z-why__media {
  flex: 1 0 0; min-width: 0; height: 420px; border-radius: 24px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 14px 28px -10px rgba(0,0,0,.07);
}
.z-why__media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================================
   Banner de contacto
   ========================================================================= */
.z-contact { position: relative; display: flex; padding: 80px var(--pad); }
.z-contact__bg { position: absolute; inset: 0; pointer-events: none; }
.z-contact__bg img { width: 100%; height: 100%; object-fit: cover; }
.z-contact__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,20,.85), rgba(34,34,34,.95)); }
.z-contact__inner {
  position: relative; flex: 1 0 0; min-width: 0; display: flex; align-items: center; gap: 48px;
  padding: 48px; border-radius: 32px;
  background: rgba(20,20,20,.82); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px);
}
.z-contact__copy { flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.z-contact__title { font-size: 32px; line-height: 1.2; color: #fff; }
.z-contact__text { font-size: 15px; color: var(--grey-soft); }
.z-contact__form { width: 400px; flex: none; display: flex; flex-direction: column; gap: 12px; }
.z-contact__form input {
  width: 100%; padding: 16px; border-radius: 12px; border: 0; background: #fff;
  font-family: var(--f-body); font-size: 14px; color: var(--black);
}
.z-contact__form input::placeholder { color: var(--grey); }
.z-contact__form input:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* =========================================================================
   Medios de pago
   ========================================================================= */
.z-pay { position: relative; display: flex; flex-direction: column; align-items: center; gap: 40px; padding: 80px var(--pad); }
.z-pay__bg { position: absolute; inset: 0; pointer-events: none; }
.z-pay__bg img { width: 100%; height: 100%; object-fit: cover; }
.z-pay__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,20,.95), rgba(34,34,34,.95)); }
.z-pay__head { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.z-pay__eyebrow { font-family: var(--f-display); font-weight: 800; font-size: 12px; color: var(--red); }
.z-pay__title { font-size: 28px; color: #fff; text-align: center; }
.z-pay__grid { position: relative; display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; width: 100%; }
.z-pay__item {
  width: 160px; padding: 24px; border-radius: 16px; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.z-pay__name { font-family: var(--f-display); font-weight: 900; font-size: 20px; color: var(--black); }
.z-pay__note { font-size: 12px; color: var(--grey); }

/* =========================================================================
   FAQs
   ========================================================================= */
.z-faq {
  display: flex; align-items: flex-start; gap: 80px; padding: 96px var(--pad);
  background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.z-faq__left { flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.z-faq__title { font-size: 32px; line-height: 1.2; color: var(--black); width: 100%; }
.z-faq__text { font-size: 14px; line-height: 1.6; color: var(--black); opacity: .7; width: 100%; }
.z-faq__stats { display: flex; gap: 40px; padding-top: 16px; width: 100%; flex-wrap: wrap; }
.z-faq__stat { display: flex; flex-direction: column; gap: 4px; }
.z-faq__stat b { font-family: var(--f-display); font-weight: 800; font-size: 36px; }
.z-faq__stat:nth-child(1) b { color: var(--red); }
.z-faq__stat:nth-child(2) b { color: var(--red); }
.z-faq__stat span { font-size: 12px; color: var(--grey); }

.z-faq__list {
  flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; gap: 12px;
  padding: 24px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line);
}
.z-acc { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.z-acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px; background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: var(--f-body); font-weight: 600; font-size: 14px; color: var(--black);
}
.z-acc__btn img { width: 16px; height: 16px; flex: none; transition: transform .2s ease; }
.z-acc__btn[aria-expanded="true"] img { transform: rotate(180deg); }
.z-acc__panel { padding: 0 20px 20px; font-size: 14px; line-height: 1.6; color: var(--black); opacity: .75; }
.z-acc__panel[hidden] { display: none; }

/* =========================================================================
   Footer
   ========================================================================= */
.z-footer {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; gap: 56px;
  padding: 88px var(--pad) 40px;
  background: var(--black-deep);
  border-top: 3px solid var(--red);
}

/* Halo rojo tenue en la esquina, para que el bloque no sea un rectángulo plano */
.z-footer__glow {
  position: absolute; inset: auto auto -40% -10%;
  width: 620px; height: 620px; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(220,38,38,.16), transparent 68%);
}

.z-footer__cols {
  display: grid; gap: 48px 40px; width: 100%;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(170px, 1fr));
}

/* ---------- Marca ---------- */
.z-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
/* El fondo negro que traía el PNG se hizo transparente en el propio archivo,
   así que aquí no hace falta ningún truco de mezcla. */
.z-footer__logo { width: auto; display: block; }
.z-footer__about { font-size: 13.5px; line-height: 1.6; color: var(--grey-soft); max-width: 42ch; }
.z-footer__dist {
  height: 24px; width: auto; max-width: 100%; display: block; margin-top: 2px;
  padding: 9px 13px; border-radius: 10px; box-sizing: content-box;
  object-fit: contain; background: rgba(255,255,255,.96);
}

/* ---------- Columnas ---------- */
.z-footer__col { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

.z-footer__head {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 800; font-size: 12px;
  letter-spacing: .04em; color: #fff; margin: 0;
}
.z-footer__head-ico {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(220,38,38,.16); color: var(--red);
}

.z-footer__list { display: flex; flex-direction: column; gap: 13px; }
.z-footer__list li { display: flex; align-items: flex-start; gap: 9px; }
.z-footer__bullet {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 16px; height: 16px; margin-top: 2px; color: var(--red);
  transition: transform .18s ease;
}
.z-footer__list a,
.z-footer__list li > span:not(.z-footer__bullet) {
  font-size: 13.5px; line-height: 1.45; color: var(--grey-soft);
  transition: color .18s ease;
}
.z-footer__list a:hover { color: #fff; }
.z-footer__list li:hover .z-footer__bullet { transform: translateX(3px); }

/* ---------- Contacto: botón de WhatsApp ---------- */
.zeuz .z-footer__wa {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 16px; border-radius: 12px;
  background: var(--wa); color: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.z-footer__wa:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(37,211,102,.7); }
.z-footer__wa span { display: flex; flex-direction: column; line-height: 1.2; }
.z-footer__wa small { font-size: 10.5px; opacity: .85; }
.z-footer__wa strong { font-family: var(--f-display); font-weight: 700; font-size: 14px; }

/* ---------- Pie inferior ---------- */
.z-footer__sep { height: 1px; background: rgba(255,255,255,.1); }
.z-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.z-footer__copy { font-size: 12px; color: var(--grey-soft); }

.z-footer__social { display: flex; gap: 10px; }
.z-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 100px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.z-footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.z-footer__social img { width: 17px; height: 17px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1200px) {
  .zeuz { --pad: 56px; }
  .z-hero { height: auto; padding: 64px 0 0 var(--pad); }
  .z-hero__right { width: 45%; align-self: stretch; min-height: 420px; }
  .z-hero__title { font-size: 44px; }
}

@media (max-width: 980px) {
  .zeuz { --pad: 32px; }
  .z-nav { padding: 0 var(--pad); }
  .z-burger { display: flex; }
  .z-nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 16px; display: none;
  }
  .z-nav__links.is-open { display: flex; }
  .z-nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .z-nav__links a::after { display: none; }
  .z-nav__phone { display: none; }

  .z-hero { flex-direction: column; padding: 56px var(--pad) 0; gap: 40px; }
  .z-hero__right { width: 100%; min-height: 320px; }
  .z-hero__title { font-size: 38px; }

  .z-promo, .z-why, .z-faq, .z-contact__inner { flex-direction: column; gap: 40px; align-items: stretch; }
  .z-promo__right, .z-contact__form { width: 100%; }
  .z-why__media { height: 320px; }
  .z-contact__inner { padding: 32px; }
  .z-promo__title, .z-why__title, .z-contact__title, .z-faq__title { font-size: 28px; }

  .z-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 32px; }
  .z-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .zeuz { --pad: 20px; }

  /* A 390px no caben logo + burger + CTA a tamaño completo: se reduce
     la marca y el botón, en lugar de sacrificar la llamada a la acción. */
  .z-logo__mark { width: 32px; height: 32px; border-radius: 10px; font-size: 16px; }
  .z-logo__text { font-size: 17px; }
  .z-logo__text span { font-size: 10px; }
  .z-nav__actions .z-btn { padding: 10px 14px; font-size: 10px; }
  .z-hero__title { font-size: 32px; }
  .z-hero__stats { flex-direction: column; align-items: flex-start; }
  .z-hero__stats-sep { width: 40px; height: 1px; }
  .z-hero__cta { width: 100%; }
  .z-hero__cta .z-btn { flex: 1 0 auto; }
  .z-diff__item { width: 100%; max-width: 340px; }
  .z-clients { gap: 24px; padding: 24px var(--pad); }
  .z-footer { padding: 64px var(--pad) 32px; gap: 40px; }
  .z-footer__cols { grid-template-columns: 1fr; gap: 36px; }
  .z-footer__glow { width: 380px; height: 380px; }
  .z-footer__bottom { justify-content: flex-start; }
}
