/* INFINYCORE — presentación alineada al contenido real (banners, mercados, marcas) */

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

:root {
  --ic-ink: #1c1d20;
  --ic-muted: #5c5e64;
  --ic-subtle: #8b8d93;
  --ic-paper: #ffffff;
  --ic-surface: #f4f4f5;
  --ic-surface-2: #ececee;
  --ic-navy: var(--cms-primario, var(--primario, #55565a));
  --ic-blue: var(--cms-secundario, var(--secundario, #e4132e));
  --ic-teal: var(--cms-acento, var(--acento, #bf0820));
  --ic-teal-hover: var(--cms-acento-hover, color-mix(in srgb, var(--ic-teal) 82%, #000));
  --ic-teal-soft: color-mix(in srgb, var(--ic-teal) 12%, transparent);
  --ic-line: var(--cms-line, rgba(85, 86, 90, 0.12));
  --ic-line-strong: rgba(85, 86, 90, 0.22);
  --ic-red: var(--ic-blue);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.75rem;
  --space-section: clamp(3.5rem, 6.5vw, 6rem);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --font-display: var(--cms-font-titulos, "Outfit", system-ui, -apple-system, sans-serif);
  --font-body: var(--cms-font-cuerpo, "Inter", system-ui, -apple-system, sans-serif);

  --header-h: 72px;
  --container: min(1200px, calc(100% - 3rem));

  --shadow-xs: 0 1px 2px rgba(28, 29, 32, 0.05);
  --shadow-sm: 0 8px 24px rgba(28, 29, 32, 0.06);
  --shadow-md: var(--cms-shadow, 0 16px 40px rgba(28, 29, 32, 0.1));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --font: var(--font-body);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ic-ink);
  background: var(--ic-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ic-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

body.ic-site > main {
  flex: 1;
  background: var(--ic-paper);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: var(--container);
  margin-inline: auto;
}

/* —— Boot —— */

html.site-booting {
  overflow: hidden;
}

.site-boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ic-paper);
  transition: opacity 0.45s var(--ease-out), visibility 0.45s var(--ease-out);
}

.site-boot.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-boot-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 420px;
  height: 80px;
  max-width: min(420px, 86vw);
  --boot-fill: 0%;
  opacity: 0;
}

.site-boot-mark.is-ready {
  opacity: 1;
}

.site-boot-img {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.site-boot-img.is-gray {
  filter: grayscale(1);
  opacity: 0.72;
}

.site-boot-img.is-color {
  clip-path: inset(calc(100% - var(--boot-fill)) 0 0 0);
}

.site-boot-name {
  grid-area: 1 / 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: var(--ic-navy);
  line-height: 1.2;
}

.site-boot-name.is-gray {
  filter: grayscale(1);
  opacity: 0.35;
}

.site-boot-name.is-color {
  clip-path: inset(calc(100% - var(--boot-fill)) 0 0 0);
}

.site-boot-mark.has-logo .site-boot-name {
  display: none;
}

.site-boot-mark.has-name .site-boot-img {
  display: none;
}

.site-boot-mark.is-isologo {
  width: 80px;
  height: 80px;
}

html[data-cms-embedded="1"] .site-boot {
  display: none !important;
}

html[data-cms-embedded="1"].site-booting {
  overflow: auto !important;
}

/* —— Header —— */

.ic-topbar {
  --ic-topbar-h: 40px;
  background: var(--ic-navy);
  color: #fff;
  z-index: 110;
}

.ic-topbar[hidden] {
  display: none !important;
}

.ic-topbar-inner {
  width: var(--container);
  margin-inline: auto;
  min-height: var(--ic-topbar-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding-block: 0.35rem;
}

.ic-topbar .site-locale {
  margin-left: 0;
  order: 0;
}

.ic-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.ic-topbar-badge[hidden],
.ic-topbar-badge.is-cms-hidden {
  display: none !important;
}

.ic-topbar-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(42vw, 28rem);
}

.ic-topbar-badge-img {
  height: 21px;
  width: auto;
  display: block;
}

.ic-topbar .site-locale-option {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.ic-topbar .site-locale-option[aria-pressed="true"] {
  background: #fff;
  color: var(--ic-navy);
  border-color: #fff;
}

.ic-topbar .site-locale.is-debt-preview {
  outline-color: color-mix(in srgb, var(--ic-teal) 70%, #fff);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ic-line);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-xs);
}

.ic-header-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: var(--header-h);
}

.ic-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ic-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ic-brand img {
  height: 34px;
  width: auto;
  display: block;
}

.ic-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.ic-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

#inns-pais-switcher-host {
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.ic-nav a {
  color: #55565a;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ic-nav a:hover {
  color: var(--ic-red);
  background: transparent;
  border-bottom-color: var(--ic-red);
}

.ic-nav a.is-active {
  color: var(--ic-red);
  background: transparent;
  border-bottom-color: var(--ic-red);
  font-weight: 800;
}

.ic-nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ic-line);
  background: var(--ic-paper);
  color: var(--ic-ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ic-nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.ic-nav-toggle-icon::before,
.ic-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out);
}

.ic-nav-toggle-icon::before {
  top: -6px;
}

.ic-nav-toggle-icon::after {
  top: 6px;
}

.ic-nav-toggle[aria-expanded="true"] .ic-nav-toggle-icon {
  background: transparent;
}

.ic-nav-toggle[aria-expanded="true"] .ic-nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.ic-nav-toggle[aria-expanded="true"] .ic-nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

#inns-pais-switcher-host .inns-pais-switch--header {
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ic-muted);
  align-items: center;
}

#inns-pais-switcher-host .inns-pais-switch--header label {
  display: none;
}

#inns-pais-switcher-host .inns-pais-switch--header select,
#inns-pais-switcher-host select {
  background: var(--ic-surface);
  color: var(--ic-ink);
  border: 1px solid var(--ic-line);
  border-radius: var(--radius-pill);
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

#inns-pais-switcher-host select:hover,
#inns-pais-switcher-host select:focus {
  border-color: var(--ic-red);
  outline: none;
}

#inns-pais-switcher-host select.ic-pais-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ic-pais-flags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.ic-pais-flag {
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  padding: 0;
  margin: 0;
  border: 1.5px solid rgba(22, 23, 25, 0.12);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ic-pais-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.ic-pais-flag:hover {
  border-color: var(--ic-red);
  transform: translateY(-1px);
}

.ic-pais-flag.is-active {
  border-color: var(--ic-red);
  box-shadow: 0 0 0 2px rgba(228, 19, 46, 0.18);
}

.ic-pais-flag.ic-pais-global.is-active {
  color: var(--ic-red);
}

.ic-pais-flag:focus-visible {
  outline: 2px solid var(--ic-red);
  outline-offset: 2px;
}

.ic-pais-flag.ic-pais-global {
  width: 26px;
  min-width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 50%;
  color: var(--ic-muted);
}

.ic-pais-global-icon {
  width: 15px;
  height: 15px;
  display: block;
}

/* —— Hero: el banner ES el mensaje —— */

.ic-hero {
  position: relative;
  background: #161719;
  overflow: hidden;
}

.ic-hero[hidden] {
  display: none !important;
  min-height: 0 !important;
}

/* Hero: ancho full, alto fijo 694px, imagen cover */
.ic-hero [data-banner-slides] {
  position: relative;
  width: 100%;
  height: 694px;
  min-height: 694px;
  max-height: none;
  aspect-ratio: auto;
}

.ic-hero-slide {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ic-hero-slide.is-active {
  display: block;
}

.ic-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: #161719;
}

.ic-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ic-hero-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 12%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: min(640px, calc(100% - 3rem));
  margin-inline: auto;
  padding: 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.ic-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.ic-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ic-hero-body {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 48ch;
  opacity: 0.92;
}

.ic-hero-body p {
  margin: 0;
}

.ic-hero-chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  width: auto;
  max-width: none;
  margin: 0;
}

.ic-hero-chrome[hidden] {
  display: none !important;
}

.ic-hero-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(17, 18, 20, 0.42);
  backdrop-filter: blur(8px);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.ic-hero-btn:hover {
  background: rgba(228, 19, 46, 0.92);
}

.ic-hero-chrome [data-hero-prev] {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.ic-hero-chrome [data-hero-next] {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.ic-hero-dots {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  bottom: clamp(0.85rem, 2vw, 1.4rem);
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.ic-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s var(--ease-out), background 0.25s;
}

.ic-hero-dot.is-active {
  background: #fff;
  width: 26px;
}

/* —— Sections —— */

.ic-section-block {
  padding: var(--space-section) 0;
  background: var(--ic-paper);
}

.ic-section-block.is-soft {
  background: var(--ic-paper);
}

/* Solo la franja de portfolio / marcas */
.ic-section-block:has([data-portfolio-src]),
.ic-section-block:has(.ic-portfolio-grid) {
  background: #f7f7f7;
  border-block: 1px solid rgb(213 213 213 / 8%);
}

.ic-section-head {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: clamp(2.25rem, 4.5vw, 5.25rem);
  text-align: left;
}

section[data-cms-slot="titulos"] .ic-section-head[data-titulos-head],
section[data-cms-slot="titulos"] .ic-section-head,
section[data-cms-slot="titulos"] .section-head[data-titulos-head],
section[data-cms-slot="titulos"] .section-head {
  width: var(--container) !important;
  max-width: none;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: clamp(2.25rem, 4.5vw, 5.25rem);
  text-align: left !important;
}

section[data-cms-slot="titulos"].is-section-no-padding {
  padding: 0;
  margin: 0;
}

/* Sin subtítulo bajo el título de sección (solo kicker + título) */
section[data-cms-slot="titulos"] [data-cms-field="Titulos.intro"] {
  display: none !important;
}

section[data-cms-slot="titulos"].is-titulo-tema-claro .section-head h2,
section[data-cms-slot="titulos"].is-titulo-tema-claro .section-head h3,
section[data-cms-slot="titulos"].is-titulo-tema-claro .section-head h4,
section[data-cms-slot="titulos"].is-titulo-tema-claro .ic-section-head h2,
section[data-cms-slot="titulos"].is-titulo-tema-claro .ic-section-head h3,
section[data-cms-slot="titulos"].is-titulo-tema-claro .ic-section-head h4,
[data-titulos-head].is-titulo-tema-claro h2,
[data-titulos-head].is-titulo-tema-claro h3,
[data-titulos-head].is-titulo-tema-claro h4 {
  color: #000000 !important;
  text-transform: uppercase;
}

.ic-section-eyebrow,
.ic-section-head [data-cms-field="Titulos.kicker"],
.ic-section-head h2,
.ic-section-head h3,
.ic-section-head h4,
.ic-section-head p,
.ic-section-head [data-cms-field="Titulos.intro"] {
  text-align: left;
}

.ic-section-head .is-titulo-line-sides:not([hidden]) {
  justify-content: flex-start;
}

.ic-section-head.left .is-titulo-line-bottom:not([hidden]),
.ic-section-head[data-titulos-head].left .is-titulo-line-bottom:not([hidden]) {
  align-items: flex-start;
}

.ic-section-eyebrow {
  display: block;
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ic-red);
  line-height: 1.3;
}

.ic-section-head [data-cms-field="Titulos.kicker"] {
  display: block;
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ic-red);
  line-height: 1.3;
}

.ic-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #000000;
  text-transform: uppercase;
}

.ic-section-head h3,
.ic-section-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #000000;
  text-transform: uppercase;
}

.ic-section-head p,
.ic-section-head [data-cms-field="Titulos.intro"] {
  margin: 0.35rem 0 0;
  color: var(--ic-muted);
  font-size: 1.02rem;
  line-height: 1.45;
  max-width: 54ch;
  margin-inline: 0;
}

.ic-section-head .is-titulo-line-bottom:not([hidden]) {
  gap: 0 !important;
}

.ic-section-head .is-titulo-line-bottom:not([hidden])::after {
  margin-top: 0.45rem;
  margin-bottom: 0;
}

.ic-section-head .is-titulo-line-bottom:not([hidden]) + p:not([hidden]) {
  margin-top: 0.35rem !important;
}

/* —— Grids —— */

.ic-card-grid,
.ic-marcas-grid,
.ic-portfolio-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
}

.ic-card-grid,
.ic-marcas-grid {
  gap: var(--space-3);
}

.ic-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* —— Por qué INFINYCORE (maqueta .reason) —— */

.ic-reasons-grid {
  gap: 1rem;
}

.ic-card.ic-reason {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 1.3rem;
  min-height: 178px;
  padding: 1.55rem 1.55rem 1.55rem 1.35rem;
  background: #ffffff;
  border: 1px solid var(--ic-line);
  border-top: 3px solid var(--ic-red);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a.ic-card.ic-reason:hover,
.ic-card.ic-reason:hover {
  transform: none;
  background: var(--ic-paper);
  border-color: var(--ic-red);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.ic-reason-media {
  width: 85px;
  height: 85px;
  object-fit: contain;
  border-radius: 0%;
  display: block;
}

.ic-card.ic-reason .ic-card-body {
  padding: 0;
  min-width: 0;
}

.ic-card.ic-reason .ic-card-body h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-align: center;
}

.ic-reason-arrow {
  flex: 0 0 auto;
  color: var(--ic-red);
  font-size: 1.35rem;
  line-height: 1;
}

.ic-card.ic-reason .ic-card-body p {
  margin-top: 0.35rem;
}

/* —— Nuestra presencia (banderas circulares) —— */

.ic-presence-grid {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.ic-presence-flag {
  flex: 0 0 auto;
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ic-line);
  border-radius: 50%;
  background: var(--ic-paper);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.ic-presence-flag:hover {
  border-color: var(--ic-red);
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.06);
}

.ic-presence-flag img {
  width: 74px;
  height: 74px;
  max-width: 74px;
  max-height: 74px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.ic-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ic-card-grid.is-markets {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-2);
}

.ic-marcas-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.ic-portfolio-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 0;
  background: transparent;
}

/* Cada marca con borde completo; márgenes negativos colapsan dobles a 1px */
.ic-portfolio-logo {
  box-sizing: border-box;
  margin: 0 -1px -1px 0;
  height: 146px;
  min-height: 146px;
  background: #fff;
  border: 1px solid #e7e7e8;
  border-radius: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.ic-card,
.ic-marca {
  background: var(--ic-paper);
  border: 1px solid var(--ic-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

a.ic-card:hover,
a.ic-marca:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ic-card-media,
.ic-marca-logo {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: var(--ic-surface);
  display: grid;
  place-items: center;
  padding: var(--space-3);
  overflow: hidden;
}

.ic-card-media img,
.ic-marca-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ic-card-body,
.ic-marca-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.ic-card-body h3,
.ic-marca-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ic-ink);
}

.ic-card-body p,
.ic-marca-body p {
  margin: 0.4rem 0 0;
  color: var(--ic-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ic-card.is-photo .ic-card-media {
  padding: 0;
  aspect-ratio: 4 / 3;
}

.ic-card.is-photo .ic-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.ic-card.is-market {
  position: relative;
  border: 0;
  border-radius: var(--radius-md);
  min-height: 180px;
}

.ic-card.is-market .ic-card-media {
  position: absolute;
  inset: 0;
  padding: 0;
  aspect-ratio: auto;
}

.ic-card.is-market .ic-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.ic-card.is-market .ic-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(17, 18, 20, 0.78));
  color: #fff;
}

.ic-card.is-market .ic-card-body h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ic-card.is-market .ic-card-body p {
  display: none;
}

.ic-marca-logo {
  aspect-ratio: 5 / 3;
  background: var(--ic-paper);
}

.ic-marca-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* —— Marcas página (maqueta 2.0: grupos + cards) —— */

.ic-marcas-page {
  width: var(--container);
  margin-inline: auto;
  padding-block: 0 clamp(2.5rem, 5vw, 4rem);
}

.ic-marca-group {
  margin-top: 3.4rem;
}

.ic-marca-group:first-child {
  margin-top: 0;
}

.ic-marca-group-title {
  margin: 0 0 0;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid #E4132E;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ic-ink);
}

.ic-marca-group-title b {
  color: var(--ic-red);
  margin-right: 0.95rem;
  font-weight: 800;
}

.ic-marca-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid #e5e5e5;
  margin-top: 0;
}

.ic-marca-card {
  min-height: 285px;
  padding: 1.7rem;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  background: #fff;
  color: var(--ic-ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

a.ic-marca-card:hover,
.ic-marca-card:hover {
  background: #161719;
  color: #fff;
  transform: none;
  box-shadow: none;
}

.ic-marca-card img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.ic-marca-card img[data-src-hover] {
  mix-blend-mode: multiply;
}

a.ic-marca-card:hover img:not([data-src-hover]),
.ic-marca-card:hover img:not([data-src-hover]) {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

a.ic-marca-card:hover img[data-src-hover],
.ic-marca-card:hover img[data-src-hover] {
  filter: none;
  mix-blend-mode: normal;
}

.ic-marca-card-copy {
  flex: 1;
}

.ic-marca-card-copy p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ic-marca-card-copy p:last-child {
  margin-bottom: 0;
}

.ic-marca-card-cta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ic-red);
  text-transform: uppercase;
}

a.ic-marca-card:hover .ic-marca-card-cta,
.ic-marca-card:hover .ic-marca-card-cta {
  color: #ff5a6d;
}

/* —— Cards —— */

.ic-portfolio-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ic-portfolio-logo span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ic-muted);
  text-align: center;
}

/* —— Page content (empresa / marca) —— */

.ic-page-content {
  width: var(--container);
  margin-inline: auto;
  padding: var(--space-section) 0;
  background: var(--ic-paper);
}

/* —— Marca detalle (maqueta Detalle Producto) —— */

.ic-marca-detail {
  padding: clamp(2.75rem, 5vw, 4.4rem) 0 clamp(3.5rem, 6vw, 6rem);
}

.ic-marca-detail-crumb {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ic-red);
}

.ic-marca-detail-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: 0;
  border: 1px solid #e5e5e7;
  margin-bottom: clamp(2.75rem, 5vw, 4.4rem);
}

.ic-marca-detail-logo {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 3.1rem 3rem;
  border-right: 1px solid #e5e5e7;
  background: #fff;
}

.ic-marca-detail-logo img {
  width: 100%;
  max-width: 310px;
  height: auto;
  max-height: 115px;
  object-fit: contain;
  object-position: left center;
}

.ic-marca-detail-intro {
  padding: clamp(1.75rem, 3vw, 2.4rem) clamp(1.5rem, 3vw, 2.85rem);
}

.ic-marca-detail-intro h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ic-red);
  line-height: 1.2;
}

.ic-marca-detail-lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.18;
  color: var(--ic-ink);
}

.ic-marca-detail-note {
  margin-top: 1.65rem;
  padding-top: 1.1rem;
  border-top: 1px solid #e5e5e7;
  color: #55565a;
  font-size: 0.88rem;
  line-height: 1.5;
}

.ic-marca-detail-note p {
  margin: 0 0 0.65rem;
}

.ic-marca-detail-note p:last-child,
.ic-marca-detail-note ul:last-child {
  margin-bottom: 0;
}

.ic-marca-detail-note ul {
  margin: 0;
  padding-left: 1rem;
}

.ic-marca-detail-solutions-title {
  margin: 0 0 1.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--ic-ink);
}

.ic-marca-detail-solutions {
  margin: 0;
}

.ic-marca-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ic-ink);
  border-left: 1px solid #e5e5e7;
}

.ic-marca-solution {
  padding: 1.75rem 1.75rem 1.95rem;
  border-right: 1px solid #e5e5e7;
  border-bottom: 1px solid #e5e5e7;
  min-height: 210px;
}

.ic-marca-solution h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ic-ink);
  border: 0;
  padding: 0;
  display: block;
}

.ic-marca-solution h2::after {
  content: "";
  display: block;
  width: 31px;
  height: 3px;
  background: var(--ic-red);
  margin-top: 0.8rem;
}

.ic-marca-solution ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: #55565a;
  font-size: 0.88rem;
  line-height: 1.35;
  columns: unset;
}

.ic-marca-solution li {
  position: relative;
  padding-left: 1rem;
  margin: 0;
}

.ic-marca-solution li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ic-red);
}

.ic-page-content h1 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  color: var(--ic-ink);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ic-page-content [data-entrada-body] {
  line-height: 1.7;
  color: var(--ic-ink);
  font-size: 1.02rem;
}

.ic-page-content [data-entrada-body] > *:first-child {
  margin-top: 0;
}

.ic-page-content [data-entrada-body] img[src*="localhost"],
.ic-page-content [data-entrada-body] img[src*="wp-content"] {
  display: none;
}

.ic-page-content [data-entrada-body] h2,
.ic-page-content [data-entrada-body] h3 {
  font-family: var(--font-display);
  color: var(--ic-ink);
  margin-top: 2.1rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.ic-page-content [data-entrada-body] h2 {
  font-size: 1.2rem;
  font-weight: 650;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--ic-red);
  display: inline-block;
}

.ic-page-content [data-entrada-body] .ic-marca-solution h2 {
  margin: 0 0 1.25rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  padding: 0;
  border: 0;
  border-bottom: 0;
  display: block;
}

.ic-page-content [data-entrada-body] hr {
  display: none;
}

.ic-page-content [data-entrada-body] p {
  margin: 0 0 1.05rem;
}

.ic-page-content [data-entrada-body] ul,
.ic-page-content [data-entrada-body] ol {
  padding-left: 1.15rem;
  margin: 0 0 1.25rem;
  columns: 2;
  column-gap: 2rem;
}

.ic-page-content [data-entrada-body] li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

.ic-page-content [data-entrada-body] svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--ic-red);
  margin: 1.5rem 0 0.4rem;
}

.ic-page-content [data-entrada-body] h3 {
  font-size: 1.02rem;
  margin-top: 0.35rem;
}

/* —— Empresa editorial (misión / visión / valores / políticas) —— */

.ic-empresa-intro {
  max-width: none;
  width: 100%;
  margin: 0 0 clamp(2.5rem, 5vw, 4.25rem);
}

.ic-empresa-intro p {
  margin: 0 0 1.15rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--ic-ink);
  text-align: justify;
  text-justify: inter-word;
}

.ic-empresa-intro p:last-child {
  margin-bottom: 0;
}

.ic-empresa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ic-line);
  border: 1px solid var(--ic-line);
}

.ic-empresa-split > article {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--ic-paper);
}

.ic-page-content [data-entrada-body] .ic-empresa-split > article > h2,
.ic-page-content [data-entrada-body] .ic-empresa-policy > h2 {
  display: block;
  margin: 0 0 1.15rem;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ic-red);
  line-height: 1.3;
}

.ic-page-content [data-entrada-body] .ic-empresa-values-head h2 {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ic-ink);
}

.ic-empresa-split > article > p,
.ic-empresa-policy > p {
  margin: 0;
  line-height: 1.75;
  color: var(--ic-ink);
  text-align: justify;
  text-justify: inter-word;
}

.ic-empresa-icon {
  width: 2rem !important;
  height: 2rem !important;
  margin: 0 0 0.85rem !important;
  color: var(--ic-red);
  fill: none !important;
  display: block;
}

.ic-empresa-value svg {
  width: 1.55rem !important;
  height: 1.55rem !important;
  margin: 0 0 0.85rem !important;
  fill: var(--ic-red) !important;
  color: var(--ic-red);
  display: block;
}

.ic-empresa-values-head {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin: clamp(2.75rem, 5vw, 4.35rem) 0 1.55rem;
}

.ic-empresa-values-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ic-line);
  margin-bottom: 0.45rem;
}

.ic-empresa-values {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.ic-empresa-value {
  padding: 1.35rem 1.1rem 1.45rem;
  background: var(--ic-surface);
  border-top: 2px solid var(--ic-navy);
}

.ic-page-content [data-entrada-body] .ic-empresa-value h3 {
  margin: 0;
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ic-ink);
  line-height: 1.25;
}

.ic-page-content [data-entrada-body] .ic-empresa-value p {
  margin: 0.7rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ic-ink);
}

.ic-page-content [data-entrada-body] .ic-empresa-split > article > p,
.ic-page-content [data-entrada-body] .ic-empresa-policy > p {
  margin-bottom: 0;
}

.ic-empresa-policy {
  margin-top: 1.55rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--ic-line);
  background: var(--ic-paper);
}

/* —— Contact —— */

.ic-contacto-oficina {
  width: var(--container);
  margin-inline: auto;
  padding: 0;
}

.ic-contacto-layout {
  display: grid;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--ic-line-strong);
  background: var(--ic-paper);
  overflow: hidden;
}

@media (min-width: 900px) {
  .ic-contacto-layout {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  }
}

.ic-contacto-datos {
  background: var(--ic-paper);
  border: 0;
  border-radius: 0;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 3vw, 2.5rem);
}

.ic-contacto-accent {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  background: #e4132e;
}

.ic-contacto-fields {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

.ic-contacto-field {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
}

.ic-contacto-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.05rem;
  color: #e4132e;
}

.ic-contacto-icon-svg {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
}

.ic-contacto-field-body {
  flex: 1 1 auto;
  min-width: 0;
}

.ic-contacto-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e4132e;
}

.ic-contacto-value {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ic-ink);
  font-weight: 400;
}

.ic-contacto-value a {
  color: inherit;
  text-decoration: none;
}

.ic-contacto-value a:hover {
  color: #e4132e;
}

.ic-contacto-mapa {
  min-height: 280px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--ic-surface-2);
}

.ic-contacto-mapa iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  height: 100%;
  border: 0;
}

@media (min-width: 900px) {
  .ic-contacto-mapa iframe {
    min-height: 320px;
  }
}

.contact-captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  background: var(--ic-surface);
  border: 1px solid var(--ic-line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ic-muted);
}

.contact-captcha-label {
  color: var(--ic-subtle);
}

.contact-captcha-sum {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ic-ink);
}

.contact-captcha-eq {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-captcha-sum input {
  width: 2.5rem;
  padding: 0.15rem 0;
  border: 0;
  border-bottom: 1px solid var(--ic-line-strong);
  border-radius: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  color: var(--ic-ink);
}

.contact-captcha-sum input:focus {
  outline: none;
  border-bottom-color: #e4132e;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-feedback {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.contact-form-feedback.is-pending {
  color: var(--ic-muted);
}

.contact-form-feedback.is-ok {
  color: #15803d;
}

.contact-form-feedback.is-error {
  color: var(--ic-red);
}

.ic-contacto-form-section {
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.ic-contacto-form-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .ic-contacto-form-layout {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.ic-contacto-form-intro .ic-contacto-form-head,
section.ic-contacto-form-intro .ic-section-head {
  width: 100% !important;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}

.ic-contacto-form-intro [data-cms-field="Titulos.kicker"],
.ic-contacto-form-intro .ic-section-eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #e4132e;
}

.ic-contacto-form-intro h2 {
  text-transform: none;
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.ic-contacto-form-panel,
[data-contact-form] {
  width: 100%;
  margin-inline: 0;
}

.ic-contacto-form,
[data-contact-form] .ic-contacto-form,
[data-contact-form] .contact-form {
  display: block;
  max-width: none;
  margin: 0;
}

.ic-contacto-form-grid {
  display: grid;
  gap: clamp(1.35rem, 2.5vw, 1.85rem);
}

@media (min-width: 700px) {
  .ic-contacto-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.ic-contacto-form-field {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.ic-contacto-form-field.is-full {
  grid-column: 1 / -1;
}

.ic-contacto-form-field > span,
[data-contact-form] .ic-contacto-form-field > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ic-ink);
}

.ic-contacto-form-field input,
.ic-contacto-form-field textarea,
[data-contact-form] .ic-contacto-form input,
[data-contact-form] .ic-contacto-form textarea {
  width: 100%;
  padding: 0.35rem 0 0.55rem;
  border: 0;
  border-bottom: 1px solid var(--ic-line-strong);
  border-radius: 0;
  background: transparent;
  font: inherit;
  color: var(--ic-ink);
  box-shadow: none;
}

.ic-contacto-form-field textarea,
[data-contact-form] .ic-contacto-form textarea {
  min-height: 120px;
  resize: vertical;
}

.ic-contacto-form-field input:focus,
.ic-contacto-form-field textarea:focus,
[data-contact-form] .ic-contacto-form input:focus,
[data-contact-form] .ic-contacto-form textarea:focus {
  outline: none;
  border-bottom-color: #e4132e;
  box-shadow: none;
}

.ic-contacto-form-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
}

.ic-contacto-form-submit,
[data-contact-form] .ic-contacto-form-submit {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.15rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 0;
  background: #e4132e;
  color: #fff;
  font: 700 0.72rem/1 var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ic-contacto-form-submit:hover,
[data-contact-form] .ic-contacto-form-submit:hover {
  background: var(--ic-teal-hover);
}

.ic-contacto-form-submit-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

section[data-cms-slot="contacto"].ic-page-content {
  width: var(--container);
  padding-top: 0;
}

/* —— Redes —— */

.ic-redes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.ic-redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-pill);
  color: var(--ic-muted);
  background: var(--ic-surface);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.ic-redes a:hover {
  transform: translateY(-1px);
  background: var(--ic-red);
  color: #fff;
}

.ic-redes a.is-brand {
  background: #fff;
  border: 1px solid var(--ic-line);
  padding: 0.35rem;
}

.ic-redes svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.ic-redes img {
  display: block;
  width: auto;
  max-width: 1.4rem;
  height: 1.1rem;
  object-fit: contain;
}

.ic-redes-header {
  margin-left: auto;
}

@media (max-width: 899px) {
  .ic-redes-header {
    display: none;
  }
}

.ic-redes-footer {
  margin-top: 0;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ic-redes-footer a {
  width: 2rem;
  height: 2rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ic-redes-footer a:hover {
  background: var(--ic-red);
  border-color: var(--ic-red);
  color: #fff;
  transform: none;
}

.ic-redes-footer a.is-brand {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.35rem;
}

.ic-social-float {
  position: fixed;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  padding: 0;
  border: 0;
  background: transparent;
}

.ic-social-float[hidden] {
  display: none !important;
}

.ic-social-float-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.ic-social-float-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: var(--radius-pill);
  background: var(--ic-navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, background 0.2s;
}

.ic-social-float-list a:hover {
  background: var(--ic-red);
  transform: translateY(-1px);
}

.ic-social-float-list svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

/* —— Footer —— */

.site-footer {
  background: #161719;
  color: rgba(255, 255, 255, 0.67);
  padding: 3.6rem 0 1.25rem;
  margin-top: auto;
  border-top: 4px solid var(--ic-red);
}

.ic-footer-inner {
  width: var(--container);
  margin-inline: auto;
}

.ic-footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem 1.5rem;
  text-align: left;
}

.ic-footer-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.ic-footer-logo-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.ic-footer-logo-link img {
  display: block;
  width: min(180px, 100%);
  height: auto;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
}

.ic-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  gap: 0.35rem 1.75rem;
}

.ic-footer-top > .ic-redes-footer {
  justify-self: end;
}

.ic-footer-nav a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ic-footer-nav a:hover,
.ic-footer-signature a:hover {
  color: #fff;
}

.ic-footer-signature {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
}

.ic-footer-signature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.ic-footer-signature a {
  color: rgba(255, 255, 255, 0.67);
  font-weight: 500;
  text-decoration: none;
}

/* —— CMS utilities —— */

.is-cms-hidden,
[hidden].is-cms-hidden {
  display: none !important;
}

.ic-animate-in {
  animation: ic-fade-up 0.55s var(--ease-out) both;
}

@keyframes ic-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ic-animate-in {
    animation: none;
  }

  .ic-card,
  .ic-marca,
  .ic-portfolio-logo,
  .ic-hero-btn {
    transition: none;
  }
}

/* —— Responsive —— */

@media (max-width: 1100px) {
  .ic-card-grid.is-markets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ic-portfolio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ic-empresa-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ic-footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .ic-footer-brand,
  .ic-footer-nav,
  .ic-footer-top > .ic-redes-footer {
    justify-self: center;
  }

  .ic-footer-brand {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .ic-footer-logo-link {
    margin-inline: auto;
  }

  .ic-redes-footer {
    justify-content: center;
  }

  :root {
    --container: min(1200px, calc(100% - 1.5rem));
  }

  .ic-hero [data-banner-slides] {
    height: min(56vw, 420px);
    min-height: 260px;
  }

  .ic-nav-toggle {
    display: inline-flex;
  }

  .ic-header-inner > #inns-pais-switcher-host {
    display: none;
  }

  .ic-header-inner {
    position: static;
    flex-wrap: nowrap;
    row-gap: var(--space-2);
    padding-block: 0.65rem;
    min-height: auto;
  }

  .ic-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.85rem 1.25rem 1.15rem;
    border-top: 0;
    border-bottom: 1px solid var(--ic-line);
    box-shadow: var(--shadow-sm);
    gap: 0;
  }

  .ic-nav.is-open {
    display: flex;
  }

  .ic-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    width: 100%;
  }

  .ic-nav a {
    padding: 0.85rem 0.35rem;
    border-radius: 0;
    width: auto;
    text-align: center;
  }

  .ic-nav > #inns-pais-switcher-host {
    order: 0;
    width: 100%;
    margin: 0.75rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid var(--ic-line);
    display: flex;
    justify-content: center;
  }

  #inns-pais-switcher-host .inns-pais-switch--header {
    width: auto;
    justify-content: center;
  }

  .ic-pais-flags {
    justify-content: center;
  }

  #inns-pais-switcher-host select:not(.ic-pais-select-hidden) {
    flex: 1;
    max-width: 220px;
  }

  .ic-card-grid,
  .ic-card-grid.is-markets,
  .ic-marcas-grid,
  .ic-marca-card-grid {
    grid-template-columns: 1fr;
  }

  .ic-marca-card-grid {
    border-left: 0;
  }

  .ic-marca-card {
    border-left: 1px solid #e5e5e5;
  }

  .ic-card.ic-reason {
    min-height: 135px;
    grid-template-columns: 74px minmax(0, 1fr);
    padding: 1.1rem;
    gap: 0.95rem;
  }

  .ic-reason-media {
    width: 74px;
    height: 74px;
  }

  .ic-portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ic-portfolio-logo {
    height: 105px;
    min-height: 105px;
    padding: 18px;
  }

  .ic-presence-grid {
    gap: 12px;
  }

  .ic-presence-flag {
    width: 65px;
    height: 65px;
  }

  .ic-presence-flag img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
  }

  .ic-empresa-split {
    grid-template-columns: 1fr;
  }

  .ic-empresa-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ic-marca-detail-head,
  .ic-marca-solutions-grid {
    grid-template-columns: 1fr;
  }

  .ic-marca-detail-logo {
    border-right: 0;
    border-bottom: 1px solid #e5e5e7;
    padding: 2rem 1.5rem;
  }

  .ic-marca-detail-intro {
    padding: 1.85rem 1.5rem;
  }

  .ic-marca-solution {
    min-height: 0;
  }

  .ic-page-content [data-entrada-body] ul,
  .ic-page-content [data-entrada-body] ol {
    columns: 1;
  }

  .ic-hero-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .ic-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ic-empresa-values {
    grid-template-columns: 1fr;
  }
}


/* —— INNSITE Audit (?cms-audit=1) —— */
.cms-audit-launcher-glyph{font-size:1.15rem;line-height:1;font-weight:600}
/* INNSITE Audit (?cms-audit=1) */
.cms-audit-form-marker {
  display: none;
}

/* Anclas invisibles: no ocupan espacio ni bloquean clicks del form */
body.cms-audit .cms-audit-form-marker {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
  pointer-events: none;
  outline: none !important;
}

body.cms-audit .fq-form-card:hover > .cms-audit-form-marker > .cms-audit-cartel,
body.cms-audit .contact-form:hover > .cms-audit-form-marker > .cms-audit-cartel,
body.cms-audit .fq-form-card:focus-within > .cms-audit-form-marker > .cms-audit-cartel,
body.cms-audit .contact-form:focus-within > .cms-audit-form-marker > .cms-audit-cartel {
  opacity: 1;
  visibility: visible;
}

body.cms-audit .fq-form-card,
body.cms-audit .contact-form {
  position: relative;
}

body.cms-audit
  .cms-audit-form-marker[data-cms-field="Contacto.formulario"]
  > .cms-audit-cartel {
  top: 6px;
  left: 6px;
}

body.cms-audit
  .cms-audit-form-marker[data-cms-field="Contacto.smtp"]
  > .cms-audit-cartel {
  top: 32px;
  left: 6px;
}

body.cms-audit
  .cms-audit-form-marker[data-cms-field="Contacto.envio"]
  > .cms-audit-cartel {
  top: 58px;
  left: 6px;
}

body.cms-audit .fq-form-card[data-cms-form-status="ok"],
body.cms-audit .contact-form[data-cms-form-status="ok"] {
  outline: 1px solid #2f9e6a;
  outline-offset: 2px;
}

body.cms-audit .fq-form-card[data-cms-form-status="map"],
body.cms-audit .contact-form[data-cms-form-status="map"] {
  outline: 1px solid #d4a017;
  outline-offset: 2px;
}

body.cms-audit .fq-form-card[data-cms-form-status="gap"],
body.cms-audit .contact-form[data-cms-form-status="gap"] {
  outline: 1px solid #cc2647;
  outline-offset: 2px;
}

/* INNSITE Audit — only with body.cms-audit (?cms-audit=1) */
body.cms-audit [data-cms-slot],
body.cms-audit [data-cms-field],
body.cms-audit .cms-audit-host {
  position: relative;
}

body.cms-audit .fq-float, body.cms-audit .social-float[data-cms-slot] {
  position: fixed;
}

body.cms-audit span.cms-audit-host,
body.cms-audit strong.cms-audit-host,
body.cms-audit small.cms-audit-host,
body.cms-audit a.cms-audit-host {
  display: inline-block;
  max-width: 100%;
  vertical-align: baseline;
}

body.cms-audit [data-cms-slot][data-cms-status="ok"],
body.cms-audit [data-cms-field][data-cms-status="ok"] {
  outline: 1px solid #2f9e6a;
  outline-offset: 2px;
}

body.cms-audit [data-cms-slot][data-cms-status="map"],
body.cms-audit [data-cms-field][data-cms-status="map"] {
  outline: 1px solid #d4a017;
  outline-offset: 2px;
}

body.cms-audit [data-cms-slot][data-cms-status="gap"],
body.cms-audit [data-cms-field][data-cms-status="gap"] {
  outline: 1px solid #cc2647;
  outline-offset: 2px;
}

/* Carteles reales (JS): ::before fallaba en hero (overflow) y no existía en textos */
body.cms-audit [data-cms-slot]::before,
body.cms-audit [data-cms-field]::before {
  content: none !important;
  display: none !important;
}

body.cms-audit .cms-audit-cartel {
  position: absolute;
  z-index: 90;
  top: 4px;
  left: 4px;
  right: auto;
  bottom: auto;
  box-sizing: border-box;
  width: max-content;
  max-width: min(200px, calc(100% - 8px));
  margin: 0;
  padding: 4px 8px 4px 8px;
  border: 0;
  border-left: 2px solid #666;
  border-radius: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  color: #f4f6f8;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  background: rgba(12, 16, 20, 0.98);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}

body.cms-audit .cms-audit-host:hover > .cms-audit-cartel,
body.cms-audit .cms-audit-host:focus-within > .cms-audit-cartel {
  opacity: 1;
  visibility: visible;
}

/* Si hay un hijo con hover, no mostrar el cartel del padre */
body.cms-audit .cms-audit-host:has(.cms-audit-host:hover) > .cms-audit-cartel,
body.cms-audit .cms-audit-host:has(.cms-audit-host:focus-within) > .cms-audit-cartel {
  opacity: 0;
  visibility: hidden;
}

body.cms-audit .cms-audit-cartel[data-status="ok"] {
  border-left-color: #2f9e6a;
}

body.cms-audit .cms-audit-cartel[data-status="map"] {
  border-left-color: #d4a017;
}

body.cms-audit .cms-audit-cartel[data-status="gap"] {
  border-left-color: #cc2647;
}

body.cms-audit .cms-audit-cartel[data-kind="texto"] {
  top: 0;
  left: 0;
  font-size: 0.65rem;
  padding: 3px 6px;
}

body.cms-audit .fq-hero > .cms-audit-cartel, body.cms-audit .hero > .cms-audit-cartel {
  top: 12px;
  left: auto;
  right: 12px;
  z-index: 95;
}

.cms-audit-launcher {
  position: fixed;
  z-index: 10001;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #2f9e6a;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, opacity 0.15s ease;
}

.cms-audit-launcher:hover,
.cms-audit-launcher:focus-visible {
  background: #278a5c;
  outline: none;
}

.cms-audit-launcher.is-marks-off {
  background: #cc2647;
  opacity: 1;
}

.cms-audit-launcher.is-marks-off:hover,
.cms-audit-launcher.is-marks-off:focus-visible {
  background: #b01f3c;
}

.cms-audit-launcher i {
  font-size: 1.15rem;
  line-height: 1;
}

body.cms-audit-open .cms-audit-launcher {
  z-index: 9997;
  pointer-events: none;
}

.cms-audit-overlay {
  position: fixed;
  z-index: 9998;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cms-audit-overlay[hidden] {
  display: none;
}

.cms-audit-panel {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(420px, 92vw);
  height: 100%;
  max-height: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 20, 0.98);
  color: #f4f6f8;
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.35);
  font-family: Montserrat, system-ui, sans-serif;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.cms-audit-panel.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.cms-audit-panel-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 18px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 68px;
  box-sizing: border-box;
}

.cms-audit-panel-bar h2 {
  flex: 0 1 auto;
  min-width: 0;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.15;
  height: auto;
  text-align: center;
  width: 100%;
}

.cms-audit-panel-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
  max-width: calc(100% - 7.5rem);
  pointer-events: none;
}

.cms-audit-page-scope {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.cms-audit-panel-bar .cms-audit-marks-toggle,
.cms-audit-panel-bar .cms-audit-panel-close {
  position: relative;
  z-index: 2;
  align-self: center;
  flex-shrink: 0;
}

.cms-audit-marks-toggle {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f4f6f8;
  cursor: pointer;
  font: inherit;
}

.cms-audit-marks-toggle:hover,
.cms-audit-marks-toggle:focus-visible {
  outline: none;
}

.cms-audit-marks-toggle:focus-visible .cms-audit-marks-toggle-track {
  box-shadow: 0 0 0 2px rgba(244, 246, 248, 0.45);
}

.cms-audit-marks-toggle-track {
  position: relative;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: #cc2647;
  transition: background 0.15s ease;
}

.cms-audit-marks-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f4f6f8;
  transition: transform 0.15s ease;
}

.cms-audit-marks-toggle.is-on .cms-audit-marks-toggle-track {
  background: #2f9e6a;
}

.cms-audit-marks-toggle.is-on .cms-audit-marks-toggle-thumb {
  transform: translateX(16px);
}

/* OFF: sitio limpio, panel y launcher siguen disponibles */
body.cms-audit:not(.cms-audit-marks) [data-cms-slot]:not(.cms-audit-locate),
body.cms-audit:not(.cms-audit-marks) [data-cms-field]:not(.cms-audit-locate),
body.cms-audit:not(.cms-audit-marks) .fq-form-card[data-cms-form-status]:not(.cms-audit-locate),
body.cms-audit:not(.cms-audit-marks) .contact-form[data-cms-form-status]:not(.cms-audit-locate) {
  outline: none !important;
  box-shadow: none !important;
}

body.cms-audit:not(.cms-audit-marks) .cms-audit-cartel,
body.cms-audit:not(.cms-audit-marks) .cms-audit-form-marker {
  display: none !important;
}

body.cms-audit:not(.cms-audit-marks) .cms-audit-flash:not(.cms-audit-locate) {
  outline: none !important;
  box-shadow: none !important;
}

.cms-audit-panel h2 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.cms-audit-panel-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #f4f6f8;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.cms-audit-panel-close:hover,
.cms-audit-panel-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.cms-audit-panel-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 16px 18px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  gap: 18px;
}

.cms-audit-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  background: rgba(12, 16, 20, 0.98);
}

.cms-audit-section:last-child {
  flex: 1 1 auto;
  min-height: 12rem;
  overflow: hidden;
  z-index: 1;
}

.cms-audit-section:last-child > .cms-audit-panel-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}

.cms-audit-section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 28px 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(244, 246, 248, 0.62);
}

.cms-audit-section-title::before,
.cms-audit-section-title::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.cms-audit-panel-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  flex-shrink: 0;
}

.cms-audit-summary-item {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 2px;
  align-items: center;
  justify-content: start;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #666;
}

.cms-audit-summary-item[data-status="ok"] {
  border-left-color: #2f9e6a;
}

.cms-audit-summary-item[data-status="map"] {
  border-left-color: #d4a017;
}

.cms-audit-summary-item[data-status="gap"] {
  border-left-color: #cc2647;
}

.cms-audit-summary-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.cms-audit-summary-item[data-status="ok"] .cms-audit-summary-dot {
  background: #2f9e6a;
}

.cms-audit-summary-item[data-status="map"] .cms-audit-summary-dot {
  background: #d4a017;
}

.cms-audit-summary-item[data-status="gap"] .cms-audit-summary-dot {
  background: #cc2647;
}

.cms-audit-summary-count {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

.cms-audit-summary-label {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.7);
}

.cms-audit-panel-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-bottom: 0;
  flex-shrink: 0;
}

.cms-audit-panel-legend li {
  display: grid;
  grid-template-columns: 12px 2.75rem 1fr;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cms-audit-panel-legend li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cms-audit-panel-legend li:first-child {
  padding-top: 0;
}

.cms-audit-swatch {
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 50%;
  background: #666;
  flex-shrink: 0;
  justify-self: center;
}

.cms-audit-panel-legend li[data-status="ok"] .cms-audit-swatch {
  background: #2f9e6a;
}

.cms-audit-panel-legend li[data-status="map"] .cms-audit-swatch {
  background: #d4a017;
}

.cms-audit-panel-legend li[data-status="gap"] .cms-audit-swatch {
  background: #cc2647;
}

.cms-audit-legend-term {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  width: 2.75rem;
}

.cms-audit-legend-text {
  color: rgba(244, 246, 248, 0.78);
}

.cms-audit-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  align-content: start;
  overscroll-behavior: contain;
}

.cms-audit-group {
  margin: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 0;
}

.cms-audit-group:not([open]) {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cms-audit-group:not([open])[data-status="ok"] {
  border-left: 3px solid #2f9e6a;
}

.cms-audit-group:not([open])[data-status="map"] {
  border-left: 3px solid #d4a017;
}

.cms-audit-group:not([open])[data-status="gap"] {
  border-left: 3px solid #cc2647;
}

.cms-audit-group[open] {
  border: 0;
  border-left: 0;
  background: transparent;
}

.cms-audit-group-summary {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px 10px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.cms-audit-group-summary::-webkit-details-marker {
  display: none;
}

.cms-audit-group-summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid rgba(244, 246, 248, 0.7);
  border-bottom: 2px solid rgba(244, 246, 248, 0.7);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
}

.cms-audit-group[open] > .cms-audit-group-summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.cms-audit-group-summary .cms-audit-summary-dot {
  margin-top: 0;
  grid-column: 1;
  grid-row: 1;
}

.cms-audit-group-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.cms-audit-group-count {
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(244, 246, 248, 0.9);
}

.cms-audit-group[data-status="ok"] .cms-audit-summary-dot {
  background: #2f9e6a;
}

.cms-audit-group[data-status="map"] .cms-audit-summary-dot {
  background: #d4a017;
}

.cms-audit-group[data-status="gap"] .cms-audit-summary-dot {
  background: #cc2647;
}

.cms-audit-group-empty {
  margin: 0;
  padding: 8px 12px 12px;
  font-size: 0.72rem;
  color: rgba(244, 246, 248, 0.5);
}

.cms-audit-group-list {
  list-style: none;
  margin: 0;
  padding: 0 8px 8px;
  display: grid;
  gap: 8px;
}

.cms-audit-group-list li {
  padding: 10px;
  border-left: 0;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.cms-audit-group-list li:hover,
.cms-audit-group-list li:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.cms-audit-panel-head {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px;
  font-size: 0.8rem;
}

.cms-audit-ref {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.cms-audit-panel-head code {
  font-size: 0.8rem;
  color: #fff;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cms-audit-panel-head > span:last-child {
  white-space: nowrap;
}

.cms-audit-status {
  display: inline-block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  padding: 0;
  border-radius: 50%;
  background: #666;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
}

.cms-audit-status[data-status="ok"] {
  background: #2f9e6a;
}

.cms-audit-status[data-status="map"] {
  background: #d4a017;
}

.cms-audit-status[data-status="gap"] {
  background: #cc2647;
}

.cms-audit-panel-src {
  margin: 4px 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(244, 246, 248, 0.88);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}

.cms-audit-kind {
  display: inline-flex;
  padding: 1px 6px;
  border: 1px solid rgba(244, 246, 248, 0.28);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.78);
}

.cms-audit-panel-list li[data-kind="texto"] .cms-audit-kind,
.cms-audit-group-list li[data-kind="texto"] .cms-audit-kind {
  border-color: rgba(244, 246, 248, 0.4);
}

.cms-audit-panel-loc {
  color: rgba(244, 246, 248, 0.78);
}

.cms-audit-panel-preview {
  margin: 6px 0 0;
  padding: 6px 8px;
  border-left: 2px solid rgba(244, 246, 248, 0.22);
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(244, 246, 248, 0.92);
  font-style: italic;
}

.cms-audit-panel-hint {
  margin: 4px 0 0;
  font-size: 0.68rem;
  line-height: 1.3;
  color: rgba(244, 246, 248, 0.55);
}

body.cms-audit .cms-audit-flash {
  outline: 2px solid #fff !important;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(204, 38, 71, 0.35);
}

body.cms-audit .cms-audit-locate {
  outline: 2px solid #fff !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(47, 158, 106, 0.45), 0 0 0 1px rgba(12, 16, 20, 0.8) !important;
  position: relative;
  z-index: 70;
}

body.cms-audit p.cms-audit-locate,
body.cms-audit h1.cms-audit-locate,
body.cms-audit h2.cms-audit-locate,
body.cms-audit h3.cms-audit-locate,
body.cms-audit h4.cms-audit-locate,
body.cms-audit .kicker.cms-audit-locate {
  display: inline-block;
  width: max-content;
  max-width: 100%;
}

.cms-audit-locate-ring {
  position: fixed;
  z-index: 99980;
  pointer-events: none;
  box-sizing: border-box;
  border: 2px solid #2f9e6a;
  box-shadow: 0 0 0 4px rgba(47, 158, 106, 0.4);
  border-radius: 2px;
}

.cms-audit-locate-ring[data-status="gap"] {
  border-color: #cc2647;
  box-shadow: 0 0 0 4px rgba(204, 38, 71, 0.45);
}

.cms-audit-locate-ring[data-status="map"] {
  border-color: #d4a017;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.4);
}

.cms-audit-locate-ring[hidden] {
  display: none !important;
}

body.cms-audit [data-cms-status="gap"].cms-audit-locate,
body.cms-audit [data-cms-field][data-cms-status="gap"].cms-audit-locate,
body.cms-audit [data-cms-slot][data-cms-status="gap"].cms-audit-locate {
  outline: 2px solid #cc2647 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(204, 38, 71, 0.5), 0 0 0 1px rgba(12, 16, 20, 0.85) !important;
}

body.cms-audit #servicios,
body.cms-audit #equipo {
  overflow: visible;
}

body.cms-audit .cms-audit-locate > .cms-audit-cartel {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 95;
}

body.cms-audit .fq-form-card.cms-audit-locate > .cms-audit-form-marker > .cms-audit-cartel,
body.cms-audit .contact-form.cms-audit-locate > .cms-audit-form-marker > .cms-audit-cartel {
  opacity: 1 !important;
  visibility: visible !important;
}

body.cms-audit-open {
  overflow: hidden;
}

body.cms-audit .fq-topbar,
body.cms-audit .fq-topbar-inner,
body.cms-audit .topbar,
body.cms-audit .topbar-inner,
body.cms-audit .topbar-actions,
body.cms-audit .fq-header,
body.cms-audit .fq-header-inner,
body.cms-audit .site-header,
body.cms-audit .header-inner {
  overflow: visible;
}

body.cms-audit .fq-float, body.cms-audit .social-float > .cms-audit-cartel {
  top: auto;
  bottom: calc(100% + 6px);
  left: auto;
  right: 0;
}

body.cms-audit .fq-topbar .cms-audit-cartel,
body.cms-audit .topbar .cms-audit-cartel,
body.cms-audit .fq-header .cms-audit-cartel,
body.cms-audit .site-header .cms-audit-cartel {
  top: auto;
  bottom: 4px;
  left: 4px;
}

body.cms-audit #servicios > .cms-audit-cartel {
  top: 12px;
  left: auto;
  right: 12px;
}


body.cms-audit .ic-header-inner { overflow: visible; }

body.cms-audit .ic-hero > .cms-audit-cartel { top: 12px; left: auto; right: 12px; z-index: 95; }

/* —— CMS modules (site-wide brand) —— */

.ic-stats-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.ic-stat-card {
  background: var(--ic-paper);
  border: 1px solid var(--ic-line);
  border-top: 3px solid var(--ic-red);
  padding: 1.25rem 1.2rem;
}

.ic-stat-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--ic-teal-soft);
  color: var(--ic-teal);
  margin-bottom: 0.55rem;
}

.ic-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ic-navy);
  margin: 0 0 0.3rem;
  letter-spacing: -0.03em;
}

.ic-stat-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  color: var(--ic-ink);
}

.ic-stat-card p {
  margin: 0;
  color: var(--ic-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ic-ctas-stack {
  display: grid;
  gap: 0;
}

.ic-cta-band {
  color: #fff;
  padding: 2.25rem 0;
}

.ic-cta-band.is-navy {
  background: var(--ic-navy);
}

.ic-cta-band.is-red {
  background: var(--ic-red);
}

.ic-cta-band-inner {
  display: grid;
  gap: 0.65rem;
}

.ic-cta-band-inner h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ic-cta-band-inner p {
  margin: 0;
  max-width: 52ch;
  opacity: 0.92;
  line-height: 1.45;
}

.ic-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

.ic-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.ic-btn-primary {
  background: var(--ic-teal);
  color: #fff;
}

.ic-btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.ic-cta-band .ic-btn-primary {
  background: #fff;
  color: var(--ic-navy);
}

.ic-cta-band.is-red .ic-btn-primary {
  color: var(--ic-red);
}

.ic-cta-band .ic-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.ic-bloques-host {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
}

.ic-bloque-html .debt-html-card,
.debt-html-card {
  background: var(--ic-paper);
  border: 1px solid var(--ic-line);
  padding: 1.15rem 1.25rem;
}

.ic-bloque-html .debt-html-quote,
.debt-html-quote {
  margin: 0;
  padding: 1.25rem 1.4rem;
  background: var(--ic-navy);
  color: #fff;
}

.ic-blog-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ic-blog-card {
  background: var(--ic-paper);
  border: 1px solid var(--ic-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ic-blog-media.is-empty {
  min-height: 8rem;
  background: var(--ic-surface-2);
}

.ic-blog-media img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  display: block;
}

.ic-blog-body {
  padding: 0.9rem 1rem 1.05rem;
}

.ic-blog-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--ic-subtle);
  margin-bottom: 0.35rem;
}

.ic-blog-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.ic-blog-body h3 a {
  color: var(--ic-navy);
  text-decoration: none;
}

.ic-blog-body p {
  margin: 0;
  color: var(--ic-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ic-blog-pager,
.cms-blog-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  align-items: center;
  width: 100%;
  margin-top: 1.5rem;
}

.cms-pager-btn {
  display: inline-grid;
  place-items: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.55rem;
  border: 1px solid var(--ic-line);
  background: var(--ic-paper);
  color: var(--ic-ink);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

.cms-pager-btn:hover:not(:disabled),
.cms-pager-btn:focus-visible:not(:disabled) {
  border-color: var(--ic-teal);
  color: var(--ic-teal);
}

.cms-pager-btn.is-active {
  background: var(--ic-navy);
  color: #fff;
  border-color: var(--ic-navy);
}

.cms-pager-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cms-pager-ellipsis {
  padding: 0 0.3rem;
  color: var(--ic-subtle);
  user-select: none;
}

@media (max-width: 900px) {
  .ic-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ic-blog-grid {
    grid-template-columns: 1fr;
  }
}

.ic-quotes-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.ic-quote-card {
  margin: 0;
  background: var(--ic-paper);
  border: 1px solid var(--ic-line);
  border-left: 3px solid var(--ic-red);
  padding: 1.25rem 1.2rem;
}

.ic-quote-photo {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.ic-quote-body p {
  margin: 0;
  color: var(--ic-ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

.ic-quote-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.85rem;
  color: var(--ic-muted);
  font-size: 0.85rem;
}

.ic-carrusel {
  width: var(--container);
  margin-inline: auto;
}

.ic-carrusel-viewport {
  overflow: hidden;
  border: 1px solid var(--ic-line);
  background: var(--ic-paper);
}

.ic-carrusel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s ease;
  will-change: transform;
  padding: 1rem;
}

.ic-carrusel-slide {
  flex: 0 0 10.5rem;
  min-height: 5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ic-line);
  background: var(--ic-surface);
  color: var(--ic-muted);
  text-decoration: none;
  padding: 0.85rem;
}

.ic-carrusel-slide img {
  max-width: 100%;
  max-height: 3.5rem;
  object-fit: contain;
  display: block;
}

.ic-carrusel-chrome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.ic-carrusel-nav {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--ic-line);
  background: var(--ic-paper);
  color: var(--ic-navy);
  cursor: pointer;
}

.ic-carrusel-nav:hover,
.ic-carrusel-nav:focus-visible {
  border-color: var(--ic-red);
  color: var(--ic-red);
}

.ic-carrusel-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.ic-carrusel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--ic-line);
  cursor: pointer;
}

.ic-carrusel-dot.is-active {
  background: var(--ic-red);
}

.ic-reason-icon {
  display: inline-grid;
  place-items: center;
  width: 85px;
  height: 85px;
  font-size: 1.85rem;
  color: var(--ic-red);
  background: var(--ic-surface);
  border: 1px solid var(--ic-line);
}

.ic-equipo-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
}

.ic-equipo-card {
  background: var(--ic-paper);
  border: 1px solid var(--ic-line);
  padding: 1.1rem 1.05rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.ic-equipo-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ic-surface-2);
  margin-bottom: 0.75rem;
  display: block;
}

.ic-equipo-photo.is-initials {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ic-navy);
  letter-spacing: 0.04em;
}

.ic-equipo-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--ic-ink);
}

.ic-equipo-role {
  margin: 0 0 0.4rem;
  font-weight: 600;
  color: var(--ic-teal);
  font-size: 0.9rem;
}

.ic-equipo-body p {
  margin: 0;
  color: var(--ic-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.ic-equipo-redes {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ic-equipo-red {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--ic-line);
  background: var(--ic-surface);
  color: var(--ic-navy);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.ic-equipo-red:hover,
.ic-equipo-red:focus-visible {
  color: var(--ic-teal);
  border-color: var(--ic-teal);
  background: color-mix(in srgb, var(--ic-teal) 12%, var(--ic-paper));
  outline: none;
}

.ic-equipo-red svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* —— Design debt sandbox chrome (debt.html) —— */
.page-debt .debt-main { padding-bottom: 3rem; }
.page-debt .debt-banner {
  background: linear-gradient(135deg, var(--ic-navy), color-mix(in srgb, var(--ic-navy) 70%, var(--ic-teal)));
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.page-debt .debt-banner-inner { max-width: 44rem; }
.page-debt .debt-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.35rem 0 0.75rem;
}
.page-debt .debt-banner-lead {
  opacity: 0.92;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.page-debt .debt-banner-lead code {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}
.page-debt .debt-banner-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.page-debt .debt-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ic-teal);
  margin: 0 0 0.35rem;
}
.page-debt .debt-banner .debt-kicker { color: rgba(255, 255, 255, 0.85); }
.page-debt .debt-section { padding: 2.5rem 0; }
.page-debt .debt-section-head { margin-bottom: 1.5rem; }
.page-debt .debt-section-head h2 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ic-ink);
}
.page-debt .debt-section-ctas { padding-bottom: 0; }
.page-debt .debt-section-ctas .debt-section-head { margin-bottom: 1rem; }
.page-debt .debt-banner .ic-btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.page-debt .ic-stats-grid,
.page-debt .ic-quotes-grid,
.page-debt .ic-equipo-grid,
.page-debt .ic-bloques-host,
.page-debt .ic-blog-grid,
.page-debt .ic-carrusel,
.page-debt [data-servicios-host].ic-card-grid {
  width: 100%;
}

.site-locale[hidden] { display: none !important; }
.site-locale {
  flex-shrink: 0;
}
.site-locale-toggle {
  display: inline-flex;
  gap: 0.25rem;
}
.site-locale-option {
  border: 1px solid var(--ic-line);
  background: var(--ic-paper);
  border-radius: 6px;
  padding: 0.25rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ic-ink);
}
.site-locale-option[aria-pressed="true"] {
  background: var(--ic-navy);
  color: #fff;
  border-color: var(--ic-navy);
}
.site-locale.is-debt-preview {
  outline: 1px dashed color-mix(in srgb, var(--ic-teal) 55%, transparent);
  outline-offset: 3px;
}


/* ABC v2 · debt elastic (áreas + e-com) */
.debt-section-areas,
.debt-section-ecom-productos,
.debt-section-ecom-catalogo {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent);
}
.debt-areas-grid,
.cms-areas-grid,
.debt-productos-grid,
.cms-productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.debt-area-card,
.debt-producto-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  border-radius: 2px;
  background: color-mix(in srgb, currentColor 3%, transparent);
}
.debt-area-card h3,
.debt-producto-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.debt-area-card p,
.debt-producto-card p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.95rem;
}
.debt-precio { margin-top: 0.75rem !important; font-weight: 600; }
.debt-plp-ids {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.debt-plp-ids li {
  padding: 0.35rem 0.7rem;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  font-size: 0.85rem;
}

