/* ==========================================================================
   STATIC PAGES — content typography (legal/about), CF7 contact form skin,
   404. Loaded on is_page() and is_404().
   ========================================================================== */

/* --- readable measure for top-level text (columns/images stay full) ------- */
.gvb-page-body { padding-top: 40px; padding-bottom: 64px; }
.gvb-page-body .entry-content > p,
.gvb-page-body .entry-content > h1,
.gvb-page-body .entry-content > h2,
.gvb-page-body .entry-content > h3,
.gvb-page-body .entry-content > h4,
.gvb-page-body .entry-content > ul,
.gvb-page-body .entry-content > ol,
.gvb-page-body .entry-content > table,
.gvb-page-body .entry-content > blockquote {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --- content typography ---------------------------------------------------- */
.entry-content { font-size: .98rem; line-height: 1.75; color: var(--text); }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.3;
  margin: 1.6em 0 .55em;
}
.entry-content h1 { font-size: 1.7rem; }
.entry-content h2 { font-size: 1.45rem; }
.entry-content h3 { font-size: 1.18rem; }
.entry-content h4 { font-size: 1.02rem; color: var(--teal-d); }
.entry-content p { margin: 0 0 1.1em; }
.entry-content a { color: var(--teal-d); }
.entry-content a:hover { color: var(--teal); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.entry-content li { margin-bottom: .4em; }
.entry-content li::marker { color: var(--teal); }
.entry-content hr {
  border: none; height: 1px; background: var(--border);
  max-width: 900px; margin: 2em auto;
}
.entry-content img { max-width: 100%; height: auto; border-radius: var(--r); }
.entry-content table {
  width: 100%; border-collapse: collapse; font-size: .88rem; margin: 0 0 1.4em;
}
.entry-content th, .entry-content td {
  border: 1px solid var(--border); padding: 8px 12px; text-align: left;
}
.entry-content th { background: var(--mint-bg); font-family: var(--font-head); }
.entry-content blockquote {
  border-left: 3px solid var(--teal);
  background: var(--mint-bg);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 20px;
  margin: 0 auto 1.4em;
}

/* content buttons → brand style (e.g. "Conócenos" on Sobre Nosotros) */
.entry-content .wp-block-button__link {
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 12px 30px;
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .15s;
}
.entry-content .wp-block-button__link:hover { background: var(--teal-d); }

/* columns spacing on small screens */
@media (max-width: 781px) {
  .entry-content .wp-block-columns { gap: 18px; }
}

/* --- Contact Form 7 skin ---------------------------------------------------- */
.wpcf7 { max-width: 640px; margin-inline: auto; }
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--border-d);
  border-radius: 10px;
  background: var(--white);
  padding: 11px 14px;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-ul);
}
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7 .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.wpcf7 .wpcf7-acceptance label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .84rem; color: var(--text-m);
}
.wpcf7 .wpcf7-acceptance input { margin-top: 3px; accent-color: var(--teal); }
.wpcf7 .wpcf7-submit {
  display: inline-block;
  margin-top: 16px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 38px;
  font-family: var(--font-head);
  font-size: .92rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.wpcf7 .wpcf7-submit:hover { background: var(--teal-d); transform: translateY(-1px); }
.wpcf7 .wpcf7-spinner { margin: 0 0 0 10px; }

/* validation + response states */
.wpcf7 .wpcf7-not-valid { border-color: #c0392b; }
.wpcf7 .wpcf7-not-valid-tip { font-size: .78rem; color: #c0392b; margin: -8px 0 12px; }
.wpcf7 .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 16px;
  border: none;
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--mint-bg);
  font-size: .88rem;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-left-color: #c0392b;
  background: #fdf0ee;
}

/* --- 404 -------------------------------------------------------------------- */
.gvb-404 {
  text-align: center;
  padding: 70px 28px 90px;
  max-width: 640px;
  margin: 0 auto;
}
.gvb-404 p.gvb-404__code {
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--teal);
  margin: 0 0 10px;
}
.gvb-404 p { color: var(--text-m); margin: 0 0 26px; }
.gvb-404 .gvb-livesearch { max-width: 380px; margin: 0 auto 26px; }
.gvb-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- Contacto: natural flow (as the original staging site) — form section
   first, "Contáctenos Hoy" info, Ubicación + map at the bottom. Only the
   form field skin applies (above); no structural overrides. */
.page-id-27 .wpcf7 { margin-inline: auto; max-width: 640px; }

/* --- Contacto template (page-contacto.php, ported from gvb-child) --------- */
.gvb-contact-section { padding: 60px 0 80px; }
.gvb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
.gvb-contact-info h2,
.gvb-contact-form h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
}
.gvb-contact-card {
  background: var(--teal-ul);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.gvb-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.gvb-contact-item:last-child { margin-bottom: 0; }
.gvb-contact-item svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }
.gvb-contact-item strong { display: block; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.gvb-contact-item p,
.gvb-contact-item a { color: var(--text-b); font-size: .9rem; margin: 0; text-decoration: none; }
.gvb-contact-item a:hover { color: var(--teal); }
.gvb-contact-social { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.gvb-contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-xl);
  background: var(--border);
  color: var(--text-b);
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.gvb-contact-social a:hover { background: var(--teal); color: var(--white); }
.gvb-contact-wa { margin-top: 8px; }
.gvb-contact-form .wpcf7 { margin: 0; max-width: none; }
.gvb-contact-map iframe { display: block; }
@media (max-width: 820px) {
  .gvb-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Legal/policy pages: document-card treatment --------------------------- */
.gvb-legal .gvb-page-body { max-width: 1020px; }
.gvb-legal .entry-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: clamp(22px, 5vw, 56px);
}
.gvb-legal .entry-content > :first-child { margin-top: 0; }
/* standalone images (e.g. ISO certificates) center inside the document */
.gvb-legal .entry-content .wp-block-image,
.gvb-legal .entry-content > figure { text-align: center; margin-inline: auto; }
.gvb-legal .entry-content .wp-block-image img { max-width: min(100%, 420px); }

/* Complianz cookie inventory (Política de cookies): readable rows */
.entry-content .cmplz-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 8px;
  padding: 0;
}
.entry-content .cmplz-dropdown summary,
.entry-content .cmplz-dropdown .cmplz-header {
  color: var(--text);
  font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
}
.entry-content .cmplz-dropdown[open] { background: var(--mint-bg); }
.entry-content .cmplz-dropdown p { padding: 0 14px; font-size: .86rem; }

/* --- Sobre Nosotros: rhythm polish ----------------------------------------- */
/* headings + texts in facing columns align to their vertical center, and
   centered body copy reads left-aligned like the rest of the site */
.page-id-26 .entry-content .wp-block-columns { align-items: center; }
.page-id-26 .entry-content .wp-block-column p.has-text-align-center { text-align: left; }
.page-id-26 .entry-content .wp-block-column h2.has-text-align-center,
.page-id-26 .entry-content .wp-block-column h3.has-text-align-center { text-align: left; }
.page-id-26 .entry-content .wp-block-spacer { height: 24px !important; }

/* --- Sobre Nosotros template ------------------------------------------------ */
.gvb-sobre-intro { max-width: 760px; }

.gvb-sobre-empresa { padding: 64px 0 56px; }
.gvb-sobre-empresa__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
}
.gvb-sobre-empresa__text h2 {
  font-size: 1.6rem;
  margin: 0 0 18px;
}
.gvb-sobre-empresa__text p { font-size: 1.02rem; line-height: 1.8; color: var(--text-b); }
.gvb-sobre-empresa__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gvb-sobre-empresa__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-l);
  box-shadow: var(--sh-m);
}
.gvb-sobre-empresa__media img:nth-child(2) { margin-top: 26px; }

.gvb-sobre-stats { background: var(--teal); padding: 40px 0; }
.gvb-sobre-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.gvb-sobre-stat__n {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.gvb-sobre-stat__l {
  display: block;
  margin-top: 4px;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}

.gvb-sobre-mision { padding: 64px 0 24px; text-align: center; }
.gvb-sobre-mision h2 { font-size: 1.35rem; margin: 0 0 18px; }
.gvb-sobre-mision blockquote {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  border: none;
  background: none;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--teal-dd);
  font-family: var(--font-head);
}
.gvb-sobre-mision blockquote::before { content: '“'; color: var(--teal); }
.gvb-sobre-mision blockquote::after { content: '”'; color: var(--teal); }

.gvb-sobre-valores { padding: 48px 0 64px; }
.gvb-sobre-valores__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gvb-sobre-valor {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 26px 22px;
  text-align: center;
  transition: box-shadow .18s, transform .18s;
}
.gvb-sobre-valor:hover { box-shadow: var(--sh-m); transform: translateY(-3px); }
.gvb-sobre-valor__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--teal-ul);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gvb-sobre-valor h3 { font-size: 1.02rem; margin: 0 0 8px; }
.gvb-sobre-valor p { font-size: .88rem; color: var(--text-m); line-height: 1.6; margin: 0; }

.gvb-sobre-certs { padding: 56px 0 72px; background: var(--white); }
.gvb-sobre-cert-gvb {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--teal-ul);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 30px 34px;
  margin-bottom: 44px;
}
.gvb-sobre-cert-gvb h3 { margin: 0 0 10px; font-size: 1.15rem; }
.gvb-sobre-cert-gvb p { margin: 0; color: var(--text-b); line-height: 1.7; }
.gvb-sobre-cert-gvb__imgs { display: flex; gap: 16px; justify-content: center; }
.gvb-sobre-cert-gvb__imgs img {
  width: 150px;
  height: auto;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px;
}
.gvb-sobre-sm-title {
  font-size: 1.05rem;
  color: var(--text-m);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 22px;
}
.gvb-sobre-sm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gvb-sobre-sm-card {
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.gvb-sobre-sm-card:hover { box-shadow: var(--sh-m); transform: translateY(-3px); }
.gvb-sobre-sm-card__img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.gvb-sobre-sm-card__body { padding: 18px 20px 22px; }
.gvb-sobre-sm-card__body h4 { font-size: 1rem; margin: 0 0 8px; }
.gvb-sobre-sm-card__body p { font-size: .86rem; color: var(--text-m); line-height: 1.65; margin: 0; }

/* section-title + CTA (mirrors the home components; home.css is front-only) */
.page-sobre-nosotros .gvb-section-title,
.gvb-sobre-valores .gvb-section-title,
.gvb-sobre-certs .gvb-section-title {
  text-align: center;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 0 0 30px;
}
.gvb-cta {
  background: var(--hero-gradient);
  background-size: 300% 300%;
  padding: 64px var(--container-pad);
  text-align: center;
}
.gvb-cta__title { color: var(--white); font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; }
.gvb-cta__desc { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }

@media (max-width: 900px) {
  .gvb-sobre-empresa__grid { grid-template-columns: 1fr; gap: 28px; }
  .gvb-sobre-valores__grid { grid-template-columns: repeat(2, 1fr); }
  .gvb-sobre-sm-grid { grid-template-columns: 1fr; }
  .gvb-sobre-cert-gvb { grid-template-columns: 1fr; }
  .gvb-sobre-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
}
@media (max-width: 560px) {
  .gvb-sobre-valores__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   EQUIPOS — landing (story + organic line cards) / category (line logo +
   family story + devices) / device (story). Coherent with the site system.
   ========================================================================== */
.gvb-eq-crumbs { margin-bottom: 10px; }
.gvb-eq-crumbs a { color: var(--teal); font-size: .85rem; text-decoration: none; }
.gvb-eq-crumbs a:hover { color: var(--teal-d); }

/* ---- Landing: story ------------------------------------------------------- */
.gvb-eq-story { padding: 56px 0 10px; text-align: center; }
.gvb-eq-story h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin: 0 0 16px; }
.gvb-eq-story p { max-width: 720px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; color: var(--text-b); }

/* ---- Landing: organic line cards ----------------------------------------- */
.gvb-eq-lines { padding: 40px 0 72px; }
.gvb-eq-lines__grid { display: flex; flex-direction: column; gap: 22px; max-width: 1100px; margin: 0 auto; }
.gvb-eq-line {
  display: grid; grid-template-columns: 320px 1fr; align-items: stretch;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; text-decoration: none; box-shadow: var(--sh-xs);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.gvb-eq-line:hover { box-shadow: var(--sh-h); transform: translateY(-3px); border-color: var(--teal-l); }
.gvb-eq-line__logo {
  display: flex; align-items: center; justify-content: center; padding: 34px;
  background: linear-gradient(150deg, var(--teal-ul) 0%, var(--mint-bg) 100%);
  border-right: 1px solid var(--border);
}
.gvb-eq-line__logo img { max-width: 100%; max-height: 92px; width: auto; object-fit: contain; }
.gvb-eq-line__logo--empty { min-height: 130px; }
.gvb-eq-line__body { padding: 26px 28px; display: flex; flex-direction: column; }
.gvb-eq-line__body h3 { font-family: var(--font-head); font-size: 1.3rem; margin: 0 0 8px; color: var(--text); }
.gvb-eq-line__body p { font-size: .95rem; line-height: 1.65; color: var(--text-m); margin: 0 0 18px; }
.gvb-eq-line__meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gvb-eq-line__count { font-size: .78rem; color: var(--text-m); letter-spacing: .02em; }
.gvb-eq-line__more { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--teal); letter-spacing: .03em; }
.gvb-eq-line:hover .gvb-eq-line__more { color: var(--teal-d); }

/* ---- Category: line logo + family story ---------------------------------- */
.gvb-eq-catintro { padding: 52px 0 20px; }
.gvb-eq-catintro__logo { text-align: center; margin: 0 auto 30px; }
.gvb-eq-catintro__logo img { max-height: 92px; width: auto; max-width: 340px; object-fit: contain; }
.gvb-eq-catintro .entry-content { max-width: none; }
.gvb-eq-catintro .entry-content > p:not([class]),
.gvb-eq-catintro .entry-content > h3,
.gvb-eq-catintro .entry-content > ul { max-width: 820px; margin-left: auto; margin-right: auto; }
.gvb-eq-catintro .gvb-eq-lead { font-size: 1.22rem; line-height: 1.7; color: var(--text); text-align: center; max-width: 760px; margin: 0 auto 8px; }
.gvb-eq-catintro .entry-content h3 { font-family: var(--font-head); font-size: 1.18rem; color: var(--teal-d); margin: 1.9em 0 .5em; padding-top: 1.4em; border-top: 1px solid var(--border); }
.gvb-eq-catintro .entry-content h3:first-of-type { border-top: none; padding-top: 0; margin-top: 1.6em; }
.gvb-eq-catintro .entry-content p { line-height: 1.75; color: var(--text-b); }
.gvb-eq-catintro .entry-content ul { padding-left: 1.3em; margin: .6em 0 1.2em; }
.gvb-eq-catintro .entry-content li { margin-bottom: .55em; color: var(--text-b); }
.gvb-eq-catintro .entry-content li::marker { color: var(--teal); }

/* ---- Category: available devices ----------------------------------------- */
.gvb-eq-devices { padding: 24px 0 52px; }
.gvb-eq-devices__label { max-width: 1100px; margin: 0 auto 30px; font-family: var(--font-head); font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--text); text-align: center; }
.gvb-eq-devices__grid { display: grid; grid-template-columns: repeat(auto-fit, 240px); justify-content: center; gap: 18px; max-width: 1020px; margin: 0 auto; }
.gvb-eq-devcard { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-l); overflow: hidden; text-decoration: none; box-shadow: var(--sh-xs); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.gvb-eq-devcard:hover { box-shadow: var(--sh-h); transform: translateY(-4px); border-color: var(--teal-l); }
.gvb-eq-devcard__img { height: 190px; flex: 0 0 190px; background: #fff; display: flex; align-items: center; justify-content: center; }
.gvb-eq-devcard__img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .35s ease; }
.gvb-eq-devcard:hover .gvb-eq-devcard__img img { transform: scale(1.05); }
.gvb-eq-devcard__body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.gvb-eq-devcard__body h3 { font-size: .95rem; margin: 0 0 6px; color: var(--text); }
.gvb-eq-devcard__body p { font-size: .86rem; color: var(--text-m); line-height: 1.55; margin: 0 0 12px; }
.gvb-eq-devcard__more { margin-top: auto; font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--teal); }
.gvb-eq-empty { text-align: center; color: var(--text-m); grid-column: 1 / -1; }

/* ---- Device page: story --------------------------------------------------- */
.gvb-eq-single { padding: 48px 0 64px; }
.gvb-eq-single__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1000px; margin: 0 auto 48px; }
.gvb-eq-single__media img { width: 100%; height: auto; border-radius: var(--r-l); background: #fff; border: 1px solid var(--border); padding: 20px; }
.gvb-eq-single__lead p { font-size: 1.12rem; line-height: 1.75; color: var(--text-b); margin: 0 0 24px; }
.gvb-eq-single__content { max-width: 860px; margin: 0 auto; }
.gvb-eq-single__content > :first-child { margin-top: 0; }
.gvb-eq-single__content h2, .gvb-eq-single__content h3 { font-family: var(--font-head); color: var(--text); margin: 1.8em 0 .6em; }
.gvb-eq-single__content p { line-height: 1.8; color: var(--text-b); }
.gvb-eq-single__content .gvb-eq-features .wp-block-column { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-l); padding: 22px 24px; }
.gvb-eq-single__content .gvb-eq-features h4 { color: var(--teal-d); margin-top: 0; }
.gvb-eq-single__content .gvb-eq-specs table { width: 100%; border-collapse: collapse; }
.gvb-eq-single__content .gvb-eq-specs td { border: 1px solid var(--border); padding: 9px 14px; font-size: .9rem; }
.gvb-eq-single__content .gvb-eq-specs tr td:first-child { background: var(--mint-bg); font-weight: 600; width: 42%; }
.gvb-eq-single__ask { max-width: 860px; margin: 52px auto 0; text-align: center; background: var(--teal-ul); border: 1px solid var(--border); border-radius: var(--r-l); padding: 34px 28px; }
.gvb-eq-single__ask p { margin: 0 0 20px; color: var(--text-b); font-size: 1.02rem; }
.gvb-eq-single__ask .gvb-btn { margin: 0 6px 8px; }
.gvb-btn--primary { background: var(--teal); color: #fff; }
.gvb-btn--primary:hover { background: var(--teal-d); color: #fff; }

@media (max-width: 960px) {
  .gvb-eq-line { grid-template-columns: 180px 1fr; }
  .gvb-eq-devices__grid { grid-template-columns: repeat(2, 1fr); }
  .gvb-eq-single__intro { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .gvb-eq-line { grid-template-columns: 1fr; }
  .gvb-eq-line__logo { border-right: none; border-bottom: 1px solid var(--border); }
  .gvb-eq-devices__grid { grid-template-columns: 1fr; }
}

/* ---- Device page (story, Sobre Nosotros language) ------------------------- */
.gvb-eqd-intro { padding: 52px 0 8px; }
.gvb-eqd-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1040px;
}
.gvb-eqd-intro__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-l);
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: var(--sh-s);
}
.gvb-eqd-lead { font-size: 1.2rem; line-height: 1.7; color: var(--text); margin: 0 0 26px; }
.gvb-eqd-body { padding: 40px 0 8px; }
.gvb-eqd-content { max-width: 820px; margin: 0 auto; font-size: 1.02rem; line-height: 1.8; color: var(--text-b); }
.gvb-eqd-content > :first-child { margin-top: 0; }
.gvb-eqd-content h2, .gvb-eqd-content h3 { font-family: var(--font-head); color: var(--text); margin: 1.9em 0 .5em; }
.gvb-eqd-content img { border-radius: var(--r); max-width: 100%; height: auto; }
.gvb-eqd-cta { margin-top: 44px; }
.gvb-eqd-related { padding-top: 56px; }
@media (max-width: 900px) {
  .gvb-eqd-intro__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Category story bands (manufacturer images · Sobre Nosotros rhythm) --- */
.gvb-eq-bands { padding: 8px 0 24px; }
.gvb-eq-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 20px;
  padding: 26px 0;
}
.gvb-eq-band--rev .gvb-eq-band__media { order: 2; }
.gvb-eq-band__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-l);
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--sh-s);
}
.gvb-eq-band__text h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--teal-d);
  margin: 0 0 12px;
}
.gvb-eq-band__text p { line-height: 1.8; color: var(--text-b); margin: 0 0 1em; }
.gvb-eq-band__text ul { padding-left: 1.3em; margin: .4em 0 0; }
.gvb-eq-band__text li { margin-bottom: .5em; color: var(--text-b); }
.gvb-eq-band__text li::marker { color: var(--teal); }
@media (max-width: 900px) {
  .gvb-eq-band { grid-template-columns: 1fr; gap: 20px; }
  .gvb-eq-band--rev .gvb-eq-band__media { order: 0; }
}

/* ==========================================================================
   EQUIPOS category v2 — "ficha de gama": immersive hero, anchor bar, icon
   trio, alternating full-bleed sections, config cards. Deymed translated
   into the GVB teal system.
   ========================================================================== */

/* ---- Immersive hero -------------------------------------------------------- */
.gvb-eq-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #00655c 0%, var(--teal-d) 45%, var(--teal) 100%);
  color: #fff;
  padding: 48px 0 56px;
}
.gvb-eq-hero__ghost {
  position: absolute;
  right: 16px;
  top: -2%;
  transform: translateY(var(--gvb-ghost-par, 0px));
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(120px, 24vw, 300px);
  line-height: 1;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
/* Real EEG trace (home hero channel 1) drawn along the hero bottom */
.gvb-eq-hero__traces {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  opacity: .34;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 40%, #000 60%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 40%, #000 60%);
}
.gvb-eq-hero__traces svg { width: 100%; height: 100%; display: block; }
.gvb-eq-hero__traces path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1650;
  stroke-dashoffset: 1650;
  animation: gvbEqTrace 6s ease-in-out .2s infinite;
}
.gvb-eq-hero__traces .trace { stroke: rgba(255,255,255,.34); stroke-width: 1.5; }
.gvb-eq-hero__traces .glow { stroke: rgba(255,255,255,.10); stroke-width: 5; filter: blur(3px); }
/* PSG: offset the respiratory channel so it draws out of phase with the EEG
   channel (mirrors the home hero's trace1/trace2 stagger). Longhand override
   beats the delay in the .gvb-eq-hero__traces path shorthand on specificity. */
.gvb-eq-hero__traces .resp { animation-delay: -2.4s; }
@keyframes gvbEqTrace {
  0%   { stroke-dashoffset: 1650; opacity: .10; }
  20%  { opacity: .92; }
  65%  { stroke-dashoffset: 0; opacity: .76; }
  100% { stroke-dashoffset: -1650; opacity: .12; }
}
.gvb-eq-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.gvb-eq-hero .gvb-eq-crumbs a { color: rgba(255,255,255,.75); }
.gvb-eq-hero .gvb-eq-crumbs a:hover { color: #fff; }
.gvb-eq-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.08;
}
.gvb-eq-hero__tag { font-size: 1.12rem; line-height: 1.6; color: rgba(255,255,255,.88); margin: 0 0 22px; max-width: 480px; }
.gvb-eq-hero__usp { list-style: none; padding: 0; margin: 0 0 28px; }
.gvb-eq-hero__usp li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: .98rem;
  color: rgba(255,255,255,.94);
}
.gvb-eq-hero__usp li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.gvb-eq-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.gvb-eq-hero__actions .gvb-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.gvb-eq-hero__actions .gvb-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.gvb-eq-hero__img { display: flex; align-items: center; justify-content: center; }
.gvb-eq-hero__img img {
  max-width: 100%;
  max-height: 470px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 30, 27, .45));
}
/* EMG render is wider than the EEG one — display it a touch smaller */
.gvb-eq-hero--emg .gvb-eq-hero__img img { max-height: 400px; }
.gvb-eq-hero--nfb .gvb-eq-hero__img img { max-height: 420px; }
/* IOM render is a wide unit front panel (landscape), not a tall cart */
.gvb-eq-hero--iom .gvb-eq-hero__img img { max-height: 300px; }

/* PSG: two stacked channels need a taller trace band */
.gvb-eq-hero--psg .gvb-eq-hero__traces { height: 145px; }

/* IOM: three stacked MEP sweeps need a taller band; rows sweep sequentially */
.gvb-eq-hero--iom .gvb-eq-hero__traces { height: 150px; }
.gvb-eq-hero--iom .gvb-eq-hero__traces .row2 { animation-delay: .9s; }
.gvb-eq-hero--iom .gvb-eq-hero__traces .row3 { animation-delay: 1.8s; }

/* ---- Equipamiento index hero (secondary-hero v3, "big" variant) -----------
   Full-size clone of the gama hero for /equipos/: no trace — instead the
   equipo_cat gamas pulse as ghost words, plus the shared secondary-hero shine.
   gvbHeroSecShine lives in main.css (always loaded). */
.gvb-eq-hero--index { padding: 48px 0 56px; }
.gvb-eq-hero__grid--index { grid-template-columns: 1fr; }
.gvb-eq-hero--index .gvb-eq-hero__text { max-width: 640px; }
.gvb-eq-hero--index .gvb-eq-crumbs { font-size: .82rem; margin: 0 0 14px; }
.gvb-eq-hero--index .gvb-eq-crumbs .sep { opacity: .5; margin: 0 4px; }
.gvb-eq-hero--index .gvb-eq-crumbs .cur { color: rgba(255, 255, 255, .9); }
.gvb-eq-hero__shine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 60%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .09) 50%, transparent 58%);
  transform: translateX(-80%);
  animation: gvbHeroSecShine 9s ease-in-out infinite;
}
.gvb-eq-hero__ghosts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  /* Two flex rows in the right two-thirds. Flex prevents same-row overlap and
     the row-gap keeps the two bands apart — even at the pulse's max scale. */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 6vh, 3.4rem);
  padding: 4% 3% 4% 30%;
  box-sizing: border-box;
}
.gvb-eq-hero__ghostrow {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(2rem, 5vw, 4rem);
  white-space: nowrap;
  min-width: 0;
}
.gvb-eq-hero__ghostrow--top { justify-content: flex-start; }
.gvb-eq-hero__ghostrow--bot { justify-content: flex-end; }
.gvb-eq-hero__ghosts span {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transform-origin: center center;
}
@keyframes gvbEqPulse {
  from { transform: scale(.96); }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .gvb-eq-hero__ghosts span { animation: none !important; transform: none; }
  .gvb-eq-hero__shine { animation: none; transform: translateX(60%); }
}
@media (max-width: 560px) {
  .gvb-eq-hero--index { padding: 34px 0 44px; }
  .gvb-eq-hero--index .gvb-eq-hero__tag { font-size: 1rem; margin-bottom: 18px; }
  .gvb-eq-hero__ghosts { padding: 6% 3% 6% 12%; gap: clamp(1rem, 5vh, 2rem); }
  .gvb-eq-hero__ghostrow { gap: clamp(1.2rem, 5vw, 2rem); }
  .gvb-eq-hero__ghosts span { font-size: 2.2rem !important; }
}

/* ---- Sticky anchor bar ------------------------------------------------------ */
.gvb-eq-anchors {
  position: sticky;
  top: 76px;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-s); /* same as .gvb-header */
}
.gvb-eq-anchors__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.gvb-eq-anchors__inner::-webkit-scrollbar { display: none; }
.gvb-eq-anchors a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-m);
  text-decoration: none;
  padding: 15px 18px 13px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--ease), border-color var(--ease);
}
.gvb-eq-anchors a:hover { color: var(--teal); }
.gvb-eq-anchors a.is-active { color: var(--teal); border-bottom-color: var(--teal); }

/* ---- Full-bleed alternating sections ---------------------------------------- */
.gvb-eq-sec { padding: 44px 0 36px; scroll-margin-top: 130px; }
.gvb-eq-sec--tint { background: var(--mint-bg); }
.gvb-eq-sec > .gvb-container > h2,
.gvb-eq-sec h2.gvb-eq-sec__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  text-align: center;
  margin: 0 0 8px;
}
.gvb-eq-sec h2 span { color: var(--teal); }
.gvb-eq-sec > .gvb-container > h2::after {
  content: "";
  display: block;
  width: 52px; height: 3px;
  border-radius: 2px;
  background: var(--teal);
  margin: 14px auto 26px;
}
.gvb-eq-sec .gvb-eq-lead { font-size: 1.2rem; line-height: 1.7; color: var(--text); text-align: center; max-width: 780px; margin: 0 auto 14px; }

/* ---- Icon feature trio ------------------------------------------------------- */
.gvb-eq-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1060px;
  margin: 30px auto 8px;
  text-align: center;
}
.gvb-eq-icons__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 30px 26px 26px;
  box-shadow: var(--sh-xs);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.gvb-eq-icons__item:hover { box-shadow: var(--sh-h); transform: translateY(-4px); border-color: var(--teal-l); }
.gvb-eq-icons h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--text); margin: 14px 0 8px; }
.gvb-eq-icons p { font-size: .9rem; line-height: 1.65; color: var(--text-m); margin: 0; }
.gvb-ico {
  display: inline-block;
  width: 52px; height: 52px;
  background-color: var(--teal);
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
}
.gvb-ico--shield { --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1.8 20.2 5v7c0 5.2-3.5 9.3-8.2 10.4C7.3 21.3 3.8 17.2 3.8 12V5Zm0 2.2L5.8 6.3V12c0 4.2 2.7 7.5 6.2 8.5 3.5-1 6.2-4.3 6.2-8.5V6.3Zm-1.1 11.3-2.8-2.8 1.3-1.3 1.5 1.5 3.7-3.7 1.3 1.3z"/></svg>'); }
.gvb-ico--bolt { --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.4 1.5 4 14h6l-1.6 8.5L18 9h-6l1.4-7.5ZM9.9 12 13 7.8 12.5 11h2.9l-4.4 5.9L11.7 12Z"/></svg>'); }
.gvb-ico--pulse { --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16ZM6 11h2.4l1.2-2.7 2.6 6 1.6-3.3H18v2h-3l-2.6 5.3-2.6-6L9.4 13H6Z"/></svg>'); }
.gvb-ico--cart { --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h2v3h14v2l-2 8H6V4H4Zm4 5v6h10.4l1.3-6ZM8 18a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm9 0a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z"/></svg>'); }
.gvb-ico--case { --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3h6a2 2 0 0 1 2 2v2h4v13H3V7h4V5a2 2 0 0 1 2-2Zm0 4h6V5H9ZM5 9v9h14V9Z"/></svg>'); }
.gvb-ico--tablet { --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 2h14a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm0 2v16h14V4Zm5 14h4v1.4h-4Z"/></svg>'); }
.gvb-ico--cross { --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm-1 3h2v3.9H17v2h-4V17h-2v-4.1H7v-2h4Z"/></svg>'); }

/* Manufacturer feature icons (font glyphs -> SVG masks, teal) */
.gvb-ico--eq-battery { --ico: url(../img/ico/eq-battery.svg); }
.gvb-ico--eq-wireless { --ico: url(../img/ico/eq-wireless.svg); }
.gvb-ico--eq-charging { --ico: url(../img/ico/eq-charging.svg); }
.gvb-ico--eq-isolation { --ico: url(../img/ico/eq-isolation.svg); }
.gvb-ico--eq-clickngo { --ico: url(../img/ico/eq-clickngo.svg); }
.gvb-ico--eq-alwayson { --ico: url(../img/ico/eq-alwayson.svg); }
.gvb-ico--eq-dsp { --ico: url(../img/ico/eq-dsp.svg); }
.gvb-eq-icons { row-gap: 22px; }

/* Compact band media (e.g. headbox cutout) */
.gvb-eq-band__media--sm { max-width: 300px; margin: 0 auto; }
/* Bare media: transparent cutout, no white panel */
.gvb-eq-band__media--bare img {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  filter: drop-shadow(0 16px 28px rgba(10, 37, 35, .16));
}

/* ---- Check lists -------------------------------------------------------------- */
.gvb-checks { list-style: none; padding: 0; margin: .8em 0 0; }
.gvb-checks li { position: relative; padding-left: 28px; margin-bottom: .6em; color: var(--text-b); line-height: 1.6; }
.gvb-checks li::before { content: "✓"; position: absolute; left: 0; top: .05em; color: var(--teal); font-weight: 700; }

/* ---- Bands inside sections (tilted screenshots) -------------------------------- */
.gvb-eq-sec .gvb-eq-band { margin: 24px auto 4px; padding: 8px 0; }
.gvb-eq-band__media--tilt img {
  transform: perspective(900px) rotateY(-4deg) rotateX(1.5deg);
  box-shadow: 14px 22px 44px rgba(10,37,35,.18);
  border: none;
}
.gvb-eq-band--rev .gvb-eq-band__media--tilt img { transform: perspective(900px) rotateY(4deg) rotateX(1.5deg); }

/* Slide-in reveals (software screenshots) — ui.js adds .gvb-revealed */
.gvb-eq-band__media--slide-l { opacity: 0; transform: translateX(-70px); transition: opacity .8s ease, transform .8s ease; }
.gvb-eq-band__media--slide-r { opacity: 0; transform: translateX(70px); transition: opacity .8s ease, transform .8s ease; }
.gvb-eq-band__media--slide-l.gvb-revealed,
.gvb-eq-band__media--slide-r.gvb-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .gvb-eq-band__media--slide-l, .gvb-eq-band__media--slide-r { opacity: 1; transform: none; transition: none; }
}

/* ---- Configuration cards -------------------------------------------------------- */
.gvb-eq-configs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1060px;
  margin: 26px auto 8px;
}
.gvb-eq-configs > .gvb-eq-config { flex: 0 1 240px; }
.gvb-eq-config {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.gvb-eq-config:hover { box-shadow: var(--sh-h); transform: translateY(-3px); border-color: var(--teal-l); }
.gvb-eq-config .gvb-ico { width: 42px; height: 42px; }
.gvb-eq-config h3 { font-family: var(--font-head); font-size: 1rem; color: var(--text); margin: 12px 0 8px; }
.gvb-eq-config p { font-size: .87rem; line-height: 1.6; color: var(--text-m); margin: 0; }
.gvb-eq-note { display: block; text-align: center; max-width: 720px; margin-top: 30px; margin-bottom: 0; margin-left: auto !important; margin-right: auto !important; color: var(--text-m); font-size: .95rem; line-height: 1.7; }

/* Config cards with photos (complementos / configuraciones) */
.gvb-eq-config__img { height: 96px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.gvb-eq-config__img img { max-height: 96px; max-width: 100%; width: auto; object-fit: contain; }
.gvb-eq-config--tall .gvb-eq-config__img { height: 180px; }
.gvb-eq-config--tall .gvb-eq-config__img img { max-height: 180px; }
.gvb-eq-configs--2 { max-width: 820px; }
.gvb-eq-configs--3 { max-width: 900px; margin-top: 30px; }

@media (max-width: 960px) {
  .gvb-eq-hero { padding: 38px 0 54px; }
  .gvb-eq-hero__grid { grid-template-columns: 1fr; gap: 26px; }
  .gvb-eq-hero__img img { max-height: 300px; }
  .gvb-eq-hero__ghost { font-size: 88px; top: 15%; right: 12px; transform: none; }
  .gvb-eq-hero__traces { height: 60px; }
  .gvb-eq-hero__traces svg { width: 300%; height: 100%; }
  .gvb-eq-anchors { position: static; top: auto; }
  .gvb-eq-hero__tag { font-size: 1rem; margin-bottom: 16px; }
  .gvb-eq-hero__usp li { font-size: .92rem; }
  .gvb-eq-anchors { top: 62px; }
  .gvb-eq-anchors__inner { justify-content: flex-start; }
  .gvb-eq-sec { padding: 42px 0 32px; }
  .gvb-eq-icons { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .gvb-eq-icons__item { padding: 24px 20px 20px; }
  .gvb-eq-sec .gvb-eq-lead { font-size: 1.05rem; }
  .gvb-eq-band__media--sm { max-width: 230px; }
  .gvb-eq-configs { gap: 14px; }
  .gvb-eq-configs > .gvb-eq-config { flex: 0 1 46%; }
  .gvb-eq-devices__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .gvb-eq-configs > .gvb-eq-config { flex: 0 1 100%; }
}

/* ---- "Informacion del producto": interactive hotspots ---------------------- */
.gvb-eq-hs { display: grid; grid-template-columns: 310px 1fr; gap: 56px; align-items: center; max-width: 980px; margin: 24px auto 0; }
.gvb-eq-hs__stage { max-width: 310px; }
.gvb-eq-hs__stage > img { filter: drop-shadow(0 14px 24px rgba(10, 37, 35, .14)); }
.gvb-eq-hs__stage { position: relative; }
.gvb-eq-hs__stage > img { width: 100%; height: auto; display: block; }
.gvb-eq-hs__dot {
  position: absolute;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: rgba(0, 154, 140, .16);
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  animation: gvbHsPulse 2.6s ease-in-out infinite;
}
.gvb-eq-hs__dot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .55;
  transition: opacity .18s ease;
}
.gvb-eq-hs__dot:hover { transform: scale(1.2); background: rgba(0,154,140,.28); }
.gvb-eq-hs__dot.is-active { background: var(--teal); box-shadow: 0 0 0 6px rgba(0,154,140,.18); animation: none; }
.gvb-eq-hs__dot.is-active::after { background: #fff; opacity: 1; }
@keyframes gvbHsPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,154,140,.25); } 50% { box-shadow: 0 0 0 8px rgba(0,154,140,0); } }
.gvb-eq-hs__panel { min-height: 240px; }
.gvb-eq-hs__item { display: none; }
.gvb-eq-hs__item.is-active { display: block; animation: gvbHsIn .3s ease; }
@keyframes gvbHsIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.gvb-eq-hs__item h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--teal-d); margin: 0 0 6px; }
.gvb-eq-hs__item h3::after { content: ""; display: block; width: 40px; height: 3px; border-radius: 2px; background: var(--teal); margin-top: 10px; }
.gvb-eq-hs__item p { line-height: 1.75; color: var(--text-b); margin: 14px 0 0; }
.gvb-eq-hs__nav { display: flex; gap: 8px; margin-top: 22px; }
.gvb-eq-hs__nav a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}
.gvb-eq-hs__nav a:hover { background: var(--teal-ul); border-color: var(--teal); }
@media (max-width: 900px) {
  .gvb-eq-hs { display: none; } /* interactive exploration is desktop-only */
}

/* ---- C6 strip: compact alternating banners (configuraciones / complementos)
   A bordered container of full-width rows; image side alternates L/R; one line
   of copy each. Visually distinct from the tall story bands AND the Equipos
   product cards. --------------------------------------------------------------- */
.gvb-eq-strip {
  max-width: 900px;
  margin: 30px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-xs);
}
.gvb-eq-strip__item {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 30px;
  padding: 16px 32px;
  transition: background .2s ease;
}
.gvb-eq-strip__item:hover { background: var(--mint-bg); }
.gvb-eq-strip__item + .gvb-eq-strip__item { border-top: 1px solid var(--border); }
.gvb-eq-strip__item:nth-child(even) { grid-template-columns: 1fr 190px; }
.gvb-eq-strip__item:nth-child(even) .gvb-eq-strip__media { order: 2; }
.gvb-eq-strip__item .gvb-eq-strip__text { text-align: right; }
.gvb-eq-strip__item:nth-child(even) .gvb-eq-strip__text { text-align: left; }
.gvb-eq-strip__media { height: 96px; display: flex; align-items: center; justify-content: center; }
.gvb-eq-strip__media img { max-height: 96px; max-width: 100%; width: auto; object-fit: contain; }
.gvb-eq-strip__media .gvb-ico { width: 46px; height: 46px; }
.gvb-eq-strip__text h3 { margin: 0 0 5px; font-family: var(--font-head); font-size: 1.06rem; color: var(--text); }
.gvb-eq-strip__text p { margin: 0; font-size: .92rem; line-height: 1.6; color: var(--text-m); }
.gvb-eq-strip + .gvb-eq-note { margin-top: 26px; }
@media (max-width: 720px) {
  .gvb-eq-strip__item,
  .gvb-eq-strip__item:nth-child(even) { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .gvb-eq-strip__item:nth-child(even) .gvb-eq-strip__media { order: 0; }
  .gvb-eq-strip__item:nth-child(even) .gvb-eq-strip__text { text-align: center; }
  .gvb-eq-strip__item .gvb-eq-strip__text { text-align: center; }
  .gvb-eq-strip__media { height: 84px; }
}

/* 2-per-row variant (EEG configuraciones): media always left, no alternation */
.gvb-eq-strip--2col { display: grid; grid-template-columns: 1fr 1fr; }
.gvb-eq-strip--2col .gvb-eq-strip__item,
.gvb-eq-strip--2col .gvb-eq-strip__item:nth-child(even) { grid-template-columns: 120px 1fr; }
.gvb-eq-strip--2col .gvb-eq-strip__item:nth-child(even) .gvb-eq-strip__media { order: 0; }
.gvb-eq-strip--2col .gvb-eq-strip__item:nth-child(even) .gvb-eq-strip__text { text-align: right; }
.gvb-eq-strip--2col .gvb-eq-strip__item + .gvb-eq-strip__item { border-top: none; }
.gvb-eq-strip--2col .gvb-eq-strip__item:nth-child(n+3) { border-top: 1px solid var(--border); }
.gvb-eq-strip--2col .gvb-eq-strip__item:nth-child(even) { border-left: 1px solid var(--border); }
@media (max-width: 720px) {
  .gvb-eq-strip--2col { grid-template-columns: 1fr; }
  .gvb-eq-strip--2col .gvb-eq-strip__item:nth-child(n+2) { border-top: 1px solid var(--border); border-left: none; }
}

/* Workstation icon (estación clínica) */
.gvb-ico--eq-station { --ico: url(../img/ico/eq-station.svg); }
.gvb-ico--eq-coilpulse { --ico: url(../img/ico/eq-coilpulse.svg); }
.gvb-ico--eq-coilholder { --ico: url(../img/ico/eq-coilholder.svg); }
.gvb-ico--eq-cooled { --ico: url(../img/ico/eq-cooled.svg); }
.gvb-ico--eq-puzzle { --ico: url(../img/ico/eq-puzzle.svg); }
.gvb-ico--eq-touch { --ico: url(../img/ico/eq-touch.svg); }
.gvb-ico--eq-protocol { --ico: url(../img/ico/eq-protocol.svg); }

/* TMS: dipole magnetic field centered on the equipment pillar, tilted,
   softly fogged, propagating outward */
.gvb-eq-hero--tms .gvb-eq-hero__traces {
  top: 0; height: 100%; transform: none;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.55) 45%, #000 72%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.55) 45%, #000 72%);
  opacity: .5;
  filter: blur(1px);
}
.gvb-eq-hero--tms .gvb-eq-hero__traces svg { width: 100%; height: 100%; }
@media (max-width: 960px) {
  .gvb-eq-hero--tms .gvb-eq-hero__traces {
    height: 100%;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.5) 38%, #000 60%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.5) 38%, #000 60%);
    opacity: .42;
  }
}
.gvb-eq-hero--tms .lobe ellipse {
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}
.gvb-eq-hero--tms .lobe {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: gvbTmsDipole 8s linear infinite;
}
.gvb-eq-hero--tms .l2 { animation-delay: 1.6s; }
.gvb-eq-hero--tms .l3 { animation-delay: 3.2s; }
.gvb-eq-hero--tms .l4 { animation-delay: 4.8s; }
.gvb-eq-hero--tms .l5 { animation-delay: 6.4s; }
@keyframes gvbTmsDipole {
  0% { transform: scale(.08); opacity: 0; }
  10% { opacity: .8; }
  60% { opacity: .35; }
  100% { transform: scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gvb-eq-hero--tms .lobe { animation: none; opacity: .3; transform: scale(.7); }
}

/* ==========================================================================
   FICHA DE EQUIPO v2 (single-gvb_equipo) — reduced hero with inherited
   category trace, lead intro, check features, captioned gallery, category
   context band. Approved mockup: device-template-example-v5.
   ========================================================================== */

/* ---- Hero reducido (inherits .gvb-eq-hero gradient/trace system) ---------- */
.gvb-eq-hero--device { padding: 48px 0 52px; }
.gvb-eq-hero--device .gvb-eq-hero__grid { grid-template-columns: 1.1fr .9fr; }
.gvb-eq-hero--device h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
.gvb-eqd-sub { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 46ch; margin: 0 0 24px; }
.gvb-eq-hero--device .gvb-eq-hero__img img {
  max-height: 440px;
  filter: drop-shadow(0 30px 55px rgba(0, 28, 25, .6)) drop-shadow(0 8px 18px rgba(0, 28, 25, .35));
}
/* entrada escalonada, una sola vez */
.gvb-eq-hero--device .gvb-rise { opacity: 0; transform: translateY(14px); animation: gvbEqdRise .6s ease forwards; }
.gvb-eq-hero--device .gvb-rise--2 { animation-delay: .12s; }
.gvb-eq-hero--device .gvb-rise--3 { animation-delay: .24s; }
.gvb-eq-hero--device .gvb-rise--4 { animation-delay: .36s; }
.gvb-eq-hero--device .gvb-eq-hero__img.gvb-rise { animation-delay: .3s; animation-duration: .8s; }
@keyframes gvbEqdRise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .gvb-eq-hero--device .gvb-rise { animation: none; opacity: 1; transform: none; }
}

/* ---- Secciones ------------------------------------------------------------- */
.gvb-eqd-sec { padding: 46px 0 36px; }
.gvb-eqd-sec h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--text);
  margin: 0 0 4px;
}
.gvb-eqd-sec h2::after {
  content: ""; display: block; width: 44px; height: 3px; border-radius: 2px;
  background: var(--teal); margin: 12px 0 22px;
}
.gvb-eqd-intro { padding: 52px 0 4px; }
.gvb-eqd-intro .gvb-eqd-lead { font-size: 1.16rem; line-height: 1.78; color: var(--text); max-width: 72ch; margin: 0 0 1em; }

/* características: checks a dos columnas */
.gvb-eqd-checks { columns: 2; column-gap: 48px; list-style: none; margin: 0; padding: 0; max-width: 980px; }
.gvb-eqd-checks li { break-inside: avoid; position: relative; padding-left: 26px; margin-bottom: 9px; font-size: .95rem; color: var(--text-b); }
.gvb-eqd-checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 700; }

/* galería con pies de foto */
.gvb-eqd-gal { display: flex; gap: 22px; flex-wrap: wrap; }
.gvb-eqd-gal figure { margin: 0; background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 26px 12px; text-align: center; cursor: zoom-in;
  transition: box-shadow .2s ease, transform .2s ease; }
.gvb-eqd-gal figure:hover { box-shadow: var(--sh-h); transform: translateY(-3px); }
.gvb-eqd-gal img { height: 215px; width: auto; }
.gvb-eqd-gal figcaption { font-size: .8rem; color: var(--text-m); margin-top: 6px; }

/* cuerpo restante de la descripción (si lo hay) */
.gvb-eqd-body { max-width: 820px; }
.gvb-eqd-body p { line-height: 1.75; color: var(--text-b); }

/* contexto de gama */
.gvb-eqd-ctx { background: var(--white); padding: 40px 0 44px; }
.gvb-eqd-ctx .gvb-eqd-ctx__grid { display: grid; grid-template-columns: 200px 1fr auto; gap: 34px; align-items: center; }
.gvb-eqd-ctx__logo img { width: 100%; height: auto; mix-blend-mode: multiply; }
.gvb-eqd-ctx h2 { font-family: var(--font-head); font-size: 1.25rem; color: var(--text); margin: 0 0 6px; }
.gvb-eqd-ctx p { margin: 0; color: var(--text-b); font-size: .96rem; max-width: 56ch; }
.gvb-eqd-ctx__more { font-family: var(--font-head); font-weight: 700; color: var(--teal);
  text-decoration: none; font-size: .85rem; letter-spacing: .04em; white-space: nowrap; }
.gvb-eqd-ctx__more:hover { color: var(--teal-d); }

/* lightbox mínimo */
.gvb-eqd-lb { position: fixed; inset: 0; z-index: 4000; background: rgba(10, 32, 29, .9);
  display: flex; align-items: center; justify-content: center; padding: 4vh 4vw; cursor: zoom-out; }
.gvb-eqd-lb img { max-width: 100%; max-height: 100%; }

@media (max-width: 820px) {
  .gvb-eq-hero--device .gvb-eq-hero__img img { max-height: 300px; }
  .gvb-eqd-checks { columns: 1; }
  .gvb-eqd-ctx .gvb-eqd-ctx__grid { grid-template-columns: 1fr; text-align: center; }
  .gvb-eqd-ctx__logo { max-width: 200px; margin: 0 auto; }
}
