:root {
  --red: #d70000;
  --deep-red: #9b0000;
  --orange: #f58220;
  --deep-orange: #cc4f18;
  --gold: #f6a63c;
  --ink: #33343a;
  --muted: #6f7379;
  --line: #d9dde2;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --charcoal: #20242a;
  --max: 1180px;
  --shadow: 0 18px 45px rgba(25, 31, 38, .12);
  --panel-title-size: clamp(2.2rem, 4.15vw, 3.65rem);
  --editorial-subtitle-size: clamp(1rem, 1.35vw, 1.24rem);
  --editorial-title-color: #4e5359;

  --editorial-accent: var(--orange);
  --subtitle-after: clamp(8px, .9vw, 12px);
  --subtitle-after-tight: 4px;
  --subtitle-before: clamp(28px, 3vw, 40px);
  --subtitle-diagram-after: clamp(12px, 1.4vw, 16px);
  --accent-gradient: linear-gradient(135deg, var(--deep-orange), var(--orange) 58%, var(--gold));
  --entry-grey-plate: 20%;
  --entry-wash-left: clamp(20px, 3.2vw, 56px);
  --entry-wash-overlap: clamp(56px, 7vw, 120px);
  --entry-wash-width: min(62vw, 780px);
  --entry-wash-gradient: linear-gradient(90deg, rgba(242, 58, 28, .98) 0%, rgba(244, 96, 24, .92) 42%, rgba(245, 128, 32, .42) 58%, rgba(245, 128, 32, 0) 76%);
  --entry-wash-gradient-reverse: linear-gradient(90deg, rgba(204, 79, 24, 0) 0%, rgba(245, 130, 32, .1) 18%, rgba(245, 130, 32, .52) 36%, rgba(245, 130, 32, .95) 56%, rgba(204, 79, 24, .97) 100%);
  --hero-subject-width: min(49vw, 680px);
  --hero-subject-max-height: min(65vh, 640px);
  --hero-subject-right: clamp(12px, 3.5vw, 56px);
  --hero-subject-scale: 0.93;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "komet", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(33, 36, 41, .98), rgba(17, 20, 25, .98)),
    url("../img/home/inicio-bg.jpg") center / cover;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), visibility .7s;
}

.preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: .45;
}

.preloader-panel {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 260px;
  text-align: center;
}

.preloader-logo {
  width: 84px;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .18));
}

.preloader p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.preloader-line {
  position: relative;
  display: block;
  width: 220px;
  height: 2px;
  margin-top: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
}

.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform-origin: left;
  animation: preloadLine 1.25s cubic-bezier(.76, 0, .24, 1) infinite;
}

body.is-ready .preloader {
  visibility: hidden;
  opacity: 0;
}

.site-header {
  --site-header-height: 66px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: var(--site-header-height);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .07);
  animation: headerDrop .85s cubic-bezier(.22, 1, .36, 1) both;
}

.brand {
  position: absolute;
  left: 24px;
  top: 5px;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
}

.brand img {
  width: auto;
  height: 56px;
  display: block;
  max-width: none;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1120px;
  margin-left: 150px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.primary-nav a,
.nav-parent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 12px 14px;
  color: #666b72;
  font-size: .86rem;
  line-height: 1.12;
  text-align: center;
  transition: color .25s ease, background .25s ease;
}

.nav-parent {
  border: 0;
  font-family: inherit;
  cursor: default;
}

.primary-nav a::after,
.nav-parent::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 11px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.nav-item:hover > .nav-parent,
.nav-item:focus-within > .nav-parent {
  color: var(--deep-orange);
  background: rgba(245, 130, 32, .06);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.nav-item:hover > .nav-parent::after,
.nav-item:focus-within > .nav-parent::after {
  transform: scaleX(1);
}

.primary-nav a.active,
.nav-item.active > .nav-parent {
  color: #fff;
  background: var(--accent-gradient);
}

.primary-nav a.active::after,
.primary-nav a.nav-action::after,
.nav-item.active > .nav-parent::after {
  transform: scaleX(0);
  display: none;
}

.nav-parent::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  order: 2;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s ease;
}

.nav-item:hover > .nav-parent::before,
.nav-item:focus-within > .nav-parent::before {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 310px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(217, 221, 226, .9);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(90deg, rgba(245, 130, 32, .12), transparent 46%),
    rgba(255, 255, 255, .98);
  box-shadow: 0 24px 54px rgba(31, 33, 37, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown::before {
  content: attr(aria-label);
  display: block;
  margin: 0 0 8px;
  padding: 4px 9px 10px;
  color: var(--deep-orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 130, 32, .22);
}

.nav-item:nth-child(2) .nav-dropdown,
.nav-item:nth-child(6) .nav-dropdown {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(560px, calc(100vw - 40px));
  max-width: min(560px, calc(100vw - 40px));
}

.nav-item:nth-child(2) .nav-dropdown::before,
.nav-item:nth-child(6) .nav-dropdown::before {
  grid-column: 1 / -1;
}

.nav-item:nth-child(6) .nav-dropdown,
.nav-item:nth-child(7) .nav-dropdown {
  left: auto;
  right: 0;
  transform: translateY(10px);
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* El desplazamiento pertenece al dropdown flotante de escritorio: en el menú
   responsive el submenú es estático y cualquier translate lo saca del panel. */
@media (min-width: 921px) {
  .nav-item:hover > .nav-dropdown,
  .nav-item:focus-within > .nav-dropdown {
    transform: translateX(-50%) translateY(0);
  }

  .nav-item:nth-child(6):hover > .nav-dropdown,
  .nav-item:nth-child(6):focus-within > .nav-dropdown,
  .nav-item:nth-child(7):hover > .nav-dropdown,
  .nav-item:nth-child(7):focus-within > .nav-dropdown {
    transform: translateY(0);
  }
}

.primary-nav .nav-dropdown a {
  justify-content: flex-start;
  min-width: 0;
  min-height: 40px;
  padding: 10px 34px 10px 12px;
  color: var(--ink);
  font-size: .78rem;
  line-height: 1.18;
  text-align: left;
  border-radius: 5px;
  background: transparent;
  overflow-wrap: anywhere;
}

.primary-nav .nav-dropdown a::after {
  left: auto;
  right: 12px;
  top: 50%;
  bottom: auto;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  opacity: .34;
  transform: translateY(-50%) rotate(45deg) scale(1);
  transition: opacity .25s ease, transform .25s ease;
}

.primary-nav .nav-dropdown a:hover,
.primary-nav .nav-dropdown a:focus-visible {
  color: var(--deep-orange);
  background: rgba(245, 130, 32, .1);
}

.primary-nav .nav-dropdown a:hover::after,
.primary-nav .nav-dropdown a:focus-visible::after {
  opacity: .9;
}

@media (hover: hover) and (pointer: fine) {
  .primary-nav .nav-dropdown a:hover::after,
  .primary-nav .nav-dropdown a:focus-visible::after {
    transform: translateY(-50%) translateX(3px) rotate(45deg) scale(1);
  }
}

.primary-nav a.nav-action {
  align-self: center;
  min-width: 54px;
  min-height: 38px;
  margin: 0 4px;
  padding: 9px 13px;
  border: 1px solid rgba(245, 130, 32, .28);
  border-radius: 999px;
  color: var(--deep-orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  background: #fff;
  box-shadow: 0 8px 22px rgba(104, 44, 0, .08);
}

.primary-nav a.nav-action-download {
  color: #fff;
  background: var(--accent-gradient);
  border-color: transparent;
}

.primary-nav a.nav-action:hover,
.primary-nav a.nav-action:focus-visible {
  color: #fff;
  background: var(--deep-orange);
  box-shadow: 0 10px 26px rgba(104, 44, 0, .16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 8px 18px 8px auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle .menu-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}

.menu-toggle.is-open .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-open .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html.menu-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.home-hero {
  position: relative;
  --hero-red-height: 44.5%;
  /* Baja SÓLIDOS hasta el borde inferior de la plasta (compensa line-box del display). */
  --solidos-edge-nudge: -.055em;
  /* Distancia fija (en em del h1) entre el borde de la plasta y "con vision…". */
  --hero-title-gap: .2em;
  --hero-people-width: min(56.35vw, 782px);
  --hero-people-max-height: min(74.75vh, 736px, calc(100% - clamp(118px, 15vh, 156px)));
  --hero-people-right: clamp(8px, 2.4vw, 40px);
  min-height: calc(100vh - 60px);
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero-red-band {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hero-red-height);
  background: linear-gradient(122deg, #ff8219 0%, #f15f1f 48%, #ee361f 100%);
  pointer-events: none;
  transform-origin: top;
}

.hero-red-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, .38);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 7;
  top: 0;
  left: clamp(42px, 11.8vw, 164px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(860px, calc(100% - 108px));
  height: var(--hero-red-height);
  /* Sin padding inferior: el baseline de SÓLIDOS debe coincidir con el borde de la plasta. */
  padding: clamp(24px, 3.8vh, 38px) 0 0;
  box-sizing: border-box;
  overflow: visible;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-orange);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-hero .eyebrow {
  position: absolute;
  top: clamp(28px, 4.6vh, 42px);
  left: 0;
  margin-bottom: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: none;
}

.home-hero .eyebrow span {
  font-weight: 400;
}

.home-hero .eyebrow strong {
  font-weight: 800;
}

.hero-copy h1 {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.2vh, 28px);
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: clamp(3.75rem, 7.25vw, 7.05rem);
  font-weight: 200;
  text-transform: none;
  text-shadow: none;
  overflow: visible;
}

.hero-copy h1 span,
.hero-copy h1 strong {
  display: block;
}

.hero-copy h1 > span:first-child {
  line-height: 1;
}

.hero-copy h1 strong {
  font-family: "tondu", "komet", Arial, sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 1.19em;
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
  transform: translateY(var(--solidos-edge-nudge));
}

.hero-copy h1 span:last-child {
  position: absolute;
  /* Anclado al borde inferior del bloque de título (= borde de plasta), gap constante. */
  top: calc(100% + var(--hero-title-gap));
  left: 0;
  max-width: 620px;
  margin: 0;
  color: #ff8219;
  font-size: .7em;
  font-weight: 700;
  line-height: 1.05;
}

/* EN home: same DOM roles as ES (lead span / strong / sub span), visual order SOLID first. */
html[lang="en"] .home-hero .hero-copy h1 > span:first-child {
  order: 2;
  transform: translateY(var(--solidos-edge-nudge));
}

html[lang="en"] .home-hero .hero-copy h1 strong {
  order: 1;
  transform: none;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(26px, 4vh, 44px);
  color: var(--deep-orange);
  font-size: 1.1rem;
  font-weight: 700;
}

.home-hero .download-link {
  display: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-industrial,
.hero-industrial-real {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  will-change: transform, opacity;
}

.hero-industrial {
  filter: saturate(.9) contrast(.98) brightness(1.14);
  opacity: .94;
}

.hero-industrial-real {
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
  opacity: 1;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, .46) 42%, rgba(255, 255, 255, .64) 72%, rgba(255, 255, 255, .78) 100%);
  pointer-events: none;
  opacity: 0;
}

.hero-backdrop::after {
  content: none;
}

.hero-people {
  position: absolute;
  z-index: 5;
  right: var(--hero-subject-right);
  bottom: 0;
  width: var(--hero-subject-width);
  max-height: var(--hero-subject-max-height);
  object-fit: contain;
  object-position: right bottom;
  opacity: 1;
}

.home-hero .hero-people {
  right: var(--hero-people-right);
  width: var(--hero-people-width);
  max-height: var(--hero-people-max-height);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.hero-dots span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 16px 38px rgba(255, 255, 255, .12);
}

.hero-dots span:first-child {
  display: none;
}

.hero-dots span:last-child {
  display: none;
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  top: clamp(68px, 10vh, 110px);
  right: clamp(28px, 7vw, 104px);
  width: clamp(500px, 55vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero-orbit span {
  position: absolute;
  width: clamp(20px, 2.6vw, 36px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 18px 42px rgba(255, 255, 255, .1);
}

.hero-orbit span:nth-child(1) { top: 0; left: 48%; }
.hero-orbit span:nth-child(2) { top: 4%; right: 30%; }
.hero-orbit span:nth-child(3) { top: 14%; right: 14%; }
.hero-orbit span:nth-child(4) { top: 30%; right: 4%; }
.hero-orbit span:nth-child(5) { top: 48%; right: 0; }
.hero-orbit span:nth-child(6) { right: 4%; bottom: 30%; }
.hero-orbit span:nth-child(7) { right: 14%; bottom: 14%; }
.hero-orbit span:nth-child(8) { right: 30%; bottom: 4%; }
.hero-orbit span:nth-child(9) { left: 48%; bottom: 0; }
.hero-orbit span:nth-child(10) { left: 30%; bottom: 4%; }
.hero-orbit span:nth-child(11) { left: 14%; bottom: 14%; }
.hero-orbit span:nth-child(12) { left: 4%; bottom: 30%; }
.hero-orbit span:nth-child(13) { top: 48%; left: 0; }
.hero-orbit span:nth-child(14) { top: 30%; left: 4%; }
.hero-orbit span:nth-child(15) { top: 14%; left: 14%; }
.hero-orbit span:nth-child(16) { top: 4%; left: 30%; }

.hero-cover-logo {
  position: absolute;
  z-index: 7;
  top: clamp(42px, 7vh, 72px);
  right: clamp(64px, 11vw, 162px);
  display: block;
}

.hero-cover-logo img {
  width: clamp(54px, 4.8vw, 74px);
  height: auto;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 26px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 130, 32, .24);
  padding: 0;
  border-radius: 50%;
  color: var(--deep-orange);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(59, 25, 0, .2), 0 0 0 6px rgba(255, 255, 255, .28);
  opacity: 1;
  cursor: pointer;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.intro-band {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 11vw, 172px) 0 clamp(124px, 12vw, 184px);
  background: linear-gradient(180deg, #fff8f2 0%, var(--paper) 100%);
  isolation: isolate;
}

.intro-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(-260px, -18vw, -92px);
  z-index: -1;
  width: clamp(250px, 34vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 130, 32, .12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.intro-band::after {
  content: "";
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  top: 58%;
  z-index: -1;
  width: clamp(58px, 7vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 130, 32, .09);
  transform: translateY(-50%);
}

.intro-layout {
  position: relative;
  display: block;
}

.intro-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: clamp(420px, 60vw, 850px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.intro-orbit span {
  position: absolute;
  width: clamp(14px, 1.7vw, 26px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 130, 32, .16);
  box-shadow: inset 0 0 0 1px rgba(245, 130, 32, .1);
}

.intro-orbit span:nth-child(1) { left: 49%; top: 2%; }
.intro-orbit span:nth-child(2) { left: 67%; top: 6%; }
.intro-orbit span:nth-child(3) { left: 82%; top: 17%; }
.intro-orbit span:nth-child(4) { left: 93%; top: 34%; }
.intro-orbit span:nth-child(5) { left: 94%; top: 53%; }
.intro-orbit span:nth-child(6) { left: 84%; top: 72%; }
.intro-orbit span:nth-child(7) { left: 68%; top: 86%; }
.intro-orbit span:nth-child(8) { left: 50%; top: 94%; }
.intro-orbit span:nth-child(9) { left: 31%; top: 88%; }
.intro-orbit span:nth-child(10) { left: 15%; top: 75%; }
.intro-orbit span:nth-child(11) { left: 5%; top: 56%; }
.intro-orbit span:nth-child(12) { left: 6%; top: 36%; }
.intro-orbit span:nth-child(13) { left: 17%; top: 18%; }
.intro-orbit span:nth-child(14) { left: 32%; top: 7%; }
.intro-orbit span:nth-child(15) {
  left: 76%;
  top: 45%;
  width: clamp(10px, 1.25vw, 18px);
}
.intro-orbit span:nth-child(16) {
  left: 24%;
  top: 47%;
  width: clamp(10px, 1.25vw, 18px);
}

.intro-statement {
  max-width: 760px;
  margin: 0 auto;
  color: #4e5359;
  font-family: "komet", sans-serif;
  font-size: clamp(1.95rem, 3.35vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
}

.intro-statement strong {
  color: var(--deep-orange);
  font-weight: 700;
}

.section-index {
  position: relative;
  overflow: hidden;
  padding: 50px 0 60px;
  background: linear-gradient(180deg, #f5f6f7 0%, var(--soft) 100%);
}

.section-heading {
  position: relative;
  display: grid;
  align-items: end;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: clamp(34px, 5vw, 58px);
  padding-left: clamp(20px, 3.2vw, 42px);
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 5px;
  height: calc(100% - .25em);
  background: var(--orange);
}

.section-heading h2 {
  color: var(--charcoal);
  max-width: 760px;
  font-size: clamp(2.35rem, 4.8vw, 5.4rem);
  font-weight: 300;
  line-height: .96;
}

.section-heading h2 span {
  display: block;
  color: var(--deep-orange);
  font-family: "tondu", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.performance-section {
  padding-top: clamp(84px, 8vw, 118px);
  border-top: 1px solid rgba(245, 130, 32, .18);
  background:
    linear-gradient(180deg, #fff4eb 0, #fff 118px, #f4f5f6 100%);
}

.performance-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1320px, calc(100% - 48px));
  height: 6px;
  background: var(--accent-gradient);
  transform: translateX(-50%);
}

.performance-section .inner {
  width: min(1320px, calc(100% - 48px));
}

.performance-section .section-heading {
  gap: clamp(8px, 1.1vw, 12px);
  align-items: start;
}

.performance-section .section-heading h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(2.4rem, 4.9vw, 5.2rem);
  font-family: "tondu", "komet", Arial, sans-serif;
  font-weight: 400;
  line-height: .86;
  text-transform: none;
}

.performance-section .section-heading h2 span,
.performance-section .section-heading h2 strong {
  display: block;
}

.performance-section .section-heading h2 span {
  color: #4e5359;
  font-family: "komet", Arial, sans-serif;
  font-weight: 300;
  text-transform: none;
}

.performance-section .section-heading h2 strong {
  color: var(--orange);
  font-weight: 400;
  text-transform: none;
}

.performance-section .section-heading .editorial-title,
.performance-section .section-heading .performance-section-title {
  margin: 0;
}

.performance-section .section-heading .performance-section-title span,
.performance-section .section-heading .performance-section-title strong {
  display: block;
}

.performance-instruction {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(.96rem, 1.08vw, 1.08rem);
  line-height: 1.42;
}

.performance-board {
  position: relative;
  min-height: clamp(800px, 70vw, 980px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 54% 43%, rgba(245, 130, 32, .1), transparent 0 30%, rgba(0, 163, 143, .06) 31%, transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 251, 252, .92));
  border: 1px solid rgba(217, 221, 226, .72);
  box-shadow: 0 26px 78px rgba(31, 33, 37, .09);
  perspective: 1200px;
}

.performance-board::before,
.performance-board::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.performance-board::before {
  left: 50%;
  top: 50%;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(245, 130, 32, .12) 50%, transparent 50.15%),
    linear-gradient(180deg, transparent 49.85%, rgba(0, 163, 143, .1) 50%, transparent 50.15%);
  border: 1px solid rgba(245, 130, 32, .13);
  border-radius: 50%;
  opacity: .82;
  transform: translate(-50%, -50%) rotateX(58deg);
}

.performance-board::after {
  left: 50%;
  top: 50%;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(160, 76, 175, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(58deg);
}

.performance-media {
  position: absolute;
  overflow: hidden;
  border-radius: 8px 8px 48px 8px;
  box-shadow: 0 24px 54px rgba(31, 33, 37, .12);
  opacity: .84;
}

.performance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(.96);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.performance-board:hover .performance-media img {
  transform: scale(1.035);
}

.performance-media-left {
  left: 4%;
  top: 13%;
  width: min(22vw, 290px);
  height: 178px;
}

.performance-media-center {
  left: 23%;
  bottom: 6%;
  width: min(29vw, 385px);
  height: 250px;
  border-radius: 8px 42px 8px 8px;
}

.performance-media-right {
  right: 9%;
  bottom: 7%;
  width: min(34vw, 455px);
  height: 250px;
  border-radius: 48px 8px 48px 8px;
}

.performance-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(82px, 8vw, 128px);
  aspect-ratio: 1;
  padding: 14px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow:
    0 30px 54px rgba(31, 33, 37, .2),
    inset -18px -18px 34px rgba(0, 0, 0, .16),
    inset 14px 14px 28px rgba(255, 255, 255, .18);
  transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  animation: performanceFloat 7.8s ease-in-out infinite;
  animation-delay: calc(var(--float-delay, 0) * -1s);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, filter .35s ease;
}

.performance-node::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 34% 20%, rgba(255,255,255,.52) 0 5px, transparent 6px),
    radial-gradient(circle at 56% 28%, rgba(255,255,255,.26) 0 4px, transparent 5px),
    radial-gradient(circle at 66% 43%, rgba(255,255,255,.22) 0 4px, transparent 5px),
    radial-gradient(circle at 56% 62%, rgba(255,255,255,.18) 0 4px, transparent 5px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,.2) 0 4px, transparent 5px),
    radial-gradient(circle at 26% 52%, rgba(255,255,255,.24) 0 4px, transparent 5px),
    radial-gradient(circle at 28% 32%, rgba(255,255,255,.24) 0 4px, transparent 5px),
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.34), transparent 38%);
  opacity: .86;
}

.performance-node::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: radial-gradient(circle, currentColor, transparent 62%);
  opacity: .12;
  filter: blur(10px);
  transform: translateZ(-1px);
}

.performance-node span {
  position: relative;
  z-index: 2;
  max-width: 12ch;
  font-size: clamp(.78rem, .96vw, 1rem);
  font-weight: 800;
  line-height: 1.16;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  transition: opacity .25s ease, transform .25s ease;
}

.node-orange { background: linear-gradient(145deg, #f73f24, #ff8219); }
.node-purple { background: linear-gradient(145deg, #7f3fa8, #b35ac2); }
.node-blue { background: linear-gradient(145deg, #2f71dc, #5590ea); }
.node-teal { background: linear-gradient(145deg, #009c89, #12b79d); }

.performance-node:hover,
.performance-node:focus-visible,
.performance-node.is-active {
  z-index: 5;
  filter: saturate(1.08);
  animation-play-state: paused;
  box-shadow:
    0 34px 70px rgba(31, 33, 37, .26),
    inset -18px -18px 34px rgba(0, 0, 0, .16),
    inset 18px 18px 32px rgba(255, 255, 255, .2);
  transform: translate(-50%, -50%) scale(1.16) rotateX(6deg) rotateY(-8deg);
}

.performance-node:hover span,
.performance-node:focus-visible span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.performance-node:focus-visible {
  outline: 3px solid rgba(245, 130, 32, .38);
  outline-offset: 5px;
}

.performance-detail {
  position: absolute;
  left: clamp(28px, 4.8vw, 64px);
  bottom: clamp(34px, 5vw, 68px);
  z-index: 4;
  width: min(470px, 40vw);
  min-height: 216px;
  padding: 30px 32px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, .92);
  border-left: 5px solid var(--orange);
  box-shadow: 0 24px 58px rgba(31, 33, 37, .14);
  backdrop-filter: blur(16px);
}

.performance-kicker {
  margin: 0 0 8px;
  color: var(--deep-orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.performance-detail h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
}

.performance-detail p:not(.performance-kicker) {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.42;
}

.performance-detail span {
  display: block;
  margin-top: 14px;
  color: var(--deep-orange);
  font-size: .76rem;
  font-weight: 800;
}

.performance-board {
  display: block;
  min-height: auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 130, 32, .05), transparent 34%),
    #fff;
  border: 1px solid rgba(217, 221, 226, .82);
  border-radius: 8px;
  box-shadow: 0 26px 78px rgba(31, 33, 37, .09);
  perspective: none;
}

.performance-board::before,
.performance-board::after {
  display: none;
}

.performance-detail {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: auto;
  min-height: 620px;
  padding: clamp(34px, 4vw, 58px);
  border-left: 0;
  border-right: 1px solid rgba(217, 221, 226, .82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 248, 242, .94)),
    radial-gradient(circle at 16% 18%, rgba(245, 130, 32, .16), transparent 34%);
  box-shadow: none;
  backdrop-filter: none;
}

.performance-detail::before {
  content: "";
  position: absolute;
  left: clamp(34px, 4vw, 58px);
  top: clamp(34px, 4vw, 58px);
  width: 54px;
  height: 5px;
  background: var(--accent-gradient);
}

.performance-detail h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
}

.performance-detail p:not(.performance-kicker) {
  max-width: 360px;
  color: #52575d;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.48;
}

.performance-detail span {
  max-width: 320px;
  margin-top: 24px;
  color: var(--deep-orange);
  font-size: .78rem;
  line-height: 1.35;
}

.performance-editorial {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(250, 251, 252, .86), #fff 42%),
    repeating-linear-gradient(90deg, transparent 0 23.8%, rgba(217, 221, 226, .46) 24%, transparent 24.2%);
}

.performance-editorial::before {
  display: none;
}

.performance-media {
  display: none;
}

.performance-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(255, 255, 255, .78));
  pointer-events: none;
}

.performance-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(.88) contrast(.95);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .7s ease;
}

.performance-board:hover .performance-media img {
  transform: scale(1.025);
  filter: saturate(1) contrast(.98);
}

.performance-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(170px, auto));
  grid-template-areas:
    "value value value value governance governance governance governance social social social social"
    "value value value value climate climate climate climate social social social social"
    "environment environment environment environment environment environment environment environment social social social social";
  gap: 0;
  padding: 0;
  background: #fff;
}

.performance-group {
  position: relative;
  display: grid;
  gap: 0;
  min-width: 0;
}

.performance-group-value {
  grid-area: value;
}

.performance-group-governance {
  grid-area: governance;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.performance-group-social {
  grid-area: social;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.performance-group-climate {
  grid-area: climate;
}

.performance-group-environment {
  grid-area: environment;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.performance-node {
  position: relative;
  left: auto;
  top: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: 132px;
  aspect-ratio: auto;
  padding: clamp(18px, 2vw, 28px);
  color: #fff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--node-color) 78%, #fff) 0%, var(--node-color) 54%, color-mix(in srgb, var(--node-color) 82%, #111) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  transform: none;
  transform-style: flat;
  animation: none;
  transition: color .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.performance-group-value .performance-node {
  min-height: 100%;
}

.performance-group-social .performance-node {
  height: 100%;
  min-height: 0;
}

.performance-group-climate .performance-node,
.performance-group-environment .performance-node {
  min-height: 150px;
}

.performance-node::before,
.performance-node::after {
  display: none;
}

.performance-node span {
  max-width: none;
  color: inherit;
  font-size: clamp(1.24rem, 1.72vw, 2.08rem);
  font-weight: 300;
  line-height: 1.04;
  opacity: 1;
  transform: none;
}

.performance-node span::first-line {
  font-weight: 800;
}

.performance-node span i {
  display: inline-block;
  width: .68em;
  height: .68em;
  margin-left: .32em;
  vertical-align: .04em;
  background: currentColor;
  opacity: .72;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3ZM5 5h6v2H7v10h10v-4h2v6H5V5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3ZM5 5h6v2H7v10h10v-4h2v6H5V5Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  transition: opacity .28s ease, transform .28s ease;
}

.performance-node:hover,
.performance-node:focus-visible,
.performance-node.is-active {
  z-index: 2;
  color: #fff;
  border-color: rgba(255, 255, 255, .68);
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, .1);
  transform: none;
}

.performance-node:hover span i,
.performance-node:focus-visible span i,
.performance-node.is-active span i {
  opacity: 1;
  transform: translate(1px, -1px);
}

.performance-node:hover span,
.performance-node:focus-visible span,
.performance-node.is-active span {
  color: #fff;
  opacity: 1;
  transform: none;
}

.node-orange { --node-color: #f94722; }
.node-purple { --node-color: #984bb0; }
.node-blue { --node-color: #3f80df; }
.node-teal { --node-color: #0da893; }

.performance-group-social .node-orange {
  --node-color: #ff7f18;
}

.performance-hover-tooltip {
  position: fixed;
  left: -999px;
  top: -999px;
  z-index: 90;
  --tooltip-scale: .88;
  --tooltip-y: 10px;
  --tooltip-arrow-x: -8px;
  --tooltip-arrow-rotate: 45deg;
  width: min(460px, calc(100vw - 34px));
  padding: 22px 24px 24px;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 248, 242, .98)),
    radial-gradient(circle at 12% 10%, rgba(245, 130, 32, .18), transparent 38%);
  border: 1px solid rgba(217, 221, 226, .82);
  border-top: 5px solid var(--tooltip-color, var(--orange));
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(31, 33, 37, .18), 0 1px 0 rgba(255, 255, 255, .7) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(var(--tooltip-y)) scale(var(--tooltip-scale));
  transform-origin: 24px 24px;
  transition:
    opacity .46s ease,
    visibility .46s ease,
    transform .56s cubic-bezier(.34, 1.45, .64, 1);
  backdrop-filter: blur(12px);
}

.performance-hover-tooltip::before {
  content: "";
  position: absolute;
  left: var(--tooltip-arrow-x);
  top: 28px;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 248, 242, .98));
  border-left: 1px solid rgba(217, 221, 226, .82);
  border-bottom: 1px solid rgba(217, 221, 226, .82);
  transform: rotate(var(--tooltip-arrow-rotate));
  box-shadow: -4px 4px 12px rgba(31, 33, 37, .04);
}

.performance-hover-tooltip.is-visible {
  --tooltip-scale: 1;
  --tooltip-y: 0;
  opacity: 1;
  visibility: visible;
}

.performance-hover-tooltip.is-leaving {
  --tooltip-scale: .78;
  --tooltip-y: -14px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .34s ease,
    visibility .34s ease,
    transform .42s cubic-bezier(.45, 0, .75, .2);
}

.performance-hover-tooltip h4 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 14px;
  color: var(--tooltip-color, var(--orange));
  font-size: clamp(1.16rem, 1.42vw, 1.48rem);
  font-weight: 800;
  line-height: 1.08;
}

.performance-hover-tooltip h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: currentColor;
}

.performance-hover-tooltip ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.performance-hover-tooltip li {
  position: relative;
  padding-left: 18px;
  color: #42474d;
  font-size: .92rem;
  line-height: 1.42;
}

.performance-hover-tooltip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tooltip-color, var(--orange));
}

.performance-hover-tooltip strong {
  color: var(--tooltip-color, var(--orange));
  font-weight: 900;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 18px 56px rgba(31, 33, 37, .06);
}

.section-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  height: clamp(250px, 21vw, 300px);
  min-height: 230px;
  padding: 32px 28px;
  background: var(--paper);
  color: var(--ink);
  transition: box-shadow .42s cubic-bezier(.22, 1, .36, 1), color .34s ease;
}

.section-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -34%;
  bottom: -42%;
  width: 152%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-gradient);
  transform: scale(0);
  transform-origin: center;
  transition: transform .52s cubic-bezier(.32, .72, .34, 1);
}

.section-card > * {
  position: relative;
  z-index: 2;
}

.section-card:hover,
.section-card:focus-visible {
  color: #fff;
  box-shadow: 0 18px 36px rgba(104, 44, 0, .12);
}

.section-card:hover::before,
.section-card:focus-visible::before {
  transform: scale(1.28);
}

.section-card h3 {
  font-size: clamp(1.24rem, 1.9vw, 1.58rem);
  line-height: 1.08;
  text-align: center;
  transition: transform .86s cubic-bezier(.22, 1, .36, 1);
}

.section-card p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.38;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(16px);
  text-align: center;
  transition: color .58s ease, max-height .94s cubic-bezier(.22, 1, .36, 1), margin-top .94s cubic-bezier(.22, 1, .36, 1), opacity .64s ease .08s, transform .94s cubic-bezier(.22, 1, .36, 1);
}

.section-card:hover h3,
.section-card:focus-visible h3 {
  transform: translateY(-10px);
}

.section-card:hover p,
.section-card:focus-visible p {
  color: rgba(255, 255, 255, .88);
  max-height: 220px;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 120px 0 72px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero::before {
  background: var(--page-bg) center / cover;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(60, 25, 5, .88), rgba(60, 25, 5, .42)),
    linear-gradient(135deg, rgba(245, 130, 32, .58), rgba(204, 79, 24, .52));
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 7rem);
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .82);
}

.value-hero {
  position: relative;
  --value-subject-scale: 1.18;
  --value-subject-width: min(calc(49vw * var(--value-subject-scale)), calc(680px * var(--value-subject-scale)));
  --value-subject-max-height: min(calc(65vh * var(--value-subject-scale)), calc(640px * var(--value-subject-scale)));
  --value-subject-right: clamp(6px, 2vw, 32px);
  overflow: hidden;
  padding: 0;
  background: #e5e5e5;
}

.value-hero-stage {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 66px);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background: #e5e5e5;
}

.value-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 0;
  width: 76%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
}

.value-hero-illustration {
  filter: saturate(1.04) contrast(1.02);
}

.value-hero-photo {
  z-index: 1;
  filter: saturate(.95) contrast(.98) brightness(.95);
}

.value-panel {
  position: absolute;
  left: var(--entry-wash-left);
  top: clamp(110px, 18vh, 160px);
  z-index: 2;
  display: grid;
  align-items: center;
  width: var(--entry-wash-width);
  min-height: clamp(390px, 48vh, 500px);
  padding: clamp(44px, 5vw, 72px) clamp(44px, 5vw, 68px) clamp(104px, 9vw, 132px);
  color: #fff;
  overflow: visible;
  background: var(--entry-wash-gradient);
  box-shadow: none;
}

.value-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 58%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .12), transparent 34%);
  pointer-events: none;
}

.value-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.value-copy h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.65rem, 4.05vw, 4.75rem);
  font-weight: 300;
  line-height: 1;
}

.value-copy h1 span,
.value-copy h1 strong {
  display: block;
}

.value-copy h1 span {
  font-weight: 200;
}

.value-copy h1 strong {
  font-weight: 800;
}

.value-copy p {
  max-width: 390px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.94rem, 1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.42;
  text-align: left;
}

.value-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(300px, 54%, 455px);
  width: clamp(210px, 24vw, 360px);
  height: clamp(300px, 36vw, 500px);
  opacity: .72;
  transform: translate(-50%, -43%);
  pointer-events: none;
}

.value-orbit span {
  position: absolute;
  width: clamp(16px, 2vw, 28px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.value-orbit span:nth-child(1) { left: 4%; top: 4%; }
.value-orbit span:nth-child(2) { left: 22%; top: 14%; }
.value-orbit span:nth-child(3) { left: 40%; top: 25%; }
.value-orbit span:nth-child(4) { left: 58%; top: 36%; }
.value-orbit span:nth-child(5) { left: 76%; top: 47%; }
.value-orbit span:nth-child(6) { left: 58%; top: 58%; }
.value-orbit span:nth-child(7) { left: 40%; top: 69%; }
.value-orbit span:nth-child(8) { left: 22%; top: 80%; }
.value-orbit span:nth-child(9) { left: 4%; top: 91%; }
.value-orbit span:nth-child(n+10) { display: none; }

.value-orbit::after {
  content: "";
  position: absolute;
  left: calc(4% + clamp(8px, 1vw, 14px));
  top: calc(91% + clamp(16px, 2vw, 28px));
  z-index: 2;
  width: clamp(20px, 2.1vw, 30px);
  height: clamp(18px, 1.8vw, 26px);
  background: rgba(255, 255, 255, .72);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 4px 8px rgba(80, 0, 0, .16));
  transform: translateX(-50%);
}

.value-people {
  position: absolute;
  right: var(--value-subject-right, var(--hero-subject-right));
  bottom: 0;
  z-index: 4;
  width: var(--value-subject-width, var(--hero-subject-width));
  max-height: var(--value-subject-max-height, var(--hero-subject-max-height));
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}

.value-scroll-cue {
  left: clamp(44px, 5vw, 68px);
  bottom: clamp(32px, 4.2vw, 52px);
  transform: none;
  color: var(--deep-orange);
  border-color: rgba(255, 255, 255, .55);
  background: #fff;
  box-shadow: 0 12px 28px rgba(80, 0, 0, .24), 0 0 0 7px rgba(255, 255, 255, .18);
}

.value-scroll-cue.is-hidden {
  transform: translateY(12px);
}

.social-hero {
  position: relative;
  --entry-wash-overlap: clamp(88px, 11vw, 168px);
  --social-subject-scale: 1.18;
  --social-subject-width: min(calc(49vw * var(--social-subject-scale)), calc(680px * var(--social-subject-scale)));
  --social-subject-max-height: min(calc(65vh * var(--social-subject-scale)), calc(640px * var(--social-subject-scale)));
  /* Ligero desplazamiento a la izquierda (más right = más lejos del borde derecho) */
  --social-subject-right: clamp(28px, 4.8vw, 68px);
  overflow: hidden;
  padding: 0;
  background: #e5e5e5;
}

.social-hero-stage {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 66px);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, #f3f3f3 0 var(--entry-grey-plate), #e4e4e2 var(--entry-grey-plate) 100%);
}

.social-hero-stage::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: var(--entry-grey-plate);
  height: clamp(88px, 12vh, 140px);
  background: #ececec;
  pointer-events: none;
}

.social-hero-bg,
.social-hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--entry-grey-plate);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  pointer-events: none;
}

.social-hero-bg {
  z-index: 0;
  background-image: url("../img/social/social-bg.jpg");
}

.social-hero-photo {
  z-index: 1;
  background-image: url("../img/social/social-photo-transition.jpg");
  filter: saturate(1.04) contrast(1.02);
}

.social-hero-wash {
  position: absolute;
  left: max(0px, calc(var(--entry-grey-plate) - var(--entry-wash-overlap)));
  top: clamp(110px, 18vh, 160px);
  z-index: 3;
  display: grid;
  align-items: center;
  width: var(--entry-wash-width);
  min-height: clamp(390px, 48vh, 500px);
  padding: clamp(44px, 5vw, 72px) clamp(44px, 5vw, 68px) clamp(104px, 9vw, 132px);
  color: #fff;
  overflow: visible;
  background: var(--entry-wash-gradient);
  box-shadow: none;
}

.social-hero-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 58%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .12), transparent 34%);
  pointer-events: none;
}

.social-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.social-hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 4.05vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
}

.social-hero-copy p {
  max-width: 390px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.94rem, 1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.42;
  text-align: left;
}

.social-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(300px, 54%, 455px);
  width: clamp(210px, 24vw, 360px);
  height: clamp(300px, 36vw, 500px);
  opacity: .72;
  transform: translate(-50%, -43%);
  pointer-events: none;
}

.social-orbit span {
  position: absolute;
  width: clamp(16px, 2vw, 28px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.social-orbit span:nth-child(1) { left: 4%; top: 4%; }
.social-orbit span:nth-child(2) { left: 22%; top: 14%; }
.social-orbit span:nth-child(3) { left: 40%; top: 25%; }
.social-orbit span:nth-child(4) { left: 58%; top: 36%; }
.social-orbit span:nth-child(5) { left: 76%; top: 47%; }
.social-orbit span:nth-child(6) { left: 58%; top: 58%; }
.social-orbit span:nth-child(7) { left: 40%; top: 69%; }
.social-orbit span:nth-child(8) { left: 22%; top: 80%; }
.social-orbit span:nth-child(9) { left: 4%; top: 91%; }

.social-orbit::after {
  content: "";
  position: absolute;
  left: calc(4% + clamp(8px, 1vw, 14px));
  top: calc(91% + clamp(16px, 2vw, 28px));
  z-index: 2;
  width: clamp(20px, 2.1vw, 30px);
  height: clamp(18px, 1.8vw, 26px);
  background: rgba(255, 255, 255, .72);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 4px 8px rgba(80, 0, 0, .16));
  transform: translateX(-50%);
}

.social-hero-visual {
  position: absolute;
  right: var(--social-subject-right, var(--hero-subject-right));
  bottom: 0;
  z-index: 4;
  width: var(--social-subject-width, var(--hero-subject-width));
  max-height: var(--social-subject-max-height, var(--hero-subject-max-height));
  overflow: visible;
  filter: drop-shadow(0 26px 42px rgba(61, 0, 0, .16));
  pointer-events: none;
}

.social-hero-visual img {
  width: 100%;
  height: auto;
  max-height: var(--social-subject-max-height, var(--hero-subject-max-height));
  object-fit: contain;
  object-position: center bottom;
}

.social-scroll-cue {
  left: clamp(44px, 5vw, 68px);
  bottom: clamp(32px, 4.2vw, 52px);
  transform: none;
  color: var(--deep-orange);
  border-color: rgba(255, 255, 255, .55);
  background: #fff;
  box-shadow: 0 12px 28px rgba(80, 0, 0, .24), 0 0 0 7px rgba(255, 255, 255, .18);
}

.social-scroll-cue.is-hidden {
  transform: translateY(12px);
}

@media (prefers-reduced-motion: reduce) {
  .social-hero-photo {
    display: none;
  }
}

.ambiental-hero {
  position: relative;
  --entry-wash-overlap: clamp(88px, 11vw, 168px);
  --ambiental-subject-scale: 1.18;
  --ambiental-subject-width: min(calc(49vw * var(--ambiental-subject-scale)), calc(680px * var(--ambiental-subject-scale)));
  --ambiental-subject-max-height: min(calc(65vh * var(--ambiental-subject-scale)), calc(640px * var(--ambiental-subject-scale)));
  /* ~90px más a la izquierda respecto al ajuste previo */
  --ambiental-subject-right: clamp(114px, calc(4vw + 90px), 150px);
  overflow: hidden;
  padding: 0;
  background: #e5e5e5;
}

.ambiental-hero-stage {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 66px);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, #f3f3f3 0 var(--entry-grey-plate), #e4e4e2 var(--entry-grey-plate) 100%);
}

.ambiental-hero-stage::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: var(--entry-grey-plate);
  height: clamp(88px, 12vh, 140px);
  background: #ececec;
  pointer-events: none;
}

.ambiental-hero-bg,
.ambiental-hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--entry-grey-plate);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  pointer-events: none;
}

.ambiental-hero-bg {
  z-index: 0;
  background-image: url("../img/ambiental/ambiental-bg.jpg");
}

.ambiental-hero-photo {
  z-index: 1;
  background-image: url("../img/ambiental/bg-ambiental-photo-transition.jpg");
  filter: saturate(1.04) contrast(1.02);
}

.ambiental-hero-wash {
  position: absolute;
  left: max(0px, calc(var(--entry-grey-plate) - var(--entry-wash-overlap)));
  top: clamp(110px, 18vh, 160px);
  z-index: 3;
  display: grid;
  align-items: center;
  width: var(--entry-wash-width);
  min-height: clamp(390px, 48vh, 500px);
  padding: clamp(44px, 5vw, 72px) clamp(44px, 5vw, 68px) clamp(104px, 9vw, 132px);
  color: #fff;
  overflow: visible;
  background: var(--entry-wash-gradient);
  box-shadow: none;
}

.ambiental-hero-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 58%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .12), transparent 34%);
  pointer-events: none;
}

.ambiental-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.ambiental-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 4.05vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
}

.ambiental-hero-copy p {
  max-width: 390px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.94rem, 1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.42;
  text-align: left;
}

.ambiental-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(300px, 54%, 455px);
  width: clamp(210px, 24vw, 360px);
  height: clamp(300px, 36vw, 500px);
  opacity: .72;
  transform: translate(-50%, -43%);
  pointer-events: none;
}

.ambiental-orbit span {
  position: absolute;
  width: clamp(16px, 2vw, 28px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.ambiental-orbit span:nth-child(1) { left: 4%; top: 4%; }
.ambiental-orbit span:nth-child(2) { left: 22%; top: 14%; }
.ambiental-orbit span:nth-child(3) { left: 40%; top: 25%; }
.ambiental-orbit span:nth-child(4) { left: 58%; top: 36%; }
.ambiental-orbit span:nth-child(5) { left: 76%; top: 47%; }
.ambiental-orbit span:nth-child(6) { left: 58%; top: 58%; }
.ambiental-orbit span:nth-child(7) { left: 40%; top: 69%; }
.ambiental-orbit span:nth-child(8) { left: 22%; top: 80%; }
.ambiental-orbit span:nth-child(9) { left: 4%; top: 91%; }

.ambiental-hero-visual {
  position: absolute;
  right: var(--ambiental-subject-right, var(--hero-subject-right));
  bottom: 0;
  z-index: 4;
  width: var(--ambiental-subject-width, var(--hero-subject-width));
  max-height: var(--ambiental-subject-max-height, var(--hero-subject-max-height));
  overflow: visible;
  filter: drop-shadow(0 26px 42px rgba(61, 0, 0, .16));
  pointer-events: none;
}

.ambiental-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--ambiental-subject-max-height, var(--hero-subject-max-height));
  object-fit: contain;
  object-position: right bottom;
}

.ambiental-scroll-cue {
  left: clamp(44px, 5vw, 68px);
  bottom: clamp(32px, 4.2vw, 52px);
  transform: none;
  color: var(--deep-orange);
  border-color: rgba(255, 255, 255, .55);
  background: #fff;
  box-shadow: 0 12px 28px rgba(80, 0, 0, .24), 0 0 0 7px rgba(255, 255, 255, .18);
}

.ambiental-scroll-cue.is-hidden {
  transform: translateY(12px);
}

@media (prefers-reduced-motion: reduce) {
  .ambiental-hero-photo {
    display: none;
  }
}

#gestion-ambiental {
  scroll-margin-top: 92px;
}

.ambiental-gestion-section {
  padding: clamp(48px, 5.5vw, 80px) 0 clamp(56px, 6vw, 88px);
  background: #fff;
}

.ambiental-gestion-layout {
  display: grid;
  gap: clamp(28px, 3.4vw, 44px);
}

.ambiental-gestion-head {
  display: grid;
  gap: 0;
}

.ambiental-gestion-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.ambiental-gestion-title span {
  display: inline;
  font-weight: 300;
}

.ambiental-gestion-title strong {
  display: inline;
  color: var(--editorial-accent);
  font-weight: 800;
}

.ambiental-gestion-head .ambiental-gestion-title {
  margin-bottom: clamp(22px, 2.8vw, 34px);
}

.ambiental-gestion-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
}

.ambiental-gestion-intro > p {
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.68;
}

.ambiental-gestion-callout {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--editorial-accent);
  background: #f7f7f6;
}

.ambiental-gestion-callout p {
  margin: 0;
  color: #111820;
  font-size: clamp(.9rem, .98vw, 1rem);
  line-height: 1.55;
}

.ambiental-gestion-diagram {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: clamp(12px, 1.6vw, 20px);
  background: #ebebeb;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.ambiental-gestion-row {
  --node-size: clamp(132px, 15.2vw, 168px);
  --node-overlap: 11px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.ambiental-gestion-node + .ambiental-gestion-node {
  margin-left: calc(var(--node-overlap) * -1);
}

.ambiental-gestion-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 var(--node-size);
  width: var(--node-size);
  min-width: 0;
  aspect-ratio: 1;
  margin: 0;
  padding: 14px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--node-color, #005CA6);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  transform-origin: center center;
}

.ambiental-gestion-node::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  width: 17px;
  height: 18px;
  background: #fff;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
  pointer-events: none;
}

.ambiental-gestion-node--last::after {
  display: none;
}

.ambiental-gestion-node--1,
.ambiental-gestion-node--5 {
  z-index: 4;
}

.ambiental-gestion-node--2,
.ambiental-gestion-node--6 {
  z-index: 3;
}

.ambiental-gestion-node--3,
.ambiental-gestion-node--7 {
  z-index: 2;
}

.ambiental-gestion-node--4,
.ambiental-gestion-node--8 {
  z-index: 1;
}

.ambiental-gestion-node span {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0 14px;
  color: #fff;
  font-size: clamp(.68rem, .82vw, .84rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}

.ambiental-gestion-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.ambiental-gestion-card {
  display: grid;
  gap: 14px;
  align-content: start;
  height: 100%;
  margin: 0;
  padding: clamp(18px, 2vw, 26px);
  background: #f7f7f6;
  box-sizing: border-box;
}

.ambiental-gestion-card-title {
  margin: 0;
  color: var(--editorial-accent);
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
}

.ambiental-gestion-card--incidents .ambiental-gestion-card-title {
  margin-bottom: 2px;
}

.ambiental-gestion-card--strategy .ambiental-gestion-card-title {
  color: #EF4823;
}

.ambiental-gestion-card p {
  margin: 0;
  color: #111820;
  font-size: clamp(.9rem, .98vw, 1rem);
  line-height: 1.6;
}

.ambiental-gestion-risks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ambiental-gestion-risk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  background: #005CA6;
  color: #fff;
  transition: filter .25s ease, box-shadow .25s ease, transform .25s ease;
}

.ambiental-gestion-risk-label {
  font-size: clamp(.88rem, .96vw, 1rem);
  font-weight: 700;
  text-align: center;
}

.ambiental-gestion-risk-dots {
  display: flex;
  flex-direction: column;
  gap: 3px;
  transform: translateX(2px);
}

.ambiental-gestion-risk-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
}

.ambiental-gestion-risk-dots i:nth-child(1) { transform: translateX(0); }
.ambiental-gestion-risk-dots i:nth-child(2) { transform: translateX(2px); }
.ambiental-gestion-risk-dots i:nth-child(3) { transform: translateX(4px); }
.ambiental-gestion-risk-dots i:nth-child(4) { transform: translateX(2px); }
.ambiental-gestion-risk-dots i:nth-child(5) { transform: translateX(0); }

.ambiental-gestion-risk-letter {
  min-width: 1.2ch;
  color: rgba(126, 200, 232, .95);
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.ambiental-gestion-risk:hover,
.ambiental-gestion-risk:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 8px 18px rgba(0, 92, 166, .28);
  outline: none;
  transform: translateY(-1px);
}

.ambiental-gestion-table-wrap {
  overflow-x: auto;
}

.ambiental-gestion-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(.78rem, .86vw, .88rem);
}

.ambiental-gestion-table th,
.ambiental-gestion-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(66, 130, 222, .35);
  vertical-align: middle;
}

.ambiental-gestion-table thead th {
  color: #111820;
  font-weight: 700;
  text-align: center;
  background: #ececea;
}

.ambiental-gestion-table thead th:first-child {
  text-align: left;
}

.ambiental-gestion-table tbody th {
  color: #111820;
  font-weight: 600;
  text-align: left;
  background: transparent;
}

.ambiental-gestion-table tbody td {
  color: #111820;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.ambiental-gestion-notes {
  margin: 0;
  padding-left: 18px;
  color: #6f7379;
  font-size: clamp(.72rem, .8vw, .82rem);
  line-height: 1.5;
}

.ambiental-gestion-notes li + li {
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .ambiental-gestion-risk {
    transition: none;
  }

  .ambiental-gestion-risk:hover,
  .ambiental-gestion-risk:focus-visible {
    transform: none;
  }
}

#uso-responsable-agua {
  scroll-margin-top: 92px;
}

.ambiental-agua-section {
  padding: clamp(48px, 5.5vw, 80px) 0 clamp(56px, 6vw, 88px);
  background:
    linear-gradient(180deg, rgba(0, 92, 166, .04) 0%, rgba(0, 92, 166, 0) 220px),
    #fff;
}

.ambiental-agua-shell {
  display: grid;
  gap: clamp(22px, 2.6vw, 32px);
}

.ambiental-agua-head {
  display: grid;
  gap: 0;
  width: 100%;
}

.ambiental-agua-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.ambiental-agua-title span {
  display: inline;
  font-weight: 300;
}

.ambiental-agua-title strong {
  display: inline;
  color: var(--editorial-accent);
  font-weight: 800;
}

.ambiental-agua-head .ambiental-agua-title {
  margin-bottom: clamp(22px, 2.8vw, 34px);
}

.ambiental-agua-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.ambiental-agua-left,
.ambiental-agua-right {
  display: grid;
  gap: clamp(18px, 2.2vw, 26px);
  align-content: start;
  height: 100%;
}

.ambiental-agua-intro,
.ambiental-agua-strategy p {
  margin: 0;
  color: #111820;
  font-size: clamp(.96rem, 1.05vw, 1.08rem);
  line-height: 1.65;
}

.ambiental-agua-strategy p {
  max-width: 550px;
}

.ambiental-agua-subtitle {
  margin: 0 0 12px;
  color: var(--editorial-accent);
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
}

.ambiental-agua-strategy .ambiental-agua-subtitle,
.ambiental-agua-metrics-head .ambiental-agua-subtitle {
  color: #EF4823;
}

.ambiental-agua-policies-block {
  display: grid;
  gap: clamp(18px, 2.1vw, 28px);
}

.ambiental-agua-strategy {
  display: grid;
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 36px);
}

.ambiental-agua-policies {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.2vw, 18px);
  width: 100%;
  max-width: min(100%, 620px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ambiental-agua-policy {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(108px, 12vw, 136px);
  aspect-ratio: 1;
  margin-left: 0;
  padding: 12px 10px;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(.64rem, .74vw, .78rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 18px rgba(245, 130, 32, .22);
  transition: filter .28s ease, transform .28s ease, box-shadow .28s ease;
}

.ambiental-agua-policy:first-child {
  margin-left: 0;
}

.ambiental-agua-policy span {
  display: block;
  text-wrap: balance;
}

.ambiental-agua-policy--1 { z-index: 4; background: #f58220; }
.ambiental-agua-policy--2 { z-index: 3; background: #f15922; }
.ambiental-agua-policy--3 { z-index: 2; background: #e84820; }
.ambiental-agua-policy--4 { z-index: 1; background: #d94218; }

.ambiental-agua-policy:hover,
.ambiental-agua-policy:focus-visible {
  z-index: 5;
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(245, 130, 32, .28);
  outline: none;
  transform: translateY(-2px);
}

.ambiental-agua-cycle {
  --agua-t: #4282de;
  --agua-c: #0da48e;
  --agua-g: #00daeb;
  display: grid;
  gap: 16px;
  justify-items: stretch;
  align-content: start;
}

.ambiental-agua-diagram {
  --agua-size: min(100%, 400px);
  --agua-sphere-size: clamp(124px, 22vw, 156px);
  --agua-center-size: clamp(92px, 16.5vw, 112px);
  --agua-orbit-size: clamp(158px, 26vw, 186px);
  position: relative;
  width: var(--agua-size);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
  box-sizing: border-box;
  isolation: isolate;
}

.ambiental-agua-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: var(--agua-orbit-size);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ambiental-agua-orbit-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.ambiental-agua-orbit-spin::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid #fff;
  border-radius: 50%;
}

.ambiental-agua-orbit-arc {
  --arc-color: #fff;
  --arc-start: 0deg;
  --arrow-rotate: 0deg;
  position: absolute;
  inset: 7px;
  border-radius: 50%;
}

.ambiental-agua-orbit-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from var(--arc-start), transparent 0deg 16deg, var(--arc-color) 16deg 98deg, transparent 98deg 360deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
}

.ambiental-agua-orbit-arc::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--arc-color);
  transform: translate(-50%, -50%) rotate(var(--arrow-rotate));
}

.ambiental-agua-orbit-arc--t {
  --arc-color: var(--agua-t);
  --arc-start: 286deg;
  --arrow-rotate: 24deg;
}

.ambiental-agua-orbit-arc--t::after {
  left: 70.3%;
  top: 6.4%;
}

.ambiental-agua-orbit-arc--c {
  --arc-color: var(--agua-c);
  --arc-start: 46deg;
  --arrow-rotate: 144deg;
}

.ambiental-agua-orbit-arc--c::after {
  left: 79.4%;
  top: 88.5%;
}

.ambiental-agua-orbit-arc--g {
  --arc-color: var(--agua-g);
  --arc-start: 166deg;
  --arrow-rotate: 264deg;
}

.ambiental-agua-orbit-arc--g::after {
  left: 1%;
  top: 52.5%;
}

.ambiental-agua-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: var(--agua-center-size);
  height: var(--agua-center-size);
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 32, .1);
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}

.ambiental-agua-center-text {
  margin: 0;
  max-width: 9.5ch;
  color: #111820;
  font-size: clamp(.42rem, .95vw, .8rem);
  font-weight: 700;
  line-height: 1.1;
}

.ambiental-agua-sphere {
  --agua-sphere-bg: var(--agua-t);
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: var(--agua-sphere-size);
  height: var(--agua-sphere-size);
  padding: 16px 12px;
  border: 0;
  border-radius: 50%;
  background: var(--agua-sphere-bg);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 36px rgba(17, 24, 32, .14);
  transition: filter .34s ease, box-shadow .34s ease, opacity .34s ease;
}

.ambiental-agua-sphere--t {
  --agua-sphere-bg: var(--agua-t);
  left: 50%;
  top: 25%;
}

.ambiental-agua-sphere--g {
  --agua-sphere-bg: var(--agua-g);
  left: 28%;
  top: 68%;
}

.ambiental-agua-sphere--c {
  --agua-sphere-bg: var(--agua-c);
  left: 72%;
  top: 68%;
}

.ambiental-agua-sphere-index {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  transition: font-size .34s ease, opacity .34s ease, transform .34s ease;
}

.ambiental-agua-sphere--t .ambiental-agua-sphere-index {
  transform: translateY(-12px);
}

.ambiental-agua-sphere--g .ambiental-agua-sphere-index {
  transform: translate(-10px, 8px);
}

.ambiental-agua-sphere--c .ambiental-agua-sphere-index {
  transform: translate(10px, 8px);
}

.ambiental-agua-sphere strong {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: #fff;
  font-size: clamp(.62rem, 1.2vw, .74rem);
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
  transform: translateY(8px);
  transition: opacity .34s ease, transform .34s ease, max-height .34s ease, margin-top .34s ease;
}

.ambiental-agua-sphere:hover,
.ambiental-agua-sphere:focus-visible,
.ambiental-agua-sphere.is-active {
  z-index: 6;
  filter: saturate(1.06) brightness(1.03);
  box-shadow: 0 20px 44px rgba(17, 24, 32, .18);
}

.ambiental-agua-sphere:hover .ambiental-agua-sphere-index,
.ambiental-agua-sphere:focus-visible .ambiental-agua-sphere-index,
.ambiental-agua-sphere.is-active .ambiental-agua-sphere-index {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  opacity: .55;
}

.ambiental-agua-sphere--t:hover .ambiental-agua-sphere-index,
.ambiental-agua-sphere--t:focus-visible .ambiental-agua-sphere-index,
.ambiental-agua-sphere--t.is-active .ambiental-agua-sphere-index {
  transform: translateY(-6px);
}

.ambiental-agua-sphere--g:hover .ambiental-agua-sphere-index,
.ambiental-agua-sphere--g:focus-visible .ambiental-agua-sphere-index,
.ambiental-agua-sphere--g.is-active .ambiental-agua-sphere-index {
  transform: translate(-6px, 4px);
}

.ambiental-agua-sphere--c:hover .ambiental-agua-sphere-index,
.ambiental-agua-sphere--c:focus-visible .ambiental-agua-sphere-index,
.ambiental-agua-sphere--c.is-active .ambiental-agua-sphere-index {
  transform: translate(6px, 4px);
}

.ambiental-agua-sphere:hover strong,
.ambiental-agua-sphere:focus-visible strong,
.ambiental-agua-sphere.is-active strong {
  max-height: 4.6em;
  margin-top: 4px;
  opacity: 1;
  transform: translateY(0);
}

.ambiental-agua-sphere:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .75);
  outline-offset: 4px;
}

.ambiental-agua-diagram.is-dimmed .ambiental-agua-sphere:not(.is-active):not(:hover):not(:focus-visible) {
  filter: saturate(.85) brightness(.92);
  opacity: .78;
}

.ambiental-agua-detail {
  width: 100%;
  min-height: 120px;
  padding: 16px 18px;
  background: #f7f7f6;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 32, .05);
  box-sizing: border-box;
}

.ambiental-agua-detail-idle {
  margin: 0;
  color: #6f7379;
  font-size: clamp(.88rem, .96vw, 1rem);
  line-height: 1.5;
}

.ambiental-agua-detail-title {
  margin: 0 0 8px;
  color: var(--agua-g);
  font-size: clamp(.98rem, 1.08vw, 1.1rem);
  font-weight: 800;
  line-height: 1.25;
}

.ambiental-agua-cycle:has(.ambiental-agua-sphere--t.is-active) .ambiental-agua-detail-title {
  color: var(--agua-t);
}

.ambiental-agua-cycle:has(.ambiental-agua-sphere--g.is-active) .ambiental-agua-detail-title {
  color: var(--agua-g);
}

.ambiental-agua-cycle:has(.ambiental-agua-sphere--c.is-active) .ambiental-agua-detail-title {
  color: var(--agua-c);
}

.ambiental-agua-detail-copy {
  margin: 0;
  color: #111820;
  font-size: clamp(.88rem, .96vw, 1rem);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .ambiental-agua-policy,
  .ambiental-agua-sphere,
  .ambiental-agua-sphere-index,
  .ambiental-agua-sphere strong {
    transition: none;
  }

  .ambiental-agua-policy:hover,
  .ambiental-agua-policy:focus-visible {
    transform: none;
  }

  .ambiental-agua-consumo-gear {
    animation: none;
    transform: translate(-50%, -50%);
  }
}

.ambiental-agua-metrics {
  --agua-fresca: #00DAEB;
  --agua-salobre: #4282DE;
  --agua-residual: #0DA48E;
  --agua-reutilizacion: #00DAEB;
  --agua-consumo: #4282DE;
  --agua-porcentaje: #363583;
  display: grid;
  gap: clamp(28px, 3.4vw, 44px);
  margin-top: clamp(36px, 4.2vw, 56px);
  padding-top: clamp(28px, 3.2vw, 40px);
  border-top: 1px solid rgba(17, 24, 32, .08);
}

.ambiental-agua-metrics-head {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
}

.ambiental-agua-metrics-head .ambiental-agua-subtitle {
  margin: 0;
}

.ambiental-agua-metrics-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 36px);
  align-items: start;
}

.ambiental-agua-metrics-copy p,
.ambiental-agua-metrics-copy-col p {
  margin: 0;
  color: #111820;
  font-size: clamp(.96rem, 1.05vw, 1.08rem);
  line-height: 1.65;
}

.ambiental-agua-metrics-copy-col {
  display: grid;
  gap: 14px;
}

.ambiental-agua-balance {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.ambiental-agua-balance-caption {
  display: grid;
  gap: 2px;
}

.ambiental-agua-balance-caption .chart-title,
.ambiental-agua-balance-title {
  margin-bottom: 2px;
}

.ambiental-agua-balance-media {
  display: block;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  overflow: hidden;
}

.ambiental-agua-balance-svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.ambiental-agua-metrics-charts {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.ambiental-agua-eff-card {
  min-width: 0;
}

.ambiental-agua-eff-head {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.ambiental-agua-eff-legend {
  width: 100%;
}

.ambiental-agua-eff-legend-line i {
  width: 18px;
  height: 0;
  border-radius: 0;
  border-top: 2px solid var(--agua-porcentaje, #363583);
  background:
    radial-gradient(circle at center, var(--agua-porcentaje, #363583) 0 2.5px, transparent 2.6px);
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: none;
}

.ambiental-agua-eff-chart.ethics-bar-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  align-items: end;
  gap: clamp(12px, 1.8vw, 24px);
  max-width: min(100%, 550px);
  min-height: calc(var(--ethics-chart-height) + 96px);
  margin-inline: auto;
  padding: 48px clamp(16px, 2.4vw, 32px) 0;
}

.ambiental-agua-eff-chart.ethics-bar-chart::before {
  top: 48px;
  right: clamp(16px, 2.4vw, 32px);
  left: clamp(16px, 2.4vw, 32px);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .28) 55%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(
      180deg,
      rgba(17, 24, 32, .06) 0,
      rgba(17, 24, 32, .06) 1px,
      transparent 1px,
      transparent 25%
    );
}

.ambiental-agua-eff-year {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-width: 0;
}

.ambiental-agua-eff-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: var(--ethics-chart-height);
}

.ambiental-agua-eff-stack {
  display: flex;
  flex-direction: column;
  width: clamp(24px, 1.55vw, 20px);
  height: calc(var(--ethics-chart-height) * var(--bar-scale, 1));
  overflow: hidden;
  border-radius: 6px 6px 4px 4px;
}

.ambiental-agua-eff-seg {
  display: grid;
  place-items: center;
  flex: var(--seg-flex, 1) 1 0;
  min-height: 0;
  color: #111820;
  transform-origin: bottom center;
}

.ambiental-agua-eff-seg--reuse {
  background: var(--agua-reutilizacion, #00DAEB);
  border-radius: 6px 6px 0 0;
}

.ambiental-agua-eff-seg--consumo {
  background: var(--agua-consumo, #4282DE);
  border-radius: 0 0 4px 4px;
}

.ambiental-agua-eff-seg b {
  font-size: clamp(.6rem, .62vw, .64rem);
  font-weight: 400;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .02em;
  color: #111820;
}

.ambiental-agua-eff-year .ethics-bar-label {
  margin: 0;
  color: #4e5359;
  font-size: clamp(.72rem, .78vw, .82rem);
  font-weight: 400;
}

.ambiental-agua-eff-pct-labels {
  position: absolute;
  z-index: 5;
  top: 16%;
  right: clamp(16px, 2.4vw, 32px);
  left: clamp(16px, 2.4vw, 32px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
  pointer-events: none;
  color: #363583;
  font-size: clamp(.68rem, .76vw, .8rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.ambiental-agua-eff-pct-labels span {
  display: block;
  font-weight: 400;
}

.ambiental-agua-eff-pct-layer {
  position: absolute;
  z-index: 4;
  top: 48px;
  right: clamp(16px, 2.4vw, 32px);
  left: clamp(16px, 2.4vw, 32px);
  height: var(--ethics-chart-height);
  pointer-events: none;
}

.ambiental-agua-eff-pct-svg {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.ambiental-agua-eff-pct-line {
  fill: none;
}

.ambiental-agua-eff-pct-dot {
  fill: #363583;
}

.ambiental-agua-consumo-card {
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
  padding: clamp(22px, 2.4vw, 32px) clamp(18px, 2vw, 28px);
  border-radius: 2px;
  background: #ececea;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.ambiental-agua-consumo-card h3.chart-title.ambiental-agua-consumo-title {
  margin: 0 0 30px;
  text-align: center;
}

.ambiental-agua-consumo-chart {
  position: relative;
  width: min(230px, 100%);
  aspect-ratio: 1;
  margin: 12px auto 16px;
}

.ambiental-agua-consumo-pie,
.ambiental-agua-consumo-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.ambiental-agua-consumo-pie {
  --pie-cover: #ececea;
  cursor: pointer;
}

.ambiental-agua-consumo-wheel {
  background: conic-gradient(from 0deg, var(--segments));
  box-shadow: 0 16px 32px rgba(16, 24, 32, .1);
  transition: opacity .28s ease;
}

.ambiental-agua-consumo-pie.is-dimmed .ambiental-agua-consumo-wheel {
  opacity: .92;
}

.ambiental-agua-consumo-gear {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: ambientalAguaConsumoGearSpin 7.5s linear infinite;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
}

.ambiental-agua-consumo-gear::before,
.ambiental-agua-consumo-gear span {
  position: absolute;
  display: grid;
  border-radius: 50%;
  background: var(--pie-cover);
}

.ambiental-agua-consumo-gear::before {
  content: "";
  inset: 0;
  z-index: 2;
}

.ambiental-agua-consumo-gear span {
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 14%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-352%);
}

.ambiental-agua-consumo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 44%;
  aspect-ratio: 1;
  padding: 0 0 .36em;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--agua-fresca);
  font-size: clamp(.95rem, 1.1vw, 1.12rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  transition: color .28s ease;
  transform: translate(-50%, -50%);
}

@keyframes ambientalAguaConsumoGearSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ambiental-agua-consumo-legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.ambiental-agua-consumo-legend button {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-height: 44px;
  padding: 6px 8px;
  border: 0;
  border-radius: 6px;
  color: #3d4349;
  background: transparent;
  font: inherit;
  font-size: clamp(.78rem, .85vw, .88rem);
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.ambiental-agua-consumo-legend i {
  width: 11px;
  aspect-ratio: 1;
  margin-top: .22em;
  border-radius: 50%;
  background: var(--legend-color);
}

.ambiental-agua-consumo-legend button:hover,
.ambiental-agua-consumo-legend button:focus-visible {
  color: #101820;
  background: rgba(255, 255, 255, .55);
  outline: none;
}

.ambiental-agua-consumo-legend button.is-active {
  color: #101820;
  font-weight: 800;
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 3px 0 0 var(--legend-color);
}

.ambiental-agua-consumo-legend button:not(.is-active) {
  opacity: .72;
}

.ambiental-agua-consumo-legend button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* --- Conservación de la biodiversidad --- */
.ambiental-biodiversidad-section {
  padding: clamp(48px, 5.5vw, 80px) 0 clamp(56px, 6vw, 88px);
  background: #fff;
  scroll-margin-top: 92px;
}

.ambiental-biodiversidad-shell {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.ambiental-biodiversidad-head {
  display: grid;
  gap: 0;
  max-width: none;
}

.ambiental-biodiversidad-title {
  margin: 0 0 clamp(22px, 2.8vw, 34px);
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.ambiental-biodiversidad-title span {
  display: inline;
  font-weight: 300;
}

.ambiental-biodiversidad-title strong {
  display: inline;
  color: var(--editorial-accent);
  font-weight: 800;
}

.ambiental-biodiversidad-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.45fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.ambiental-biodiversidad-col-left {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  align-content: start;
  min-width: 0;
}

.ambiental-biodiversidad-copy p {
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
}

.ambiental-biodiversidad-tnfd {
  padding: 0;
  border-left: 0;
}

.ambiental-biodiversidad-tnfd-title {
  margin: 0 0 8px;
  color: var(--editorial-accent);
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.25;
}

.ambiental-biodiversidad-tnfd p {
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
}

.ambiental-biodiversidad-metrics {
  display: grid;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.ambiental-biodiversidad-metrics-title {
  margin: 0;
  color: #EF4823;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.25;
}

.ambiental-biodiversidad-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ambiental-biodiversidad-metric {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.ambiental-biodiversidad-metric-mark {
  display: block;
  width: 8px;
  height: 8px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--editorial-accent);
}

.ambiental-biodiversidad-metric p {
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
}

.ambiental-biodiversidad-pimvs {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  min-width: 0;
  padding: clamp(18px, 2vw, 28px) clamp(16px, 1.8vw, 26px);
  border-radius: 2px;
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(245, 130, 32, .98) 0%,
      rgba(235, 98, 28, .97) 48%,
      rgba(204, 79, 24, .98) 100%
    );
  box-shadow: 0 18px 42px rgba(35, 24, 18, .1);
}

.ambiental-biodiversidad-pimvs-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.ambiental-biodiversidad-pimvs-block {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.ambiental-biodiversidad-pimvs-block--intro,
.ambiental-biodiversidad-pimvs-block--protocol {
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, .8fr);
  gap: clamp(14px, 1.8vw, 22px);
  align-items: start;
}

.ambiental-biodiversidad-pimvs-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.ambiental-biodiversidad-pimvs-block p,
.ambiental-biodiversidad-pimvs-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.88rem, .96vw, .98rem);
  font-weight: 400;
  line-height: 1.48;
}

.ambiental-biodiversidad-pimvs-list {
  margin: 0;
  padding: 0 0 0 1.1em;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.84rem, .92vw, .94rem);
  font-weight: 400;
  line-height: 1.42;
}

.ambiental-biodiversidad-pimvs-list li + li {
  margin-top: .22em;
}

.ambiental-biodiversidad-pimvs-list i {
  font-style: italic;
}

.ambiental-biodiversidad-pimvs-list--species {
  columns: 2;
  column-gap: clamp(16px, 1.8vw, 24px);
}

.ambiental-biodiversidad-pimvs-list--species li {
  break-inside: avoid;
}

.ambiental-biodiversidad-photo {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(0, 0, 0, .12);
  outline: none;
  transition: transform .28s ease, box-shadow .28s ease;
}

.ambiental-biodiversidad-photo:hover,
.ambiental-biodiversidad-photo:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 24, 32, .22);
}

.ambiental-biodiversidad-photo:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.ambiental-biodiversidad-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}

.rights-section {
  scroll-margin-top: 92px;
  padding: clamp(40px, 4.8vw, 72px) 0 clamp(48px, 5.2vw, 80px);
  background:
    linear-gradient(180deg, rgba(245, 130, 32, .05) 0%, rgba(245, 130, 32, 0) 220px),
    #fff;
}

.rights-layout {
  display: grid;
  gap: clamp(28px, 3.2vw, 40px);
}

.rights-section-head {
  max-width: none;
}

.rights-section-head .rights-editorial-title {
  margin-bottom: 0;
}

.rights-editorial-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.rights-editorial-title strong,
.rights-editorial-title span {
  display: inline;
}

.rights-editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.rights-editorial-title span {
  font-weight: 300;
}

.rights-section p {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.rights-intro {
  max-width: 78ch;
}

.rights-process-panel {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
  margin: 0;
  padding: clamp(24px, 2.8vw, 36px);
  background: #ebebeb;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.rights-process-panel-head {
  display: grid;
  gap: 12px;
  max-width: 72ch;
}

.rights-panel-title {
  margin: 0 0 var(--subtitle-after);
  color: var(--editorial-accent);
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
}

.rights-panel-title:not(:first-child) {
  margin-top: var(--subtitle-before);
}

/* Subtítulos de gestión / métricas — color InDesign #EF4823, peso 700 del patrón aprobado */
#rights-process-heading,
.rights-detail-block:last-child > .rights-panel-title,
#people-process-heading,
.comunidades-mgmt-title,
.comunidades-metrics-title {
  color: #EF4823;
}

.rights-block-title {
  margin: 0;
  color: var(--deep-red);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  font-weight: 800;
  line-height: 1.15;
}

.rights-evaluation-title {
  margin: 0;
  color: var(--deep-red);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  font-weight: 400;
  line-height: 1.15;
}

.rights-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 42%);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.rights-detail-copy {
  display: grid;
  gap: clamp(24px, 2.8vw, 36px);
  align-content: start;
}

.rights-detail-block {
  display: grid;
  gap: 12px;
}

.rights-detail-text {
  display: grid;
  gap: 12px;
}

.rights-detail-visual {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0 0 76px 0;
  background: #f1f1f0;
  box-shadow: 0 22px 54px rgba(38, 38, 38, .12);
}

.rights-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.people-section {
  padding: clamp(36px, 4.2vw, 60px) 0 clamp(28px, 3vw, 40px);
  background: #fff;
}

.people-layout {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.people-section-head {
  display: grid;
  gap: 0;
  align-content: start;
}

.people-editorial-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.people-editorial-title.editorial-title strong,
.people-editorial-title.editorial-title span {
  display: inline;
}

.people-editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.people-editorial-title span {
  font-weight: 300;
}

.people-section p:not(.people-management-hint):not(.people-table-note):not(.people-highlight-text):not(.people-detail-subtitle):not(.ethics-bar-label) {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.people-intro {
  max-width: none;
  margin: 0;
}

.people-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "left metrics"
    "conocer conocer";
  gap: clamp(16px, 2vw, 22px);
  align-items: start;
  width: 100%;
}

.people-left-column {
  grid-area: left;
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  align-content: start;
}

.people-process-panel {
  display: grid;
  gap: clamp(14px, 1.8vw, 20px);
  margin: 0;
  padding: clamp(18px, 2.2vw, 28px);
  background: #ebebeb;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.people-metrics-stack {
  grid-area: metrics;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 18px);
  align-content: start;
}

.people-metric-card--gap {
  grid-column: auto;
}

.people-metric-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}

.people-metric-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.people-conocer-panel {
  grid-area: conocer;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 2vw, 24px);
  border: 2px solid #ff831c;
  background: #fff;
}

.people-process-panel-head {
  display: grid;
  gap: 12px;
}

.people-management {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
}

.people-management-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.6vw, 16px);
  align-items: start;
}

.people-management-visual {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: 100%;
}

.people-management-diagram-title {
  margin: 0;
  color: var(--deep-red);
  font-size: clamp(.98rem, 1.08vw, 1.1rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.people-management-stage {
  --orbit-radius: clamp(148px, 13vw, 172px);
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  min-height: 0;
  margin: 0 auto;
}

.people-mgmt-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: clamp(9px, 1vw, 11px);
  height: clamp(8px, .9vw, 10px);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--arrow-angle)) translateY(calc(-1 * var(--orbit-radius)));
}

.people-mgmt-arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #9aa0a6;
  clip-path: polygon(0 22%, 100% 50%, 0 78%);
}

.people-mgmt-arrow--1 { --arrow-angle: -64.3deg; }
.people-mgmt-arrow--2 { --arrow-angle: -12.85deg; }
.people-mgmt-arrow--3 { --arrow-angle: 38.6deg; }
.people-mgmt-arrow--4 { --arrow-angle: 90deg; }
.people-mgmt-arrow--5 { --arrow-angle: 141.4deg; }
.people-mgmt-arrow--6 { --arrow-angle: 192.85deg; }
.people-mgmt-arrow--7 { --arrow-angle: 244.3deg; }

.people-mgmt-center,
.people-mgmt-node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: transform .42s ease, box-shadow .42s ease, opacity .42s ease;
}

.people-mgmt-center {
  z-index: 3;
  width: clamp(132px, 13.5vw, 158px);
  height: clamp(132px, 13.5vw, 158px);
  background: #b8bcc0;
  transform: translate(-50%, -50%);
}

.people-mgmt-node {
  z-index: 2;
  width: clamp(104px, 10.8vw, 124px);
  height: clamp(104px, 10.8vw, 124px);
  box-shadow: 0 8px 18px rgba(17, 24, 32, .1);
  transform: translate(-50%, -50%) rotate(var(--node-angle)) translateY(calc(-1 * var(--orbit-radius))) rotate(calc(-1 * var(--node-angle)));
}

.people-mgmt-gear {
  --people-gear-fill: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: distributionGearSpin 7.5s linear infinite;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
}

.people-mgmt-gear--center {
  width: 78%;
}

.people-mgmt-gear::before,
.people-mgmt-gear span {
  position: absolute;
  display: grid;
  border-radius: 50%;
  background: var(--people-gear-fill);
}

.people-mgmt-gear::before {
  content: "";
  inset: 0;
  z-index: 2;
}

.people-mgmt-gear span {
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 14%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-352%);
}

.people-mgmt-node-label {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58%;
  padding: 2px;
  color: #111820;
  font-size: clamp(.62rem, .72vw, .78rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  pointer-events: none;
}

.people-mgmt-center .people-mgmt-node-label {
  width: 62%;
  font-size: clamp(.72rem, .82vw, .88rem);
}

.people-mgmt-node-label span {
  display: block;
  max-width: 10ch;
  text-wrap: balance;
}

.people-mgmt-node--culture {
  --node-angle: -90deg;
  background: #6fbf4a;
}

/*
  Cultura organizacional / Organizational culture:
  el label se centra geométricamente en el nodo (HTML, no SVG).
*/
.people-mgmt-node--culture .people-mgmt-node-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 72%;
  max-width: 12ch;
  height: auto;
  padding: 0;
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.people-mgmt-node--culture .people-mgmt-node-label span {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
  text-wrap: balance;
}

html[lang="en"] .people-mgmt-node--culture .people-mgmt-node-label {
  max-width: 13ch;
}

.people-mgmt-node--environment {
  --node-angle: -38.6deg;
  background: #26b9df;
}

.people-mgmt-node--capital {
  --node-angle: 12.9deg;
  background: #4385df;
}

.people-mgmt-node--commitment {
  --node-angle: 64.3deg;
  background: #9b4bb4;
}

.people-mgmt-node--diversity {
  --node-angle: 115.7deg;
  background: #d63384;
}

.people-mgmt-node--balance {
  --node-angle: 167.1deg;
  background: #f04423;
}

.people-mgmt-node--relations {
  --node-angle: 218.6deg;
  background: #f58220;
}

.people-mgmt-center.is-active,
.people-mgmt-center:hover,
.people-mgmt-center:focus-visible {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1.05);
  outline: none;
  box-shadow: 0 16px 32px rgba(17, 24, 32, .18);
}

.people-management.has-active .people-mgmt-center:not(.is-active) {
  opacity: .82;
}

.people-mgmt-node.is-active,
.people-mgmt-node:hover,
.people-mgmt-node:focus-visible {
  z-index: 3;
  transform: translate(-50%, -50%) rotate(var(--node-angle)) translateY(calc(-1 * var(--orbit-radius) - 6px)) rotate(calc(-1 * var(--node-angle))) scale(1.05);
  outline: none;
  box-shadow: 0 16px 32px rgba(17, 24, 32, .18);
}

.people-management.has-active .people-mgmt-node:not(.is-active) {
  opacity: .72;
}

.people-management-detail {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(14px, 1.6vw, 18px);
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 32, .08);
}

.people-management-detail-copy {
  margin: 0;
  color: #111820;
  font-size: clamp(.86rem, .92vw, .96rem);
  line-height: 1.62;
}

.people-management-detail-copy p {
  margin: 0 0 10px;
}

.people-management-detail-copy p:not(.people-detail-subtitle) {
  font-size: clamp(.86rem, .92vw, .96rem);
  line-height: 1.62;
}

.people-management-detail-copy p:last-child {
  margin-bottom: 0;
}

.people-management-detail-copy .people-detail-subtitle {
  margin: clamp(12px, 1.4vw, 16px) 0 6px;
  font-size: clamp(.92rem, 1vw, 1.02rem);
  font-weight: 800;
  line-height: 1.2;
}

.people-management-detail-copy .people-detail-subtitle:first-child {
  margin-top: 0;
}

.people-management-hint {
  margin: 0;
  color: #6f7379;
  font-size: clamp(.78rem, .84vw, .86rem);
  line-height: 1.45;
}

.people-metric-card {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 32, .08);
}

.people-metric-head {
  display: grid;
  gap: 6px;
}

.people-metric-kicker {
  margin: 0;
  color: #6f7379;
  font-size: clamp(.82rem, .88vw, .9rem);
  font-weight: 600;
}

.people-metric-card--salary {
  --ethics-chart-height: clamp(148px, 14vw, 188px);
}

.people-metric-card--women {
  --ethics-chart-height: clamp(132px, 12vw, 168px);
}

.people-animated-bar {
  transform-origin: bottom center;
  will-change: transform;
}

.people-salary-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.people-salary-legend {
  margin-left: auto;
}

.people-metric-card-body--salary .people-callout.value-chain-highlight-copy {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin: 0;
  padding: clamp(24px, 2.8vw, 36px) clamp(22px, 2.6vw, 32px);
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(245, 130, 32, .98) 0%,
      rgba(235, 98, 28, .97) 48%,
      rgba(204, 79, 24, .98) 100%
    );
}

.people-metric-card-body--salary .people-callout.value-chain-highlight-copy p,
.people-metric-card-body--salary .people-callout.value-chain-highlight-copy .people-highlight-text {
  margin: 0;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(1.12rem, 1.45vw, 1.52rem);
  font-weight: 500;
  line-height: 1.32;
  text-wrap: balance;
}

.people-metric-card-body--salary .people-callout.value-chain-highlight-copy strong {
  color: #fff;
  font-weight: 800;
}

.people-metric-card-body--women {
  grid-template-columns: minmax(0, 1fr);
}

.people-metric-card-body--women .people-women-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  align-self: auto;
}

.people-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4e5359;
  font-size: clamp(.72rem, .78vw, .8rem);
  font-weight: 600;
}

.people-chart-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--legend-color);
  vertical-align: middle;
}

.people-women-bar-triple {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, .6vw, 8px);
  width: 100%;
}

.people-women-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.people-women-bar {
  display: block;
  width: clamp(12px, 1.3vw, 17px);
  height: max(8px, calc(var(--ethics-chart-height) * var(--bar-scale)));
  border-radius: 4px;
  transform-origin: bottom center;
  will-change: transform;
}

.people-women-bar--lead {
  background: #ff831c;
}

.people-women-bar--staff {
  background: #9b4bb4;
}

.people-women-bar--contractor {
  background: #12a897;
}

.people-table-wrap {
  overflow-x: auto;
}

.people-gap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(.78rem, .84vw, .86rem);
}

.people-gap-table th,
.people-gap-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(17, 24, 32, .08);
  text-align: center;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.people-gap-table thead th {
  color: #111820;
  font-weight: 700;
  background: #ececea;
}

.people-gap-table tbody th {
  color: #111820;
  font-weight: 600;
  text-align: left;
}

.people-gap-table-total th,
.people-gap-table-total td {
  font-weight: 800;
  background: #f7f7f6;
}

.people-gap-table tbody tr:hover th,
.people-gap-table tbody tr:hover td,
.people-gap-table tbody tr:focus-within th,
.people-gap-table tbody tr:focus-within td {
  background: var(--orange) !important;
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, .28);
}

.people-gap-table tbody tr:focus-within {
  outline: 2px solid var(--deep-orange);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  .people-gap-table th,
  .people-gap-table td {
    transition: none;
  }
}

.people-table-note {
  margin: 0;
  color: #6f7379;
  font-size: clamp(.76rem, .82vw, .84rem);
  line-height: 1.45;
}

.people-conocer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #111820;
  font-size: clamp(.86rem, .92vw, .96rem);
  line-height: 1.62;
}

.gobernanza-hero {
  --entry-inner-gutter: max(0px, calc((100vw - 1180px) / 2));
  --entry-copy-edge: clamp(40px, 6vw, 96px);
  --entry-stage-side: clamp(250px, 24vw, 430px);
  --entry-stage-y: clamp(42px, 7vh, 82px);
  --gobernanza-subject-scale: var(--hero-subject-scale);
  --gobernanza-subject-max-height: 80vh;
  --gobernanza-wash-shift: 20px;
  position: relative;
  min-height: calc(100vh - 66px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, #f3f3f3 0 12%, #e4e4e2 12% 100%);
  isolation: isolate;
}

.gobernanza-hero-bg,
.gobernanza-hero-photo,
.gobernanza-hero-wash {
  position: absolute;
  pointer-events: none;
}

.gobernanza-hero-bg {
  inset: 0 var(--entry-stage-side) 0 0;
  z-index: 0;
  background: url("../img/gobernanza/bg-gobernanza-photo-transition.jpg") center / cover;
}

.gobernanza-hero-photo {
  inset: 0 var(--entry-stage-side) 0 0;
  z-index: 1;
  background: url("../img/gobernanza/bg-gobernanza.jpg") center / cover no-repeat;
}

.gobernanza-hero-wash {
  top: 50%;
  right: calc(var(--entry-inner-gutter) + var(--entry-copy-edge) - var(--gobernanza-wash-shift));
  left: auto;
  z-index: 2;
  width: clamp(515px, calc(37vw + 110px), 700px);
  min-height: clamp(445px, 61vh, 600px);
  background: var(--entry-wash-gradient-reverse);
  box-shadow: none;
  transform: translateY(-50%);
}

.gobernanza-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .48fr);
  align-items: center;
  min-height: calc(100vh - 66px);
  padding: clamp(100px, 11vh, 132px) 0 clamp(88px, 10vh, 118px);
}

.gobernanza-hero-visual {
  position: absolute;
  left: calc((100% - 100vw) / 2);
  bottom: -1px;
  z-index: 4;
  width: min(calc(49vw * var(--gobernanza-subject-scale)), calc(680px * var(--gobernanza-subject-scale)));
  overflow: visible;
  filter: drop-shadow(0 26px 42px rgba(61, 0, 0, .16));
}

.gobernanza-hero-visual img {
  width: 100%;
  height: auto;
  max-height: var(--gobernanza-subject-max-height);
  object-fit: contain;
  object-position: left bottom;
}

.gobernanza-orbit {
  position: absolute;
  left: clamp(520px, 48vw, 660px);
  top: 50%;
  z-index: 3;
  width: clamp(210px, 24vw, 360px);
  height: clamp(300px, 36vw, 500px);
  opacity: .65;
  transform: translate(-50%, -43%);
  pointer-events: none;
}

.gobernanza-orbit span {
  position: absolute;
  width: clamp(16px, 2vw, 28px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.gobernanza-orbit span:nth-child(1) { left: 4%; top: 4%; }
.gobernanza-orbit span:nth-child(2) { left: 22%; top: 14%; }
.gobernanza-orbit span:nth-child(3) { left: 40%; top: 25%; }
.gobernanza-orbit span:nth-child(4) { left: 58%; top: 36%; }
.gobernanza-orbit span:nth-child(5) { left: 76%; top: 47%; }
.gobernanza-orbit span:nth-child(6) { left: 58%; top: 58%; }
.gobernanza-orbit span:nth-child(7) { left: 40%; top: 69%; }
.gobernanza-orbit span:nth-child(8) { left: 22%; top: 80%; }
.gobernanza-orbit span:nth-child(9) { left: 4%; top: 91%; }

.gobernanza-hero-copy {
  position: absolute;
  top: 50%;
  right: calc(var(--entry-copy-edge) - var(--gobernanza-wash-shift));
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: clamp(420px, 37vw, 585px);
  min-height: clamp(420px, 58vh, 565px);
  padding: clamp(46px, 5.8vw, 82px) clamp(42px, 5.2vw, 78px);
  text-align: right;
  transform: translateY(-50%);
}

.gobernanza-hero-copy h1 {
  max-width: 11ch;
  margin: 0 0 0 auto;
  color: #fff;
  font-size: clamp(2.65rem, 4.05vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
}

.gobernanza-hero-copy p {
  max-width: 390px;
  margin: clamp(22px, 3vw, 34px) 0 0 auto;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.94rem, 1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.42;
}

.gobernanza-scroll-cue {
  left: auto;
  right: calc(var(--entry-copy-edge) + clamp(42px, 5.2vw, 78px) - var(--gobernanza-wash-shift));
  top: calc(50% + clamp(138px, 22vh, 214px));
  bottom: auto;
  transform: none;
}

.gobernanza-scroll-cue.is-hidden {
  transform: translateY(12px);
}

.climate-hero {
  --entry-inner-gutter: max(0px, calc((100vw - 1180px) / 2));
  --entry-copy-edge: clamp(40px, 6vw, 96px);
  --entry-stage-side: clamp(250px, 24vw, 430px);
  --climate-subject-scale: 1.18;
  --climate-subject-width: min(calc(49vw * var(--climate-subject-scale)), calc(680px * var(--climate-subject-scale)));
  --climate-subject-max-height: min(calc(65vh * var(--climate-subject-scale)), calc(640px * var(--climate-subject-scale)));
  --climate-wash-shift: 16px;
  position: relative;
  min-height: calc(100vh - 66px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, #f3f3f3 0 12%, #e4e4e2 12% 100%);
  isolation: isolate;
}

.climate-hero-stage {
  position: relative;
  min-height: inherit;
}

.climate-hero-bg,
.climate-hero-photo,
.climate-hero-wash {
  position: absolute;
  pointer-events: none;
}

.climate-hero-bg {
  inset: 0 var(--entry-stage-side) 0 0;
  z-index: 0;
  background: url("../img/climatico/climatico-bg.jpg") center / cover no-repeat;
}

.climate-hero-photo {
  inset: 0 var(--entry-stage-side) 0 0;
  z-index: 1;
  background: url("../img/climatico/social-photo-transition.jpg") center / cover no-repeat;
}

.climate-hero-wash {
  top: 50%;
  right: calc(var(--entry-inner-gutter) + var(--entry-copy-edge) - var(--climate-wash-shift));
  left: auto;
  z-index: 2;
  width: clamp(500px, calc(34vw + 120px), 680px);
  min-height: clamp(430px, 58vh, 580px);
  background: var(--entry-wash-gradient-reverse);
  transform: translateY(-50%);
}

.climate-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .42fr);
  align-items: center;
  min-height: calc(100vh - 66px);
  padding: clamp(96px, 10vh, 128px) 0 clamp(84px, 9vh, 112px);
}

.climate-hero-visual {
  position: absolute;
  left: calc((100% - 80vw) / 2);
  bottom: -1px;
  z-index: 4;
  width: var(--climate-subject-width);
  max-height: var(--climate-subject-max-height);
  overflow: visible;
  filter: drop-shadow(0 22px 38px rgba(61, 0, 0, .14));
  pointer-events: none;
}

.climate-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--climate-subject-max-height);
  object-fit: contain;
  object-position: left bottom;
}

.climate-orbit {
  position: absolute;
  left: clamp(500px, 46vw, 640px);
  top: 50%;
  z-index: 3;
  width: clamp(200px, 22vw, 340px);
  height: clamp(280px, 34vw, 480px);
  opacity: .65;
  transform: translate(-50%, -42%);
  pointer-events: none;
}

.climate-orbit span {
  position: absolute;
  width: clamp(14px, 1.8vw, 26px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .52);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.climate-orbit span:nth-child(1) { left: 6%; top: 6%; }
.climate-orbit span:nth-child(2) { left: 24%; top: 16%; }
.climate-orbit span:nth-child(3) { left: 42%; top: 27%; }
.climate-orbit span:nth-child(4) { left: 60%; top: 38%; }
.climate-orbit span:nth-child(5) { left: 76%; top: 49%; }
.climate-orbit span:nth-child(6) { left: 60%; top: 60%; }
.climate-orbit span:nth-child(7) { left: 42%; top: 71%; }
.climate-orbit span:nth-child(8) { left: 24%; top: 82%; }
.climate-orbit span:nth-child(9) { left: 6%; top: 92%; }

.climate-hero-copy {
  position: absolute;
  top: 50%;
  right: calc(var(--entry-copy-edge) - var(--climate-wash-shift));
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: clamp(400px, 34vw, 560px);
  min-height: clamp(400px, 54vh, 540px);
  padding: clamp(42px, 5.4vw, 76px) clamp(38px, 4.8vw, 72px);
  text-align: right;
  transform: translateY(-50%);
}

.climate-hero-copy h1 {
  max-width: 12ch;
  margin: 0 0 0 auto;
  color: #fff;
  font-size: clamp(2.55rem, 3.9vw, 4.55rem);
  font-weight: 300;
  line-height: 1;
}

.climate-hero-copy h1 span {
  font-weight: 300;
}

.climate-hero-copy h1 strong {
  display: inline;
  font-weight: 800;
}

.climate-hero-copy p {
  max-width: 360px;
  margin: clamp(20px, 2.8vw, 32px) 0 0 auto;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.94rem, 1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.42;
}

.climate-scroll-cue {
  left: auto;
  right: calc(var(--entry-copy-edge) + clamp(38px, 4.8vw, 72px) - var(--climate-wash-shift));
  top: calc(50% + clamp(132px, 21vh, 200px));
  bottom: auto;
  transform: none;
}

.climate-scroll-cue.is-hidden {
  transform: translateY(12px);
}

@media (prefers-reduced-motion: reduce) {
  .climate-hero-photo {
    display: none;
  }
}

#cambio-climatico {
  scroll-margin-top: 92px;
}

.climate-intro-section {
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(64px, 7vw, 96px);
  background: #fff;
}

.climate-intro-layout {
  display: grid;
  gap: clamp(28px, 3.4vw, 40px);
}

.climate-intro-head {
  display: grid;
  gap: 0;
}

.climate-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 2.8vw, 36px);
  align-items: stretch;
}

.climate-intro-copy {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
  align-content: start;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
}

.climate-intro-text {
  display: grid;
  gap: 16px;
}

.climate-intro-text p {
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.68;
}

.climate-power-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(18px, 2vw, 24px) clamp(16px, 1.8vw, 22px);
  box-sizing: border-box;
}

.climate-power-card .ethics-diligence-head {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.climate-power-card .ethics-chart-legend {
  gap: 8px 14px;
  font-size: .68rem;
}

.climate-legend-swatch--clean {
  background: #7cb82f;
}

.climate-legend-swatch--other {
  background: var(--orange);
}

.ethics-bar-chart.climate-power-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  gap: 8px 12px;
  align-items: end;
  width: 90%;
  max-width: 70%;
  margin: 0 auto;
  min-height: calc(var(--ethics-chart-height, 112px) + 36px);
  padding-top: 35px;
  box-sizing: border-box;
}

.climate-power-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: var(--ethics-chart-height, 112px);
}

.climate-power-bar {
  display: flex;
  flex-direction: column;
  width: 22px;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  transform: scaleY(0);
  transform-origin: bottom center;
  will-change: transform;
}

.climate-power-seg {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.climate-power-seg--clean {
  flex: var(--clean, 1) 1 0;
  border-radius: 4px 4px 0 0;
  background: #7cb82f;
}

.climate-power-seg--other {
  flex: var(--other, 1) 1 0;
  border-radius: 0 0 4px 4px;
  background: var(--orange);
}

.climate-power-seg b {
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ethics-bar-chart.climate-power-chart .ethics-bar-group {
  min-width: 0;
  gap: 8px;
}

.ethics-bar-chart.climate-power-chart .ethics-bar-label {
  font-size: .68rem;
}

.climate-stack-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  height: var(--ethics-chart-height, 156px);
}

.climate-stack-bar {
  display: flex;
  flex-direction: column-reverse;
  width: 22px;
  height: max(8px, calc(var(--ethics-chart-height, 156px) * var(--bar-scale, 1)));
  overflow: hidden;
  border-radius: 4px;
  transform: scaleY(0);
  transform-origin: bottom center;
  will-change: transform;
}

.climate-trend-chart .ethics-bar-value {
  font-size: .62rem;
  font-weight: 800;
}

.climate-stack-seg {
  display: block;
  width: 100%;
}

.climate-stack-seg--clean { background: #7cb82f; flex: var(--clean, 1) 1 0; }
.climate-stack-seg--other { background: var(--orange); flex: var(--other, 1) 1 0; }
.climate-stack-seg--a1 { background: #12a897; flex: var(--a1, 1) 1 0; }
.climate-stack-seg--a2 { background: #9b4bb4; flex: var(--a2, 1) 1 0; }

.climate-intro-photo {
  margin: 0;
  min-width: 0;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 76px 0;
  background: #f1f1f0;
  box-shadow: 0 22px 54px rgba(38, 38, 38, .12);
}

.climate-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.climate-panel--block {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 2vw, 24px);
  background: #f7f7f6;
  box-sizing: border-box;
}

.climate-block-head {
  margin: 0;
}

.climate-block-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: start;
}

.climate-trend-chart {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: calc(var(--ethics-chart-height, 140px) + 52px);
}

.climate-swatch {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  vertical-align: middle;
}

.climate-swatch--clean { background: #7cb82f; }
.climate-swatch--other { background: var(--orange); }
.climate-swatch--a1 { background: #12a897; }
.climate-swatch--a2 { background: #9b4bb4; }

.climate-donut-card {
  padding: clamp(14px, 1.5vw, 18px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.climate-donut-card h3.chart-title {
  text-align: left;
}

.climate-donut-card h3 span {
  display: inline;
  color: #4e5359;
  font-weight: 400;
}

.climate-donut-card .distribution-chart {
  width: min(168px, 100%);
  margin: 0 auto 12px;
}

.climate-donut {
  --pie-cover: #fff;
}

.climate-donut .distribution-center {
  inset: auto;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 44%;
  aspect-ratio: 1;
  height: auto;
  padding: 0 0 .36em;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: #5c636b;
  font-size: clamp(.85rem, .95vw, .95rem);
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.climate-static-legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.climate-static-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4e5359;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.25;
}

.climate-static-legend i {
  display: block;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--legend-color);
}

.climate-hbar-wrap,
.climate-mini-trend {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.climate-donut-caption {
  margin: 0;
  color: #111820;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.25;
}

.climate-scope-hbar .safety-hbar-year {
  min-width: 0;
  width: clamp(72px, 8vw, 110px);
  font-size: clamp(.68rem, .74vw, .78rem);
  white-space: normal;
  line-height: 1.2;
}

.climate-hbar--a1 { background: #12a897; }
.climate-hbar--a2 { background: #9b4bb4; }

.climate-panel--gei,
.climate-panel--energy {
  gap: clamp(14px, 1.6vw, 18px);
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.climate-panel--gei .climate-block-grid,
.climate-panel--energy .climate-block-grid {
  align-items: stretch;
}

.climate-gei-emissions-card,
.climate-gei-hbar-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(18px, 2vw, 24px) clamp(16px, 1.8vw, 22px);
  box-sizing: border-box;
}

/* Zona de encabezado unificada: títulos alineados arriba (1 o 2 líneas) */
.climate-panel--gei .climate-block-grid .ethics-diligence-head,
.climate-panel--energy .climate-block-grid .ethics-diligence-head {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  box-sizing: border-box;
  min-height: calc(clamp(.9rem, 1.02vw, 1.05rem) * 1.15 * 2 + 8px + 1.05em);
}

.climate-panel--gei .climate-block-grid .ethics-diligence-head h3.chart-title,
.climate-panel--energy .climate-block-grid .ethics-diligence-head h3.chart-title {
  margin: 0;
  align-self: stretch;
}

.climate-gei-emissions-card .ethics-chart-legend,
.climate-gei-hbar-card .ethics-chart-legend {
  gap: 8px 14px;
  font-size: .68rem;
}

.climate-gei-emissions-card .climate-swatch,
.climate-gei-hbar-card .climate-swatch {
  width: 11px;
  height: 11px;
  margin-right: 0;
  border-radius: 1px;
}

.ethics-bar-chart.climate-gei-emissions-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 8px 12px;
  align-items: end;
  width: 92%;
  max-width: 78%;
  margin: 0 auto;
  min-height: calc(var(--ethics-chart-height, 156px) + 36px);
  padding-top: 12px;
  box-sizing: border-box;
}

.climate-gei-emissions-chart .ethics-bar-group {
  min-width: 0;
  gap: 8px;
}

.climate-gei-emissions-chart .ethics-bar-label {
  font-size: .68rem;
}

.climate-gei-emissions-chart .ethics-bar-value {
  font-size: .62rem;
  font-weight: 800;
}

.climate-gei-emissions-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  height: var(--ethics-chart-height, 156px);
}

.climate-gei-emissions-grow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: var(--ethics-chart-height, 156px);
}

.climate-gei-stack-bar {
  flex-direction: column-reverse;
  width: 22px;
  height: max(8px, calc(var(--ethics-chart-height, 156px) * var(--bar-scale, 1)));
  border-radius: 4px;
}

.climate-gei-stack-bar .climate-stack-seg {
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
}

.climate-gei-stack-bar .climate-stack-seg--a1 {
  border-radius: 0 0 4px 4px;
}

.climate-gei-stack-bar .climate-stack-seg--a2 {
  border-radius: 4px 4px 0 0;
}

.climate-gei-stack-bar .climate-stack-seg b {
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.climate-panel--gei .climate-donut-card,
.climate-panel--energy .climate-donut-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: clamp(18px, 2vw, 24px) clamp(16px, 1.8vw, 22px);
  border-radius: 2px;
  background: #ececea;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
  box-sizing: border-box;
}

.climate-panel--gei .climate-donut-card,
.climate-panel--energy .climate-donut-card {
  padding-top: calc(clamp(18px, 2vw, 24px) + 8px);
}

.climate-panel--gei .climate-donut-card h3.chart-title,
.climate-panel--energy .climate-donut-card h3.chart-title {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  min-height: calc(clamp(.9rem, 1.02vw, 1.05rem) * 1.15 * 2 + 8px + 1.05em);
  margin: 0 0 10px;
  text-align: center;
}

.climate-panel--gei .climate-donut-card h3 span,
.climate-panel--energy .climate-donut-card h3 span {
  display: block;
  color: #4e5359;
  font-weight: 400;
}

.climate-panel--gei .climate-donut-card .distribution-chart,
.climate-panel--energy .climate-donut-card .distribution-chart {
  width: min(200px, 100%);
  margin: 0 auto 16px;
}

.climate-panel--gei .climate-gei-donut,
.climate-panel--energy .climate-gei-donut {
  --pie-cover: #ececea;
}

.climate-panel--gei .climate-gei-donut .distribution-center,
.climate-panel--energy .climate-gei-donut .distribution-center {
  inset: auto;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 44%;
  aspect-ratio: 1;
  height: auto;
  padding: 0 0 .36em;
  margin: 0;
  border-radius: 0;
  background: transparent;
  font-size: clamp(.95rem, 1.05vw, 1.12rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.climate-panel--gei .climate-gei-donut .distribution-center {
  color: #0DA48E;
}

.climate-panel--energy .climate-gei-donut .distribution-center {
  color: #00DAEB;
}

.climate-panel--gei .climate-gei-donut-legend,
.climate-panel--energy .climate-gei-donut-legend {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
}

.climate-panel--gei .climate-gei-donut-legend button,
.climate-panel--energy .climate-gei-donut-legend button {
  min-height: 36px;
  font-size: clamp(.74rem, .82vw, .84rem);
}

.climate-gei-hbar-body {
  display: grid;
  grid-template-columns: minmax(62px, 78px) minmax(0, 1fr);
  gap: 16px 12px;
  flex: 1 1 auto;
  align-items: stretch;
  min-height: 0;
  width: 100%;
}

.climate-gei-hbar-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 26px;
  min-width: 0;
  padding: 14px 0;
  box-sizing: border-box;
}

.climate-gei-hbar-labels span {
  display: block;
  min-height: 22px;
  color: #4e5359;
  font-size: clamp(.64rem, .72vw, .74rem);
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.climate-gei-hbar-panel {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 14px 12px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .28);
  box-shadow: none;
  box-sizing: border-box;
}

.climate-gei-hbar-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8px 10px;
  border-radius: 1px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .32) 0%, rgba(255, 255, 255, .05) 62%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(17, 24, 32, .03) 0,
      rgba(17, 24, 32, .03) 1px,
      transparent 1px,
      transparent 18%
    );
  pointer-events: none;
}

.climate-gei-hbar.safety-hbar-chart {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 28px;
  min-height: 0;
  width: 100%;
}

.climate-gei-hbar-track {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 22px;
}

.climate-gei-hbar-stack {
  display: flex;
  flex-direction: row;
  width: calc(100% * var(--bar-scale, 1));
  max-width: 100%;
  height: 22px;
  overflow: hidden;
  border-radius: 4px;
  transform-origin: left center;
  will-change: transform;
}

.climate-gei-hbar-seg {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.climate-gei-hbar-seg--a1 {
  flex: var(--a1, 1) 1 0;
  border-radius: 4px 0 0 4px;
  background: #12a897;
}

.climate-gei-hbar-seg--a2 {
  flex: var(--a2, 1) 1 0;
  border-radius: 0 4px 4px 0;
  background: #9b4bb4;
}

.climate-gei-hbar-seg b {
  color: #fff;
  font-size: clamp(.58rem, .68vw, .7rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.climate-panel--gei .people-table-note,
.climate-panel--energy .people-table-note {
  margin: 2px 0 0;
  padding: 0 2px;
}

.climate-panel--block .people-table-note {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .climate-power-bar,
  .climate-stack-bar {
    transform: none;
  }

  .climate-animated-hbar {
    transform: none;
  }
}

#hoja-ruta-descarbonizacion {
  scroll-margin-top: 92px;
}

.climate-roadmap-section {
  --color-renovables: #17B5DE;
  --color-cielo-abierto: #4282DE;
  --color-subterranea: #7B5CA7;
  --color-hornos: #005CA6;
  --color-vapor: #19C8CD;
  --color-captura: #51B048;
  --color-compensaciones: #0DA48E;
  --roadmap-icon-box: 40px;
  --roadmap-icon-size: clamp(22px, 2.6vw, 25px);
  padding: clamp(48px, 5.5vw, 72px) 0 clamp(64px, 7vw, 96px);
  background: #fff;
}

.climate-roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, .32fr) minmax(0, .68fr);
  grid-template-areas:
    "left right"
    "treemap treemap";
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.climate-roadmap-left {
  grid-area: left;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  min-width: 0;
  min-height: 0;
  height: 100%;
  align-content: stretch;
}

.climate-roadmap-right {
  grid-area: right;
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  min-width: 0;
  align-content: start;
}

.climate-roadmap-treemap-block {
  grid-area: treemap;
  margin-top: 0;
  width: 100%;
  min-width: 0;
}

.climate-roadmap-copy {
  display: grid;
  gap: 14px;
}

.climate-roadmap-title {
  margin: 0;
  color: #9B0000;
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 400;
  line-height: 1.15;
}

.climate-roadmap-copy p {
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.68;
}

.climate-roadmap-subtitle {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.climate-roadmap-photo {
  margin: 0;
  overflow: hidden;
  background: #f1f1f0;
  box-shadow: 0 16px 40px rgba(38, 38, 38, .1);
}

.climate-roadmap-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.climate-roadmap-photo--left {
  width: 100%;
  min-height: 240px;
  height: 100%;
  max-height: none;
  align-self: stretch;
  border-radius: 0 0 48px 0;
}

.climate-roadmap-photo--left img {
  object-position: center 40%;
}

.climate-roadmap-photo--banner {
  width: 100%;
  height: clamp(140px, 16vw, 188px);
  border-radius: 0 0 36px 0;
}

.climate-roadmap-photo--banner img {
  object-position: center 45%;
}

.climate-roadmap-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.climate-roadmap-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: clamp(.72rem, .8vw, .82rem);
  line-height: 1.45;
}

.climate-roadmap-table col.climate-roadmap-col-cat {
  width: 26%;
}

.climate-roadmap-table thead th {
  padding: 10px 12px;
  color: #111820;
  font-weight: 700;
  text-align: left;
  background: #ececea;
  border-bottom: 2px solid rgba(66, 130, 222, .35);
}

.climate-roadmap-table tbody th,
.climate-roadmap-table tbody td {
  padding: 12px;
  vertical-align: top;
  text-align: left;
  color: #111820;
  border-bottom: 1px solid rgba(66, 130, 222, .28);
  transition: background-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.climate-roadmap-table tbody th {
  background: #f7f7f6;
  font-weight: 600;
}

.climate-roadmap-table tbody td {
  background: #fff;
}

.climate-roadmap-table tbody td:last-child {
  color: #2a3038;
}

.climate-roadmap-cat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.climate-roadmap-icon {
  flex: 0 0 var(--roadmap-icon-box);
  display: grid;
  place-items: center;
  width: var(--roadmap-icon-box);
  height: var(--roadmap-icon-box);
  border-radius: 4px;
  color: #fff;
  transition: transform .28s ease, box-shadow .28s ease;
}

.climate-roadmap-icon svg,
.climate-roadmap-icon img {
  width: var(--roadmap-icon-size);
  height: var(--roadmap-icon-size);
  display: block;
  object-fit: contain;
}

/* Equilibrio óptico: vapor más vertical; captura más horizontal (±2 px) */
.climate-roadmap-icon--steam img {
  width: calc(var(--roadmap-icon-size) - 3px);
  height: calc(var(--roadmap-icon-size) + 2px);
}

.climate-roadmap-icon--capture img {
  width: calc(var(--roadmap-icon-size) + 2px);
  height: calc(var(--roadmap-icon-size) - 2px);
}

.climate-roadmap-icon--renewables { background: var(--color-renovables); }
.climate-roadmap-icon--openpit { background: var(--color-cielo-abierto); }
.climate-roadmap-icon--underground { background: var(--color-subterranea); }
.climate-roadmap-icon--furnaces { background: var(--color-hornos); }
.climate-roadmap-icon--steam { background: var(--color-vapor); }
.climate-roadmap-icon--capture { background: var(--color-captura); }
.climate-roadmap-icon--offsets { background: var(--color-compensaciones); }

.climate-roadmap-table tbody td ul {
  margin: 0;
  padding-left: 16px;
}

.climate-roadmap-table tbody td li + li {
  margin-top: 4px;
}

.climate-roadmap-table tbody tr:hover th,
.climate-roadmap-table tbody tr:hover td,
.climate-roadmap-table tbody tr:focus-within th,
.climate-roadmap-table tbody tr:focus-within td {
  background: #f3f6f8;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 32, .04);
}

.climate-roadmap-table tbody tr:hover th,
.climate-roadmap-table tbody tr:focus-within th {
  box-shadow: inset 3px 0 0 var(--deep-orange), inset 0 0 0 1px rgba(17, 24, 32, .04);
}

.climate-roadmap-table tbody tr:hover .climate-roadmap-icon,
.climate-roadmap-table tbody tr:focus-within .climate-roadmap-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(17, 24, 32, .18);
}

.climate-roadmap-table tbody tr:focus {
  outline: 2px solid var(--deep-orange);
  outline-offset: -2px;
}

.climate-roadmap-table tbody tr:focus:not(:focus-visible) {
  outline: none;
}

.climate-roadmap-table tbody tr:focus-visible {
  outline: 2px solid var(--deep-orange);
  outline-offset: -2px;
}

.climate-roadmap-treemap {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, .85fr);
  gap: 4px;
  min-height: clamp(280px, 32vw, 360px);
  background: #fff;
}

.climate-roadmap-treemap-mid {
  display: grid;
  grid-template-rows: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 4px;
  min-height: 0;
}

.climate-roadmap-treemap-mid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 0;
}

.climate-roadmap-treemap-side {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4px;
  min-height: 0;
}

.climate-roadmap-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 12px 10px;
  border: 0;
  color: #fff;
  font: inherit;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.climate-roadmap-cell-label {
  font-size: clamp(.72rem, .85vw, .9rem);
  font-weight: 700;
  line-height: 1.25;
}

.climate-roadmap-cell-plus {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  opacity: .92;
}

.climate-roadmap-cell--renewables { background: var(--color-renovables); }
.climate-roadmap-cell--openpit { background: var(--color-cielo-abierto); }
.climate-roadmap-cell--underground { background: var(--color-subterranea); }
.climate-roadmap-cell--furnaces { background: var(--color-hornos); }
.climate-roadmap-cell--offsets { background: var(--color-compensaciones); }
.climate-roadmap-cell--capture { background: var(--color-captura); }
.climate-roadmap-cell--steam { background: var(--color-vapor); }

.climate-roadmap-cell:hover,
.climate-roadmap-cell:focus-visible {
  z-index: 2;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(17, 24, 32, .22);
  filter: none;
  outline: none;
}

.climate-roadmap-cell:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  box-shadow: 0 10px 24px rgba(17, 24, 32, .22), 0 0 0 2px var(--deep-orange);
}

.climate-roadmap-tooltip {
  position: fixed;
  z-index: 1200;
  --tooltip-scale: .97;
  --tooltip-y: 6px;
  --tooltip-accent: var(--deep-orange);
  max-width: min(280px, calc(100vw - 24px));
  padding: 12px 14px 13px;
  border-radius: 6px;
  border-top: 3px solid var(--tooltip-accent);
  background:
    linear-gradient(180deg, rgba(30, 36, 44, .98), rgba(20, 25, 32, .98));
  color: #fff;
  font-size: .82rem;
  line-height: 1.4;
  box-shadow:
    0 18px 40px rgba(17, 24, 32, .32),
    0 0 0 1px rgba(255, 255, 255, .06) inset;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(var(--tooltip-y)) scale(var(--tooltip-scale));
  transform-origin: 50% 100%;
  transition:
    opacity .48s ease,
    visibility .48s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1);
}

.climate-roadmap-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background: #1a2028;
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transform: rotate(45deg);
  box-shadow: 4px 4px 10px rgba(17, 24, 32, .12);
}

.climate-roadmap-tooltip.is-below {
  transform-origin: 50% 0%;
}

.climate-roadmap-tooltip.is-below::after {
  top: -6px;
  bottom: auto;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: -3px -3px 10px rgba(17, 24, 32, .1);
}

.climate-roadmap-tooltip.is-visible {
  --tooltip-scale: 1;
  --tooltip-y: 0;
  opacity: 1;
  visibility: visible;
}

.climate-roadmap-tooltip.is-leaving {
  --tooltip-scale: .98;
  --tooltip-y: 4px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .36s ease,
    visibility .36s ease,
    transform .4s ease;
}

.climate-roadmap-tooltip strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(3px);
}

.climate-roadmap-tooltip span {
  display: block;
  color: rgba(255, 255, 255, .88);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transform: translateY(3px);
}

.climate-roadmap-tooltip.is-visible strong,
.climate-roadmap-tooltip.is-visible span {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .42s ease, transform .48s cubic-bezier(.22, 1, .36, 1);
}

.climate-roadmap-tooltip.is-visible strong {
  transition-delay: .08s;
}

.climate-roadmap-tooltip.is-visible span {
  transition-delay: .16s;
}

.climate-roadmap-tooltip.is-leaving strong,
.climate-roadmap-tooltip.is-leaving span {
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .climate-roadmap-table tbody th,
  .climate-roadmap-table tbody td,
  .climate-roadmap-icon,
  .climate-roadmap-cell,
  .climate-roadmap-tooltip,
  .climate-roadmap-tooltip strong,
  .climate-roadmap-tooltip span {
    transition: none;
  }

  .climate-roadmap-table tbody tr:hover,
  .climate-roadmap-table tbody tr:focus-within,
  .climate-roadmap-cell:hover,
  .climate-roadmap-cell:focus-visible {
    transform: none;
  }

  .climate-roadmap-tooltip {
    --tooltip-scale: 1;
    --tooltip-y: 0;
  }
}

.placeholder-section {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.topic-index {
  padding: clamp(44px, 6vw, 72px) 0 clamp(24px, 4vw, 42px);
  background: #fff;
}

.topic-index h2 {
  max-width: 760px;
  margin-top: 10px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
}

.business-model-section {
  scroll-margin-top: 92px;
  padding: clamp(36px, 4.2vw, 58px) 0 clamp(42px, 4.6vw, 64px);
  background: #fff;
}

.business-model-layout {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(620px, 1.42fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.business-model-copy {
  max-width: 430px;
}

.business-model-copy .editorial-title span {
  white-space: nowrap;
}

.content-kicker {
  margin: clamp(-34px, -2.6vw, -22px) 0 clamp(32px, 4vw, 48px);
  color: #25307f;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.editorial-title {
  margin: 0 0 clamp(38px, 5vw, 64px);
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
}

.editorial-title span,
.editorial-title strong {
  display: inline;
}

.editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.rights-section-head .editorial-title {
  margin: 0;
}

.rights-editorial-title.editorial-title strong,
.rights-editorial-title.editorial-title span {
  display: inline;
}

.climate-intro-head .editorial-title.climate-intro-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.climate-intro-head .editorial-title.climate-intro-title span,
.climate-intro-head .editorial-title.climate-intro-title strong {
  display: inline;
}

.climate-intro-head .editorial-title.climate-intro-title span {
  color: var(--editorial-title-color);
  font-weight: 300;
}

.climate-intro-head .editorial-title.climate-intro-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.business-model-copy p {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  font-weight: 400;
  line-height: 1.62;
}

.business-model-diagram {
  --business-node-size: clamp(108px, 8vw, 136px);
  --business-blue: #26b9df;
  --business-cyan: #18add6;
  --business-green: #50b849;
  --business-teal: #10a78f;
  --business-orange: #ff831c;
  --business-red: #f04423;
  --business-purple: #8c3fae;
  --business-navy: #26216f;
  position: relative;
  min-height: clamp(660px, 58vw, 800px);
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border-radius: 2px;
  background: #dedddb;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.business-support {
  position: absolute;
  z-index: 3;
  left: 34%;
  right: 6.5%;
  display: grid;
  place-items: center;
  min-height: clamp(72px, 5.4vw, 92px);
  padding: 16px 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--business-navy);
  font-size: clamp(.68rem, .78vw, .86rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  box-shadow: none;
}

.business-support-top {
  top: 5.3%;
}

.business-support-bottom {
  right: 6.5%;
  bottom: 5.3%;
  color: var(--business-purple);
}

.business-flow {
  position: absolute;
  z-index: 1;
  border-radius: 0;
  pointer-events: none;
}

.business-flow::before,
.business-flow::after {
  content: "";
  position: absolute;
  border-radius: 0;
}

.business-flow-top {
  left: 16%;
  right: 6.5%;
  top: 22%;
  height: 2px;
  color: var(--business-navy);
  background: var(--business-navy);
}

.business-flow-top::before,
.business-flow-top::after,
.business-flow-bottom::before,
.business-flow-bottom::after {
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
}

.business-flow-top::before,
.business-flow-bottom::before {
  left: -2px;
  border-right: 13px solid currentColor;
}

.business-flow-top::after,
.business-flow-bottom::after {
  right: -2px;
  border-left: 13px solid currentColor;
}

.business-flow-left {
  left: 16%;
  top: 26%;
  bottom: 23%;
  width: 74px;
  color: #187636;
  background: none;
}

.business-flow-left .business-flow-segment {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: currentColor;
}

.business-flow-segment-vertical {
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
}

.business-flow-segment-top,
.business-flow-segment-bottom {
  left: 0;
  width: 66px;
  height: 2px;
}

.business-flow-segment-top {
  top: 0;
}

.business-flow-segment-bottom {
  bottom: 0;
}

.business-flow-left::before,
.business-flow-left::after,
.business-flow-center::before,
.business-flow-center::after {
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transform: translateX(-50%);
}

.business-flow-left::before,
.business-flow-center::before {
  top: -2px;
  border-bottom: 13px solid currentColor;
}

.business-flow-left::after,
.business-flow-center::after {
  bottom: -2px;
  border-top: 13px solid currentColor;
}

.business-flow-left::before,
.business-flow-left::after {
  left: 66px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid currentColor;
  border-right: 0;
  transform: translateY(-50%);
}

.business-flow-left::before {
  top: 0;
  bottom: auto;
}

.business-flow-left::after {
  top: auto;
  bottom: 0;
  transform: translateY(50%);
}

.business-flow-bottom {
  left: 16%;
  right: 6.5%;
  bottom: 18.4%;
  height: 2px;
  color: var(--business-purple);
  background: var(--business-purple);
}

.business-flow-center {
  z-index: 4;
  left: 64%;
  top: 15.2%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(var(--business-navy), var(--business-navy)) 0 0 / 100% 9.8% no-repeat, linear-gradient(var(--business-purple), var(--business-purple)) 0 100% / 100% 4.8% no-repeat;
}

.business-flow-center::before {
  top: -13px;
  color: var(--business-navy);
}

.business-flow-center::after {
  bottom: -13px;
  color: var(--business-purple);
}

.business-node {
  --node-color: var(--business-blue);
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: var(--business-node-size);
  aspect-ratio: 1;
  padding: 14px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--node-color);
  box-shadow: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease, opacity .45s ease;
}

.business-node::before {
  content: "";
  position: absolute;
  display: none;
  right: 15%;
  top: 51%;
  width: 48px;
  height: 58px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 16% 18% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 34% 30% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 55% 42% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 75% 50% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 55% 58% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 34% 70% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 16% 82% / 100% 100% no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}

.business-node::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 10px;
  height: 13px;
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.business-node span {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  font-size: clamp(.68rem, .78vw, .86rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.business-node:hover,
.business-node:focus-visible,
.business-node.is-active {
  z-index: 20;
  transform: translate(-50%, calc(-50% - 8px)) scale(1.045);
  filter: saturate(1.08) brightness(1.04);
  outline: none;
}

.business-model-diagram.has-active .business-node:not(.is-active) {
  opacity: .56;
}

.business-node-sustainability {
  --node-color: #fff;
  left: 16%;
  top: 50%;
  z-index: 10;
  color: #187636;
}

.business-node-sustainability::before {
  display: none;
}

.business-node-dots {
  position: absolute;
  right: -1%;
  top: 50%;
  z-index: 2;
  width: 74px;
  height: 86px;
  transform: translateY(-50%);
  pointer-events: none;
}

.business-node-dots i {
  position: absolute;
  left: var(--dot-left);
  top: var(--dot-top);
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .27);
  transform: translate(-50%, -50%);
}

.business-node-sustainability .business-node-dots i {
  background: rgba(24, 118, 54, .22);
}

.business-node-sustainability::after {
  background: #fff;
}

.business-node-green {
  --node-color: var(--business-green);
  left: 36.5%;
  top: 50%;
  z-index: 9;
}

.business-node-dev {
  left: 49%;
  top: 50%;
  z-index: 8;
}

.business-node-dev::after {
  background: rgba(255, 255, 255, .55);
}

.business-node-mining {
  --node-color: var(--business-cyan);
  left: 61.5%;
  top: 50%;
  z-index: 7;
}

.business-node-smelting {
  --node-color: var(--business-teal);
  left: 74%;
  top: 50%;
  z-index: 6;
}

.business-node-market {
  --node-color: var(--business-red);
  left: 86.5%;
  top: 50%;
  z-index: 5;
}

.business-node-market::after {
  display: none;
}

.business-node-suppliers {
  --node-color: var(--business-teal);
  left: 61.5%;
  top: 32.5%;
  z-index: 6;
}

.business-node-suppliers::after {
  top: auto;
  right: 15%;
  bottom: 0;
  width: 11px;
  height: 11px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: rotate(-394deg);
}

.business-node-suppliers::before {
  display: none;
}

.business-node-suppliers .business-node-dots {
  right: -2%;
  top: auto;
  bottom: -17%;
  transform: rotate(57deg);
  width: 74px;
  height: 86px;
}

.business-node-chemical {
  --node-color: var(--business-orange);
  left: 61%;
  top: 71%;
  z-index: 8;
}

.business-node-chemical::after {
  right: -9px;
  top: 50%;
  bottom: auto;
  width: 10px;
  height: 13px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  background: #fff;
}

.business-node-process {
  --node-color: var(--business-orange);
  left: 73.5%;
  top: 71%;
  z-index: 7;
}

.business-node-process::after {
  top: -2px;
  right: 15%;
  bottom: auto;
  width: 12px;
  height: 12px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: rotate(30deg);
}

.business-node-process::before {
  display: none;
}

.business-node-process .business-node-dots {
  right: -1%;
  top: -16%;
  width: 74px;
  height: 86px;
  transform: rotate(33deg);
}

.business-node-suppliers span,
.business-node-process span {
  max-width: 10ch;
}

.business-node-market span {
  max-width: 12.5ch;
  font-size: clamp(.64rem, .72vw, .8rem);
  line-height: 1.08;
}

.business-legend {
  display: none;
}

.business-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.business-legend i {
  display: block;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--legend-color);
}

.business-detail {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 9;
  width: auto;
  min-width: 208px;
  padding: 13px 17px;
  border-left: 5px solid var(--deep-orange);
  border-radius: 4px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 36px rgba(16, 24, 40, .16);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events: none;
}

.business-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.business-detail strong {
  display: block;
  margin-bottom: 0;
  color: var(--deep-orange);
  font-size: 1rem;
}

.business-detail span {
  display: none;
}

.stakeholders-section {
  scroll-margin-top: 92px;
  padding: clamp(38px, 4.2vw, 60px) 0;
  background:
    linear-gradient(90deg, rgba(245, 130, 32, .08) 0%, rgba(245, 130, 32, 0) 34%),
    #fff;
}

.stakeholders-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5.6vw, 86px);
  align-items: center;
}

.stakeholders-copy {
  position: relative;
  z-index: 2;
}

.stakeholders-copy p {
  max-width: 620px;
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 400;
  line-height: 1.66;
}

.stakeholders-media {
  position: relative;
  margin: 0;
  min-height: clamp(430px, 42vw, 590px);
  border-radius: 0 0 76px 0;
  overflow: hidden;
  background: #f2f2f0;
}

.stakeholders-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.purpose-section {
  scroll-margin-top: 92px;
  padding: clamp(42px, 4.8vw, 68px) 0 clamp(52px, 5.5vw, 82px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, #f7f7f5 62%, #f7f7f5 100%);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}

.purpose-copy .editorial-title {
  margin-bottom: clamp(24px, 3vw, 38px);
  white-space: nowrap;
}

.purpose-copy .editorial-title span,
.purpose-copy .editorial-title strong {
  display: inline;
}

.purpose-highlight {
  max-width: 460px;
  margin: 0;
  padding: 14px 18px 15px;
  color: var(--deep-orange);
  background: #f1f1f0;
  font-size: clamp(1.32rem, 1.82vw, 1.82rem);
  font-weight: 400;
  line-height: 1.32;
}

.purpose-intro {
  align-self: start;
  padding-top: clamp(66px, 7.1vw, 116px);
}

.purpose-intro p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 400;
  line-height: 1.66;
}

.purpose-intro p:last-child {
  margin-bottom: 0;
}

.purpose-principles {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 44px);
  margin-top: clamp(4.5px, .6vw, 9px);
  padding: clamp(80px, 6.75vw, 103px) clamp(30px, 4.2vw, 58px) clamp(34px, 3.8vw, 52px);
  overflow: visible;
  background: linear-gradient(135deg, #f04423 0%, #ff831c 100%);
  box-shadow: 0 24px 70px rgba(168, 71, 12, .14);
}

.purpose-principles h3 {
  position: absolute;
  top: 18px;
  left: 50%;
  margin: 0;
  color: #fff;
  transform: translateX(-50%);
}

/* Misma escala tipográfica que .safety-panel-hint; color blanco por contraste sobre el panel naranja */
.purpose-principles-hint {
  position: absolute;
  top: 46px;
  left: 50%;
  z-index: 2;
  width: min(92%, 36em);
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.78rem, .84vw, .86rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.infographic-title {
  font-size: clamp(1.18rem, 1.42vw, 1.42rem);
  font-weight: 800;
  line-height: 1;
}

.purpose-principle {
  position: relative;
  z-index: 2;
  min-height: clamp(380px, 34vw, 500px);
  padding: clamp(38px, 3vw, 50px) clamp(22px, 2.2vw, 30px) clamp(24px, 2.4vw, 34px);
  border-radius: 30px;
  background: #e9e9e7;
  color: #111820;
  box-shadow: 0 18px 44px rgba(106, 40, 0, .12);
}

.purpose-dot-arrow {
  position: absolute;
  top: clamp(68px, 5.8vw, 92px);
  z-index: 3;
  width: 88px;
  height: 118px;
  pointer-events: none;
}

.purpose-dot-arrow-one {
  left: calc(35.333% - 44px);
}

.purpose-dot-arrow-two {
  left: calc(66.666% - 44px);
}

.purpose-dot-arrow i {
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
}

.purpose-dot-arrow i:nth-child(1) { left: 8%; top: 0; }
.purpose-dot-arrow i:nth-child(2) { left: 24%; top: 12%; }
.purpose-dot-arrow i:nth-child(3) { left: 39%; top: 27%; }
.purpose-dot-arrow i:nth-child(4) { left: 54%; top: 43%; }
.purpose-dot-arrow i:nth-child(5) { left: 39%; top: 59%; }
.purpose-dot-arrow i:nth-child(6) { left: 24%; top: 74%; }
.purpose-dot-arrow i:nth-child(7) { left: 8%; top: 88%; }

.purpose-number {
  position: absolute;
  top: 12px;
  right: 18px;
  color: var(--deep-orange);
  font-size: clamp(3.1rem, 4.6vw, 4.8rem);
  font-weight: 800;
  line-height: .85;
}

.purpose-principle h4 {
  max-width: 16ch;
  margin: 0 0 var(--subtitle-after);
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 800;
  line-height: 1.14;
}

.purpose-principle p {
  margin: 0;
  color: #111820;
  font-size: clamp(.78rem, .84vw, .9rem);
  font-weight: 400;
  line-height: 1.38;
}

.purpose-principles.is-interactive {
  display: flex;
  align-items: stretch;
}

.purpose-principles.is-interactive .purpose-principle {
  flex: .8 1 0;
  min-width: 0;
  min-height: clamp(340px, 30vw, 440px);
  cursor: pointer;
  transition: flex-grow .5s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease;
}

.purpose-principles.is-interactive .purpose-principle.is-open {
  flex-grow: 1.8;
  cursor: default;
  box-shadow: 0 22px 52px rgba(106, 40, 0, .18);
}

.purpose-principle-trigger {
  display: block;
  width: 100%;
  min-height: clamp(58px, 5vw, 74px);
  margin: 0;
  padding: 0 clamp(48px, 4.5vw, 68px) 0 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.purpose-principle-trigger:focus-visible {
  outline: 2px solid var(--deep-orange);
  outline-offset: 5px;
}

.purpose-principle-title {
  display: block;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 800;
  line-height: 1.14;
}

.purpose-principle-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows .42s cubic-bezier(.22, .61, .36, 1),
    opacity .24s ease,
    visibility 0s linear .42s;
}

.purpose-principle-panel > p {
  min-height: 0;
  overflow: hidden;
}

.purpose-principle.is-open .purpose-principle-panel {
  grid-template-rows: 1fr;
  padding-top: var(--subtitle-after);
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows .46s cubic-bezier(.22, .61, .36, 1),
    opacity .3s ease .12s,
    visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .purpose-principles.is-interactive .purpose-principle,
  .purpose-principle-panel {
    transition: none;
  }
}

.esg-section {
  scroll-margin-top: 92px;
  padding: clamp(52px, 5.4vw, 84px) 0;
  background: linear-gradient(180deg, #fff 0%, #f7f7f5 100%);
  overflow: hidden;
}

.esg-layout {
  display: grid;
  grid-template-columns: minmax(280px, .64fr) minmax(560px, 1.36fr);
  column-gap: clamp(34px, 5.2vw, 82px);
  row-gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.esg-layout > .editorial-title {
  grid-column: 1 / -1;
  margin-bottom: 0;
  white-space: nowrap;
}

.esg-layout > .editorial-title span,
.esg-layout > .editorial-title strong {
  display: inline;
}

.esg-highlight {
  max-width: 520px;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 30px);
  color: var(--deep-orange);
  background: #f1f1f0;
  font-size: clamp(1.34rem, 1.85vw, 1.9rem);
  font-weight: 400;
  line-height: 1.32;
}

.esg-media {
  position: relative;
  max-width: 520px;
  min-height: clamp(220px, 22vw, 320px);
  margin: clamp(22px, 3vw, 36px) 0 0;
  overflow: hidden;
  border-radius: 0 0 54px 0;
  background: #f1f1f0;
  box-shadow: 0 22px 54px rgba(38, 38, 38, .12);
}

.esg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(245, 130, 32, .2) 0%, rgba(245, 130, 32, 0) 46%);
  pointer-events: none;
}

.esg-media img {
  display: block;
  width: 100%;
  min-height: inherit;
  object-fit: cover;
}

.esg-diagram {
  --esg-purple: #9d4eb6;
  --esg-teal: #11a894;
  --esg-orange: #ff831c;
  position: relative;
  height: 100%;
  min-height: clamp(430px, 39vw, 520px);
  isolation: isolate;
}

.esg-orbit {
  position: absolute;
  left: 50%;
  top: 63%;
  z-index: 4;
  width: min(30vw, 272px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.esg-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid #fff;
  border-radius: 50%;
}

.esg-orbit-arc {
  --arc-color: #fff;
  --arc-start: 0deg;
  --arrow-rotate: 0deg;
  position: absolute;
  inset: 8px;
  border: 0;
  border-radius: 50%;
}

.esg-orbit-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from var(--arc-start), transparent 0deg 16deg, var(--arc-color) 16deg 98deg, transparent 98deg 360deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
}

.esg-orbit-arc::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--arc-color);
  transform: translate(-50%, -50%) rotate(20deg);
}

.esg-orbit-arc-one {
  --arc-color: var(--esg-purple);
  --arc-start: 286deg;
  --arrow-rotate: 72deg;
}

.esg-orbit-arc-one::after {
  left: 177px;
  top: 13px;
}

.esg-orbit-arc-two {
  --arc-color: var(--esg-teal);
  --arc-start: 46deg;
  --arrow-rotate: 188deg;
}

.esg-orbit-arc-two::after {
  left: 207px;
  top: 228px;
}

.esg-orbit-arc-three {
  --arc-color: var(--esg-orange);
  --arc-start: 166deg;
  --arrow-rotate: -108deg;
}

.esg-orbit-arc-three::after {
  left: 5px;
  top: 137px;
}

.esg-node {
  --esg-node-size: clamp(190px, 17vw, 255px);
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--esg-node-size);
  height: var(--esg-node-size);
  padding: clamp(26px, 2.5vw, 40px);
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 58px rgba(22, 24, 28, .12);
  transition: filter .34s ease, box-shadow .34s ease;
}

.esg-node::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .2);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .45s ease, transform .45s ease;
}

.esg-node strong,
.esg-node > span:not(.esg-node-index) {
  position: relative;
  z-index: 3;
  transition: opacity .42s ease, transform .42s ease, max-height .42s ease;
}

.esg-node strong {
  display: block;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1rem, 1.22vw, 1.32rem);
  font-weight: 800;
  line-height: 1.08;
}

.esg-node > span:not(.esg-node-index) {
  max-width: 23ch;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(.74rem, .82vw, .94rem);
  line-height: 1.17;
  opacity: 0;
  transform: translateY(12px);
}

.esg-node-index {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, .4);
  font-size: clamp(3.4rem, 3.4vw, 5.2rem);
  font-weight: 800;
  line-height: 1;
  transition: transform .42s ease, opacity .42s ease;
  pointer-events: none;
}

.esg-node-governance {
  left: 50%;
  top: 25%;
  background: var(--esg-purple);
  text-align: center;
}

.esg-node-performance {
  left: 76%;
  top: 71%;
  background: var(--esg-teal);
  text-align: center;
}

.esg-node-leadership {
  left: 24%;
  top: 71%;
  background: var(--esg-orange);
  text-align: center;
}

.esg-node:hover,
.esg-node:focus-visible,
.esg-node.is-active {
  z-index: 6;
  filter: saturate(1.06) brightness(1.03);
  box-shadow: 0 30px 72px rgba(22, 24, 28, .18);
  outline: none;
}

.esg-node:hover::before,
.esg-node:focus-visible::before,
.esg-node.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.esg-node:hover .esg-node-index,
.esg-node:focus-visible .esg-node-index,
.esg-node.is-active .esg-node-index,
.esg-node:hover strong,
.esg-node:focus-visible strong,
.esg-node.is-active strong {
  transform: translateY(-12px);
}

.esg-node:hover > span:not(.esg-node-index),
.esg-node:focus-visible > span:not(.esg-node-index),
.esg-node.is-active > span:not(.esg-node-index) {
  max-height: 120px;
  margin-top: 8px;
  opacity: 1;
  transform: translateY(-8px);
}

.esg-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(2px, .8vw, 12px);
  z-index: 2;
  width: min(100%, 420px);
  margin: 0;
  color: #7a8086;
  font-size: clamp(.78rem, .82vw, .92rem);
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  transform: translateX(-50%);
}

.topic-section {
  scroll-margin-top: 92px;
  padding: clamp(24px, 3vw, 42px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.topic-section:nth-of-type(odd) {
  background: linear-gradient(180deg, #fff 0%, #f7f8f9 100%);
}

.topic-layout {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.topic-layout h2 {
  position: relative;
  padding-left: 18px;
  color: var(--charcoal);
  font-size: clamp(1.72rem, 3vw, 3rem);
  font-weight: 300;
}

.topic-layout h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .08em;
  width: 4px;
  height: .9em;
  background: var(--accent-gradient);
}

.topic-layout p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.6;
}

.ethics-section {
  padding: clamp(40px, 4.8vw, 72px) 0 clamp(48px, 5.2vw, 80px);
  background:
    linear-gradient(90deg, rgba(245, 130, 32, .06) 0%, rgba(245, 130, 32, 0) 28%),
    #fff;
}

.ethics-intro-layout {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

.ethics-section-head {
  max-width: none;
}

.ethics-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
}

.ethics-main-column {
  display: grid;
  gap: clamp(24px, 2.8vw, 36px);
  min-width: 0;
}

.ethics-editorial-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  text-transform: none;
}

.ethics-editorial-title.editorial-title strong,
.ethics-editorial-title.editorial-title .ethics-title-join {
  display: inline;
}

.ethics-editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.ethics-editorial-title .ethics-title-join {
  font-weight: 300;
}

.ethics-section-head .ethics-editorial-title {
  margin-bottom: 0;
}

.ethics-intro-text {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.ethics-diligence-card {
  --ethics-chart-height: clamp(148px, 14vw, 188px);
  margin: 0;
  padding: clamp(22px, 2.4vw, 32px) clamp(18px, 2vw, 28px) clamp(20px, 2.2vw, 28px);
  border-radius: 2px;
  background: #ececea;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.ethics-diligence-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

.ethics-card-title {
  margin: 0;
  color: var(--deep-red);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  font-weight: 800;
  line-height: 1.15;
}

/* Títulos reales de gráfica — patrón canónico: Suministro de electricidad (%) */
h3.chart-title {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: clamp(.9rem, 1.02vw, 1.05rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: normal;
}

.ethics-diligence-head h3.chart-title,
.people-metric-head h3.chart-title,
.safety-injury-titles h3.chart-title {
  margin-bottom: 0;
}

.ethics-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4e5359;
  font-size: .72rem;
  font-weight: 700;
}

.ethics-chart-legend li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ethics-chart-legend li:has(.ethics-legend-swatch--critical) {
  color: var(--orange);
}

.ethics-legend-swatch {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 1px;
}

.ethics-legend-swatch--critical {
  background: var(--orange);
}

.ethics-legend-swatch--non-critical {
  background: #c8cbce;
}

.ethics-bar-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(6px, 1vw, 14px);
  align-items: end;
  min-height: calc(var(--ethics-chart-height) + 72px);
  padding-top: 8px;
}

.ethics-bar-chart::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8px;
  right: 0;
  left: 0;
  height: var(--ethics-chart-height);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(
      180deg,
      rgba(17, 24, 32, .06) 0,
      rgba(17, 24, 32, .06) 1px,
      transparent 1px,
      transparent 25%
    );
  pointer-events: none;
}

.ethics-bar-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
  min-width: 0;
}

.ethics-bar-pair {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, .6vw, 8px);
  width: 100%;
  height: var(--ethics-chart-height);
}

.ethics-bar-col {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  height: 100%;
}

.ethics-bar-value {
  color: #111820;
  font-size: clamp(.62rem, .72vw, .76rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.ethics-bar {
  display: block;
  width: clamp(13px, 1.45vw, 20px);
  height: max(8px, calc(var(--ethics-chart-height) * var(--bar-scale)));
  border-radius: 4px;
  transform-origin: bottom center;
  will-change: transform;
}

.ethics-bar--critical {
  background: var(--orange);
}

.ethics-bar--non-critical {
  background: #c8cbce;
}

.ethics-bar-label {
  margin: 0;
  max-width: 100%;
  color: #4e5359;
  font-size: clamp(.58rem, .68vw, .72rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.ethics-bar-chart.people-salary-bar-chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ethics-bar-chart.people-salary-bar-chart .ethics-bar-group {
  flex: 0 0 auto;
  width: auto;
  max-width: clamp(88px, 24%, 140px);
  align-items: center;
}

.ethics-bar-chart.people-salary-bar-chart .ethics-bar-pair {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  gap: clamp(4px, .6vw, 8px);
}

.ethics-bar-chart.people-salary-bar-chart .ethics-bar-col {
  flex: 0 0 auto;
  width: auto;
}

.ethics-bar-chart.people-salary-bar-chart .ethics-bar-label {
  width: 100%;
  margin: 0;
  color: #4e5359;
  font-size: clamp(.58rem, .68vw, .72rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.ethics-bar-chart.people-women-bar-chart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4px, .8vw, 10px);
  align-items: end;
}

.ethics-bar-chart.people-women-bar-chart .people-women-bar-group {
  align-items: center;
}

.ethics-bar-chart.people-women-bar-chart .ethics-bar-value {
  font-size: clamp(.5rem, .58vw, .62rem);
  white-space: nowrap;
}

.ethics-bar-chart.people-women-bar-chart .ethics-bar-label {
  width: 100%;
  margin: 0;
  color: #4e5359;
  font-size: clamp(.58rem, .68vw, .72rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.ethics-evaluation {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
}

.ethics-evaluation-title {
  margin: 0;
  color: var(--editorial-accent);
  font-size: clamp(1.14rem, 1.3vw, 1.34rem);
  font-weight: 800;
  line-height: 1.22;
}

.ethics-eval-block {
  margin: 0;
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(17, 24, 32, .1);
}

.ethics-eval-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

/* Mismo patrón tipográfico que Social > .rights-evaluation-title (“Evaluación de riesgos”) */
.ethics-eval-heading {
  margin: 0 0 12px;
  color: var(--deep-red);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: normal;
}

.ethics-eval-heading strong,
.ethics-eval-heading span {
  color: inherit;
  font-weight: 400;
}

.ethics-eval-block p {
  margin: 0 0 12px;
  color: #111820;
  font-size: clamp(.86rem, .92vw, .96rem);
  font-weight: 400;
  line-height: 1.58;
}

.ethics-eval-block p:last-child {
  margin-bottom: 0;
}

.ethics-eval-list {
  margin: 0;
  padding-left: 1.1em;
  color: #111820;
  font-size: clamp(.86rem, .92vw, .96rem);
  line-height: 1.52;
}

.ethics-eval-list li + li {
  margin-top: 6px;
}

.value-chain-section {
  scroll-margin-top: 92px;
  padding: clamp(40px, 4.8vw, 72px) 0 clamp(48px, 5.2vw, 80px);
  background:
    linear-gradient(90deg, rgba(245, 130, 32, .05) 0%, rgba(245, 130, 32, 0) 26%),
    #fff;
}

.value-chain-layout {
  display: grid;
  gap: clamp(28px, 3.2vw, 44px);
}

.value-chain-stage {
  display: grid;
  gap: clamp(22px, 2.6vw, 32px);
}

.value-chain-head {
  max-width: none;
}

.value-chain-title {
  margin: 0;
  color: #4e5359;
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  text-transform: none;
  white-space: nowrap;
}

.value-chain-title.editorial-title span,
.value-chain-title.editorial-title strong {
  display: inline;
}

.value-chain-title strong {
  color: var(--orange);
  font-weight: 800;
}

.value-chain-opening {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.value-chain-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.value-chain-intro-text {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.value-chain-cert-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: #ececea;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.value-chain-cert-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  object-position: center;
}

.value-chain-cert-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(18px, 2.2vw, 28px);
  margin: 0;
  padding: clamp(18px, 2vw, 26px) clamp(16px, 1.8vw, 22px);
}

.value-chain-cert-headline {
  margin: 0;
  color: var(--editorial-accent);
  font-size: clamp(1.02rem, 1.22vw, 1.32rem);
  font-weight: 800;
  line-height: 1.2;
}

.value-chain-cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
}

.value-chain-cert-logos img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(34px, 3.8vw, 46px);
  object-fit: contain;
}

.value-chain-chem-note {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 700;
  line-height: 1.68;
}

.value-chain-diagram-block {
  position: relative;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.value-chain-diagram-surface {
  padding: clamp(22px, 2.6vw, 32px) clamp(14px, 2vw, 24px) clamp(18px, 2.2vw, 26px);
  border-radius: 2px;
  background: #ececea;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
  overflow: visible;
}

.value-chain-diagram-kicker {
  margin: 0 0 var(--subtitle-diagram-after);
  color: #e40000;
  text-align: center;
}

.value-chain-diagram {
  position: relative;
  width: 100%;
}

.value-chain-values {
  --node-size: clamp(158px, 20.5vw, 226px);
  --node-overlap: clamp(16px, 2vw, 24px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(10px, 1.2vw, 16px) clamp(6px, 1vw, 12px) clamp(12px, 1.4vw, 18px);
}

.value-chain-node + .value-chain-node {
  margin-left: calc(var(--node-overlap) * -1);
}

.value-chain-node {
  --node-color: #ab2c2a;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 var(--node-size);
  width: var(--node-size);
  min-width: 0;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--node-color);
  cursor: pointer;
  transform-origin: center center;
  transition: transform .42s ease, filter .42s ease, box-shadow .42s ease, z-index .01s linear;
}

.value-chain-node:not(.value-chain-node--clientes)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  width: 17px;
  height: 20px;
  background: rgba(255, 255, 255, .55);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
  pointer-events: none;
}

.value-chain-node::before {
  display: none;
}

.value-chain-node span {
  position: relative;
  z-index: 5;
  padding: 0 clamp(12px, 1.4vw, 18px);
  font-size: clamp(.72rem, 1.05vw, 1.02rem);
  font-weight: 800;
  line-height: 1.14;
  text-align: center;
  text-wrap: balance;
}

.value-chain-node--remitentes {
  --node-color: #ab2c2a;
  z-index: 4;
}

.value-chain-node--proveedores {
  --node-color: #d40812;
  z-index: 3;
}

.value-chain-node--contratistas {
  --node-color: #eb3c1d;
  z-index: 2;
}

.value-chain-node--clientes {
  --node-color: #f5a020;
  z-index: 1;
}

.value-chain-node:hover,
.value-chain-node:focus-visible,
.value-chain-node.is-active {
  z-index: 5;
  filter: saturate(1.06) brightness(1.02);
  box-shadow: 0 22px 52px rgba(55, 28, 12, .16);
  outline: none;
  transform: translateY(-6px) scale(1.045);
}

.value-chain-node:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.value-chain-diagram.has-selection .value-chain-node:not(.is-active):not(:hover):not(:focus-visible) {
  opacity: .82;
}

.rights-process-diagram {
  display: grid;
  gap: 10px;
  width: 100%;
}

.rights-process-diagram .value-chain-values {
  --node-size: 180px;
  --node-overlap: 11px;
  padding: 0;
}

.rights-process-diagram .value-chain-node + .value-chain-node {
  margin-left: -11px;
}

.rights-process-diagram .value-chain-node {
  --node-color: rgba(188, 188, 188, .82);
  padding: 14px;
  border: 0;
  color: #111820;
  background: var(--node-color);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.rights-process-diagram .value-chain-node::before {
  display: none;
}

.rights-process-diagram .value-chain-node::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  width: 17px;
  height: 18px;
  background: inherit;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
  pointer-events: none;
}

.rights-process-diagram .rights-process-node--6::after {
  display: none;
}

.rights-process-diagram .rights-process-node--1::after,
.rights-process-diagram .rights-process-node--2::after,
.rights-process-diagram .rights-process-node--4::after,
.rights-process-diagram .rights-process-node--5::after {
  background: #fff;
}

.rights-process-diagram .rights-process-node--1,
.rights-process-diagram .rights-process-node--4 {
  z-index: 3;
}

.rights-process-diagram .rights-process-node--2,
.rights-process-diagram .rights-process-node--5 {
  z-index: 2;
}

.rights-process-diagram .rights-process-node--3,
.rights-process-diagram .rights-process-node--6 {
  z-index: 1;
}

.rights-process-diagram .value-chain-node span {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0 18px;
  color: #111820;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}

.rights-process-diagram .business-node-dots {
  position: absolute;
  right: -1%;
  top: 50%;
  z-index: 0;
  width: 98px;
  height: 114px;
  transform: translateY(-50%);
  pointer-events: none;
}

.rights-process-diagram .business-node-dots i {
  width: 12px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .27);
}

.rights-process-diagram .value-chain-node:hover,
.rights-process-diagram .value-chain-node:focus-visible,
.rights-process-diagram .value-chain-node.is-active {
  transform: none;
  filter: none;
  box-shadow: none;
  outline: none;
}

.value-chain-fallback {
  display: none;
  gap: 8px;
  margin: clamp(12px, 1.6vw, 16px) 0 0;
  padding: 0;
  list-style: none;
}

.value-chain-fallback-btn {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(17, 24, 32, .12);
  border-radius: 2px;
  background: #fff;
  color: #111820;
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: border-color .24s ease, color .24s ease, background .24s ease;
}

.value-chain-fallback-btn:hover,
.value-chain-fallback-btn:focus-visible {
  border-color: var(--orange);
  outline: none;
}

.value-chain-fallback-btn.is-active {
  border-color: var(--orange);
  background: rgba(245, 130, 32, .08);
  color: #111820;
}

.value-chain-diligence-panel {
  display: grid;
  grid-template-columns: minmax(240px, .48fr) minmax(0, .52fr);
  align-items: stretch;
  margin: clamp(8px, 1vw, 12px) 0 0;
  min-height: clamp(320px, 34vw, 430px);
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  box-shadow:
    0 18px 48px rgba(35, 24, 18, .08),
    inset 0 0 0 1px rgba(17, 24, 32, .06);
}

.value-chain-diligence-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.value-chain-diligence-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
}

.value-chain-diligence-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 22px);
  margin: 0;
  padding: clamp(28px, 3.2vw, 44px) clamp(26px, 3vw, 40px);
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(245, 130, 32, .98) 0%,
      rgba(235, 98, 28, .97) 48%,
      rgba(204, 79, 24, .98) 100%
    );
}

.value-chain-diligence-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(.92rem, .98vw, 1.02rem);
  font-weight: 300;
  line-height: 1.64;
}

.value-chain-highlight-panel {
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(240px, .48fr);
  align-items: stretch;
  margin: clamp(22px, 2.8vw, 34px) 0 0;
  min-height: clamp(280px, 30vw, 380px);
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  box-shadow:
    0 18px 48px rgba(35, 24, 18, .08),
    inset 0 0 0 1px rgba(17, 24, 32, .06);
}

.value-chain-highlight-copy {
  display: flex;
  align-items: center;
  margin: 0;
  padding: clamp(32px, 3.6vw, 48px) clamp(28px, 3.2vw, 44px);
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(245, 130, 32, .98) 0%,
      rgba(235, 98, 28, .97) 48%,
      rgba(204, 79, 24, .98) 100%
    );
}

.value-chain-highlight-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(1.32rem, 1.82vw, 1.82rem);
  font-weight: 500;
  line-height: 1.32;
  text-wrap: balance;
}

.value-chain-highlight-copy strong {
  color: #fff;
  font-weight: 800;
}

.value-chain-highlight-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.value-chain-highlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 30vw, 380px);
  object-fit: cover;
  object-position: center;
}

.placeholder-section {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.topic-index {
  padding: clamp(44px, 6vw, 72px) 0 clamp(24px, 4vw, 42px);
  background: #fff;
}

.topic-index h2 {
  max-width: 760px;
  margin-top: 10px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
}

.business-model-section {
  scroll-margin-top: 92px;
  padding: clamp(36px, 4.2vw, 58px) 0 clamp(42px, 4.6vw, 64px);
  background: #fff;
}

.business-model-layout {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(620px, 1.42fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.business-model-copy {
  max-width: 430px;
}

.content-kicker {
  margin: clamp(-34px, -2.6vw, -22px) 0 clamp(32px, 4vw, 48px);
  color: #25307f;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.editorial-title {
  margin: 0 0 clamp(38px, 5vw, 64px);
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
}

.editorial-title span,
.editorial-title strong {
  display: inline;
}

.editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.business-model-copy p {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  font-weight: 400;
  line-height: 1.62;
}

.business-model-diagram {
  --business-node-size: clamp(108px, 8vw, 136px);
  --business-blue: #26b9df;
  --business-cyan: #18add6;
  --business-green: #50b849;
  --business-teal: #10a78f;
  --business-orange: #ff831c;
  --business-red: #f04423;
  --business-purple: #8c3fae;
  --business-navy: #26216f;
  position: relative;
  min-height: clamp(660px, 58vw, 800px);
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border-radius: 2px;
  background: #dedddb;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, .04);
}

.business-support {
  position: absolute;
  z-index: 3;
  left: 34%;
  right: 6.5%;
  display: grid;
  place-items: center;
  min-height: clamp(72px, 5.4vw, 92px);
  padding: 16px 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--business-navy);
  font-size: clamp(.68rem, .78vw, .86rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  box-shadow: none;
}

.business-support-top {
  top: 5.3%;
}

.business-support-bottom {
  right: 6.5%;
  bottom: 5.3%;
  color: var(--business-purple);
}

.business-flow {
  position: absolute;
  z-index: 1;
  border-radius: 0;
  pointer-events: none;
}

.business-flow::before,
.business-flow::after {
  content: "";
  position: absolute;
  border-radius: 0;
}

.business-flow-top {
  left: 16%;
  right: 6.5%;
  top: 22%;
  height: 2px;
  color: var(--business-navy);
  background: var(--business-navy);
}

.business-flow-top::before,
.business-flow-top::after,
.business-flow-bottom::before,
.business-flow-bottom::after {
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
}

.business-flow-top::before,
.business-flow-bottom::before {
  left: -2px;
  border-right: 13px solid currentColor;
}

.business-flow-top::after,
.business-flow-bottom::after {
  right: -2px;
  border-left: 13px solid currentColor;
}

.business-flow-left {
  left: 16%;
  top: 26%;
  bottom: 23%;
  width: 74px;
  color: #187636;
  background: none;
}

.business-flow-left .business-flow-segment {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: currentColor;
}

.business-flow-segment-vertical {
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
}

.business-flow-segment-top,
.business-flow-segment-bottom {
  left: 0;
  width: 66px;
  height: 2px;
}

.business-flow-segment-top {
  top: 0;
}

.business-flow-segment-bottom {
  bottom: 0;
}

.business-flow-left::before,
.business-flow-left::after,
.business-flow-center::before,
.business-flow-center::after {
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transform: translateX(-50%);
}

.business-flow-left::before,
.business-flow-center::before {
  top: -2px;
  border-bottom: 13px solid currentColor;
}

.business-flow-left::after,
.business-flow-center::after {
  bottom: -2px;
  border-top: 13px solid currentColor;
}

.business-flow-left::before,
.business-flow-left::after {
  left: 66px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 13px solid currentColor;
  border-right: 0;
  transform: translateY(-50%);
}

.business-flow-left::before {
  top: 0;
  bottom: auto;
}

.business-flow-left::after {
  top: auto;
  bottom: 0;
  transform: translateY(50%);
}

.business-flow-bottom {
  left: 16%;
  right: 6.5%;
  bottom: 18.4%;
  height: 2px;
  color: var(--business-purple);
  background: var(--business-purple);
}

.business-flow-center {
  z-index: 4;
  left: 64%;
  top: 15.2%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(var(--business-navy), var(--business-navy)) 0 0 / 100% 9.8% no-repeat, linear-gradient(var(--business-purple), var(--business-purple)) 0 100% / 100% 4.8% no-repeat;
}

.business-flow-center::before {
  top: -13px;
  color: var(--business-navy);
}

.business-flow-center::after {
  bottom: -13px;
  color: var(--business-purple);
}

.business-node {
  --node-color: var(--business-blue);
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: var(--business-node-size);
  aspect-ratio: 1;
  padding: 14px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--node-color);
  box-shadow: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease, opacity .45s ease;
}

.business-node::before {
  content: "";
  position: absolute;
  display: none;
  right: 15%;
  top: 51%;
  width: 48px;
  height: 58px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 16% 18% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 34% 30% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 55% 42% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 75% 50% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 55% 58% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 34% 70% / 100% 100% no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .27) 0 4px, transparent 4.6px) 16% 82% / 100% 100% no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}

.business-node::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 10px;
  height: 13px;
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.business-node span {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  font-size: clamp(.68rem, .78vw, .86rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.business-node:hover,
.business-node:focus-visible,
.business-node.is-active {
  z-index: 20;
  transform: translate(-50%, calc(-50% - 8px)) scale(1.045);
  filter: saturate(1.08) brightness(1.04);
  outline: none;
}

.business-model-diagram.has-active .business-node:not(.is-active) {
  opacity: .56;
}

.business-node-sustainability {
  --node-color: #fff;
  left: 16%;
  top: 50%;
  z-index: 10;
  color: #187636;
}

.business-node-sustainability::before {
  display: none;
}

.business-node-dots {
  position: absolute;
  right: -18%;
  top: 50%;
  z-index: 2;
  width: 74px;
  height: 86px;
  transform: translateY(-50%);
  pointer-events: none;
}

.business-node-dots i {
  position: absolute;
  left: var(--dot-left);
  top: var(--dot-top);
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .27);
  transform: translate(-50%, -50%);
}

.business-node-sustainability .business-node-dots i {
  background: rgba(24, 118, 54, .22);
}

.business-node-sustainability::after {
  background: #fff;
}

.business-node-green {
  --node-color: var(--business-green);
  left: 36.5%;
  top: 50%;
  z-index: 9;
}

.business-node-dev {
  left: 49%;
  top: 50%;
  z-index: 8;
}

.business-node-dev::after {
  background: rgba(255, 255, 255, .55);
}

.business-node-mining {
  --node-color: var(--business-cyan);
  left: 61.5%;
  top: 50%;
  z-index: 7;
}

.business-node-smelting {
  --node-color: var(--business-teal);
  left: 74%;
  top: 50%;
  z-index: 6;
}

.business-node-market {
  --node-color: var(--business-red);
  left: 86.5%;
  top: 50%;
  z-index: 5;
}

.business-node-market::after {
  display: none;
}

.business-node-suppliers {
  --node-color: var(--business-teal);
  left: 61.5%;
  top: 32.5%;
  z-index: 6;
}

.business-node-suppliers::after {
  top: auto;
  right: 15%;
  bottom: 0;
  width: 11px;
  height: 11px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: rotate(-394deg);
}

.business-node-suppliers::before {
  display: none;
}

.business-node-suppliers .business-node-dots {
  right: -2%;
  top: auto;
  bottom: -17%;
  transform: rotate(57deg);
  width: 74px;
  height: 86px;
}

.business-node-chemical {
  --node-color: var(--business-orange);
  left: 61%;
  top: 71%;
  z-index: 8;
}

.business-node-chemical::after {
  right: -9px;
  top: 50%;
  bottom: auto;
  width: 10px;
  height: 13px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  background: #fff;
}

.business-node-process {
  --node-color: var(--business-orange);
  left: 73.5%;
  top: 71%;
  z-index: 7;
}

.business-node-process::after {
  top: -2px;
  right: 15%;
  bottom: auto;
  width: 12px;
  height: 12px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: rotate(30deg);
}

.business-node-process::before {
  display: none;
}

.business-node-process .business-node-dots {
  right: -1%;
  top: -16%;
  width: 74px;
  height: 86px;
  transform: rotate(33deg);
}

.business-node-suppliers span,
.business-node-process span {
  max-width: 10ch;
}

.business-node-market span {
  max-width: 12.5ch;
  font-size: clamp(.64rem, .72vw, .8rem);
  line-height: 1.08;
}

.business-legend {
  display: none;
}

.business-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.business-legend i {
  display: block;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--legend-color);
}

.business-detail {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 9;
  width: auto;
  min-width: 208px;
  padding: 13px 17px;
  border-left: 5px solid var(--deep-orange);
  border-radius: 4px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 36px rgba(16, 24, 40, .16);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events: none;
}

.business-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.business-detail strong {
  display: block;
  margin-bottom: 0;
  color: var(--deep-orange);
  font-size: 1rem;
}

.business-detail span {
  display: none;
}

.stakeholders-section {
  scroll-margin-top: 92px;
  padding: clamp(38px, 4.2vw, 60px) 0;
  background:
    linear-gradient(90deg, rgba(245, 130, 32, .08) 0%, rgba(245, 130, 32, 0) 34%),
    #fff;
}

.stakeholders-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5.6vw, 86px);
  align-items: center;
}

.stakeholders-copy {
  position: relative;
  z-index: 2;
}

.stakeholders-copy .editorial-title {
  margin-bottom: 40px;
}

.stakeholders-copy .content-kicker {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.stakeholders-copy p {
  max-width: 620px;
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 400;
  line-height: 1.66;
}

.stakeholders-media {
  position: relative;
  margin: 0;
  min-height: clamp(430px, 42vw, 590px);
  border-radius: 0 0 76px 0;
  overflow: hidden;
  background: #f2f2f0;
}

.stakeholders-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.purpose-section {
  scroll-margin-top: 92px;
  padding: clamp(42px, 4.8vw, 68px) 0 clamp(52px, 5.5vw, 82px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, #f7f7f5 62%, #f7f7f5 100%);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}

.purpose-copy .editorial-title {
  margin-bottom: clamp(24px, 3vw, 38px);
  white-space: nowrap;
}

.purpose-copy .editorial-title span,
.purpose-copy .editorial-title strong {
  display: inline;
}

.purpose-highlight {
  max-width: 460px;
  margin: 30px 0 0;
  padding: 14px 18px 15px;
  color: var(--deep-orange);
  background: #f1f1f0;
  font-size: clamp(1.32rem, 1.82vw, 1.82rem);
  font-weight: 400;
  line-height: 1.32;
  text-align: right;
}

.purpose-intro {
  align-self: start;
  padding-top: clamp(66px, 7.1vw, 116px);
}

.purpose-intro p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 400;
  line-height: 1.66;
}

.purpose-intro p:last-child {
  margin-bottom: 0;
}

.purpose-principles {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 44px);
  margin-top: clamp(4.5px, .6vw, 9px);
  padding: clamp(80px, 6.75vw, 103px) clamp(30px, 4.2vw, 58px) clamp(34px, 3.8vw, 52px);
  overflow: visible;
  background: linear-gradient(135deg, #f04423 0%, #ff831c 100%);
  box-shadow: 0 24px 70px rgba(168, 71, 12, .14);
}

.purpose-principles h3 {
  position: absolute;
  top: 18px;
  left: 50%;
  margin: 0;
  color: #fff;
  transform: translateX(-50%);
}

/* Misma escala tipográfica que .safety-panel-hint; color blanco por contraste sobre el panel naranja */
.purpose-principles-hint {
  position: absolute;
  top: 46px;
  left: 50%;
  z-index: 2;
  width: min(92%, 36em);
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.78rem, .84vw, .86rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.infographic-title {
  font-size: clamp(1.18rem, 1.42vw, 1.42rem);
  font-weight: 800;
  line-height: 1;
}

.purpose-principle {
  position: relative;
  z-index: 2;
  min-height: clamp(380px, 34vw, 500px);
  padding: clamp(38px, 3vw, 50px) clamp(22px, 2.2vw, 30px) clamp(24px, 2.4vw, 34px);
  border-radius: 30px;
  background: #e9e9e7;
  color: #111820;
  box-shadow: 0 18px 44px rgba(106, 40, 0, .12);
}

.purpose-dot-arrow {
  position: absolute;
  top: clamp(68px, 5.8vw, 92px);
  z-index: 3;
  width: 88px;
  height: 118px;
  pointer-events: none;
}

.purpose-dot-arrow-one {
  left: calc(35.333% - 44px);
}

.purpose-dot-arrow-two {
  left: calc(66.666% - 44px);
}

.purpose-dot-arrow i {
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
}

.purpose-dot-arrow i:nth-child(1) { left: 8%; top: 0; }
.purpose-dot-arrow i:nth-child(2) { left: 24%; top: 12%; }
.purpose-dot-arrow i:nth-child(3) { left: 39%; top: 27%; }
.purpose-dot-arrow i:nth-child(4) { left: 54%; top: 43%; }
.purpose-dot-arrow i:nth-child(5) { left: 39%; top: 59%; }
.purpose-dot-arrow i:nth-child(6) { left: 24%; top: 74%; }
.purpose-dot-arrow i:nth-child(7) { left: 8%; top: 88%; }

.purpose-number {
  position: absolute;
  top: 12px;
  right: 18px;
  color: var(--deep-orange);
  font-size: clamp(3.1rem, 4.6vw, 4.8rem);
  font-weight: 800;
  line-height: .85;
}

.purpose-principle h4 {
  max-width: 16ch;
  margin: 0 0 var(--subtitle-after);
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 800;
  line-height: 1.14;
}

.purpose-principle p {
  margin: 0;
  color: #111820;
  font-size: clamp(.78rem, .84vw, .9rem);
  font-weight: 400;
  line-height: 1.38;
}

.purpose-principles.is-interactive {
  display: flex;
  align-items: stretch;
}

.purpose-principles.is-interactive .purpose-principle {
  flex: .8 1 0;
  min-width: 0;
  min-height: clamp(340px, 30vw, 440px);
  cursor: pointer;
  transition: flex-grow .5s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease;
}

.purpose-principles.is-interactive .purpose-principle.is-open {
  flex-grow: 1.8;
  cursor: default;
  box-shadow: 0 22px 52px rgba(106, 40, 0, .18);
}

.purpose-principle-trigger {
  display: block;
  width: 100%;
  min-height: clamp(58px, 5vw, 74px);
  margin: 0;
  padding: 0 clamp(48px, 4.5vw, 68px) 0 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.purpose-principle-trigger:focus-visible {
  outline: 2px solid var(--deep-orange);
  outline-offset: 5px;
}

.purpose-principle-title {
  display: block;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 800;
  line-height: 1.14;
}

.purpose-principle-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows .42s cubic-bezier(.22, .61, .36, 1),
    opacity .24s ease,
    visibility 0s linear .42s;
}

.purpose-principle-panel > p {
  min-height: 0;
  overflow: hidden;
}

.purpose-principle.is-open .purpose-principle-panel {
  grid-template-rows: 1fr;
  padding-top: var(--subtitle-after);
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows .46s cubic-bezier(.22, .61, .36, 1),
    opacity .3s ease .12s,
    visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .purpose-principles.is-interactive .purpose-principle,
  .purpose-principle-panel {
    transition: none;
  }
}

.esg-section {
  scroll-margin-top: 92px;
  padding: clamp(52px, 5.4vw, 84px) 0;
  background: linear-gradient(180deg, #fff 0%, #f7f7f5 100%);
  overflow: hidden;
}

.esg-layout {
  display: grid;
  grid-template-columns: minmax(280px, .64fr) minmax(560px, 1.36fr);
  column-gap: clamp(34px, 5.2vw, 82px);
  row-gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.esg-layout > .editorial-title {
  grid-column: 1 / -1;
  margin-bottom: 0;
  white-space: nowrap;
}

.esg-layout > .editorial-title span,
.esg-layout > .editorial-title strong {
  display: inline;
}

.esg-highlight {
  max-width: 520px;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 30px);
  color: var(--deep-orange);
  background: #f1f1f0;
  font-size: clamp(1.34rem, 1.85vw, 1.9rem);
  font-weight: 400;
  line-height: 1.32;
}

.esg-media {
  position: relative;
  max-width: 520px;
  min-height: clamp(220px, 22vw, 320px);
  margin: clamp(22px, 3vw, 36px) 0 0;
  overflow: hidden;
  border-radius: 0 0 54px 0;
  background: #f1f1f0;
  box-shadow: 0 22px 54px rgba(38, 38, 38, .12);
}

.esg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(245, 130, 32, .2) 0%, rgba(245, 130, 32, 0) 46%);
  pointer-events: none;
}

.esg-media img {
  display: block;
  width: 100%;
  min-height: inherit;
  object-fit: cover;
}

.esg-diagram {
  --esg-purple: #9d4eb6;
  --esg-teal: #11a894;
  --esg-orange: #ff831c;
  position: relative;
  height: 100%;
  min-height: clamp(430px, 39vw, 520px);
  isolation: isolate;
}

.esg-orbit {
  position: absolute;
  left: 50%;
  top: 63%;
  z-index: 4;
  width: min(30vw, 272px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.esg-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid #fff;
  border-radius: 50%;
}

.esg-orbit-arc {
  --arc-color: #fff;
  --arc-start: 0deg;
  --arrow-rotate: 0deg;
  position: absolute;
  inset: 8px;
  border: 0;
  border-radius: 50%;
}

.esg-orbit-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from var(--arc-start), transparent 0deg 16deg, var(--arc-color) 16deg 98deg, transparent 98deg 360deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
}

.esg-orbit-arc::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--arc-color);
  transform: translate(-50%, -50%) rotate(20deg);
}

.esg-orbit-arc-one {
  --arc-color: var(--esg-purple);
  --arc-start: 286deg;
  --arrow-rotate: 72deg;
}

.esg-orbit-arc-one::after {
  left: 177px;
  top: 13px;
}

.esg-orbit-arc-two {
  --arc-color: var(--esg-teal);
  --arc-start: 46deg;
  --arrow-rotate: 188deg;
}

.esg-orbit-arc-two::after {
  left: 207px;
  top: 228px;
}

.esg-orbit-arc-three {
  --arc-color: var(--esg-orange);
  --arc-start: 166deg;
  --arrow-rotate: -108deg;
}

.esg-orbit-arc-three::after {
  left: 5px;
  top: 137px;
}

.esg-node {
  --esg-node-size: clamp(190px, 17vw, 255px);
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--esg-node-size);
  height: var(--esg-node-size);
  padding: clamp(26px, 2.5vw, 40px);
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 58px rgba(22, 24, 28, .12);
  transition: filter .34s ease, box-shadow .34s ease;
}

.esg-node::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .2);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .45s ease, transform .45s ease;
}

.esg-node strong,
.esg-node > span:not(.esg-node-index) {
  position: relative;
  z-index: 3;
  transition: opacity .42s ease, transform .42s ease, max-height .42s ease;
}

.esg-node strong {
  display: block;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1rem, 1.22vw, 1.32rem);
  font-weight: 800;
  line-height: 1.08;
}

.esg-node > span:not(.esg-node-index) {
  max-width: 23ch;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(.74rem, .82vw, .94rem);
  line-height: 1.17;
  opacity: 0;
  transform: translateY(12px);
}

.esg-node-index {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, .4);
  font-size: clamp(3.4rem, 3.4vw, 5.2rem);
  font-weight: 800;
  line-height: 1;
  transition: transform .42s ease, opacity .42s ease;
  pointer-events: none;
}

.esg-node-governance {
  left: 50%;
  top: 25%;
  background: var(--esg-purple);
  text-align: center;
}

.esg-node-performance {
  left: 76%;
  top: 71%;
  background: var(--esg-teal);
  text-align: center;
}

.esg-node-leadership {
  left: 24%;
  top: 71%;
  background: var(--esg-orange);
  text-align: center;
}

.esg-node:hover,
.esg-node:focus-visible,
.esg-node.is-active {
  z-index: 6;
  filter: saturate(1.06) brightness(1.03);
  box-shadow: 0 30px 72px rgba(22, 24, 28, .18);
  outline: none;
}

.esg-node:hover::before,
.esg-node:focus-visible::before,
.esg-node.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.esg-node:hover .esg-node-index,
.esg-node:focus-visible .esg-node-index,
.esg-node.is-active .esg-node-index,
.esg-node:hover strong,
.esg-node:focus-visible strong,
.esg-node.is-active strong {
  transform: translateY(-12px);
}

.esg-node:hover > span:not(.esg-node-index),
.esg-node:focus-visible > span:not(.esg-node-index),
.esg-node.is-active > span:not(.esg-node-index) {
  max-height: 120px;
  margin-top: 8px;
  opacity: 1;
  transform: translateY(-8px);
}

.esg-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(2px, .8vw, 12px);
  z-index: 2;
  width: min(100%, 420px);
  margin: 0;
  color: #7a8086;
  font-size: clamp(.78rem, .82vw, .92rem);
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  transform: translateX(-50%);
}

.topic-section {
  scroll-margin-top: 92px;
  padding: clamp(24px, 3vw, 42px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.topic-section:nth-of-type(odd) {
  background: linear-gradient(180deg, #fff 0%, #f7f8f9 100%);
}

.topic-layout {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.topic-layout h2 {
  position: relative;
  padding-left: 18px;
  color: var(--charcoal);
  font-size: clamp(1.72rem, 3vw, 3rem);
  font-weight: 300;
}

.topic-layout h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .08em;
  width: 4px;
  height: .9em;
  background: var(--accent-gradient);
}

.topic-layout p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.6;
}

.culture-section {
  scroll-margin-top: 92px;
  padding: clamp(48px, 5.2vw, 78px) 0;
  background: #fff;
}

.culture-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3.8vw, 52px);
  align-items: start;
}

.culture-heading .editorial-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.culture-heading .editorial-title strong {
  display: inline;
  color: var(--editorial-accent);
  font-weight: 800;
}

.culture-heading .editorial-title span {
  display: inline;
  margin-left: .16em;
  color: var(--editorial-title-color);
  font-weight: 300;
}

.culture-panel {
  position: relative;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.culture-panel h3 {
  margin: 0 0 var(--subtitle-diagram-after);
  color: #e40000;
  text-align: center;
}

.culture-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
  align-items: start;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.culture-value {
  --value-color: #b60000;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(19vw, 220px);
  min-width: 150px;
  aspect-ratio: 1;
  margin: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--value-color);
  cursor: pointer;
  transform-origin: center bottom;
  transition: transform .42s ease, filter .42s ease, box-shadow .42s ease, z-index .01s linear;
}

.culture-value::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 32px;
  height: 32px;
  background: inherit;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.culture-value span {
  position: relative;
  z-index: 2;
  padding: 0 18px;
  font-size: clamp(1.02rem, 1.35vw, 1.45rem);
  font-weight: 800;
  line-height: 1.16;
  text-align: center;
}

.culture-value-trust {
  --value-color: #b40000;
}

.culture-value-respect {
  --value-color: #e60000;
}

/* Centrado geométrico + óptico del bloque tipográfico (ES/EN) */
.culture-value-respect span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 76%;
  max-width: 11.5ch;
  padding: 0;
  margin: 0;
  font-size: clamp(.94rem, 1.12vw, 1.16rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  transform: translate(-50%, calc(-50% - 1px));
}

.culture-value-integrity {
  --value-color: #f44325;
}

.culture-value-loyalty {
  --value-color: #ff831c;
}

.culture-value:hover,
.culture-value:focus-visible,
.culture-value.is-active {
  z-index: 4;
  filter: saturate(1.06) brightness(1.02);
  box-shadow: 0 22px 52px rgba(55, 28, 12, .16);
  outline: none;
  transform: translateY(-10px) scale(1.045);
}

.culture-detail {
  position: relative;
  max-width: 700px;
  min-height: 118px;
  margin: clamp(42px, 4vw, 56px) auto 0;
  padding: 24px clamp(26px, 3.4vw, 40px) 26px;
  overflow: hidden;
  color: #101820;
  background:
    linear-gradient(135deg, rgba(255, 131, 28, .14) 0%, rgba(255, 255, 255, .78) 42%, rgba(241, 241, 240, .95) 100%);
  border: 1px solid rgba(245, 130, 32, .22);
  border-radius: 0 0 42px 0;
  box-shadow: 0 18px 48px rgba(35, 24, 18, .1);
}

.culture-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #b40000 0%, #e60000 35%, #f44325 68%, #ff831c 100%);
}

.culture-detail::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 104px;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 130, 32, .22);
  border-radius: 50%;
}

.culture-detail strong {
  position: relative;
  display: block;
  margin-bottom: 8px;
  color: var(--deep-orange);
  font-size: clamp(1.12rem, 1.38vw, 1.36rem);
  font-weight: 800;
  line-height: 1.08;
}

.culture-detail p {
  position: relative;
  max-width: 62ch;
  margin: 0;
  font-size: clamp(.98rem, 1.08vw, 1.1rem);
  line-height: 1.6;
}

.culture-hint {
  margin: 16px 0 0;
  color: #6e7479;
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
}

.ods-section {
  scroll-margin-top: 92px;
  padding: clamp(52px, 5.4vw, 84px) 0;
  background: linear-gradient(180deg, #fff 0%, #f7f7f5 100%);
  border-top: 1px solid var(--line);
}

.ods-layout {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.ods-layout > .editorial-title {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.ods-layout > .editorial-title span,
.ods-layout > .editorial-title strong {
  display: inline;
}

.ods-body {
  display: grid;
  grid-template-columns: minmax(240px, 34%) minmax(0, 66%);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.ods-copy {
  display: grid;
  gap: 16px;
}

.ods-copy p {
  max-width: none;
  margin: 0;
  color: #111820;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.62;
}

.ods-board {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  background: #e9ecef;
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(17, 24, 32, .06);
}

.ods-board-head {
  padding: clamp(12px, 1.4vw, 16px) clamp(16px, 2vw, 22px);
  background: rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(17, 24, 32, .08);
}

.ods-spine {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ods-spine-title {
  margin: 0;
  color: var(--deep-red);
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  font-weight: 800;
  letter-spacing: .01em;
}

.ods-spine-line {
  display: block;
  flex: 0 0 4px;
  width: 4px;
  height: 22px;
  background: #111820;
  border-radius: 999px;
}

.ods-board-body {
  min-width: 0;
  padding: clamp(12px, 1.4vw, 16px);
}

.ods-groups {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: clamp(10px, 1.2vw, 14px);
  align-items: stretch;
}

.ods-group {
  min-width: 0;
  padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.6vw, 18px);
  background: rgba(255, 255, 255, .42);
  border: 2px solid transparent;
  border-radius: 20px;
  transition: opacity .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.ods-group-create {
  border-radius: 20px 12px 12px 20px;
}

.ods-group-protect {
  border-radius: 12px 20px 20px 12px;
}

.ods-group.is-emphasized {
  border-color: var(--orange);
  box-shadow: 0 10px 28px rgba(245, 130, 32, .14);
  background: rgba(255, 255, 255, .72);
}

.ods-group.is-muted {
  opacity: .72;
}

.ods-group-title {
  margin: 0 0 clamp(10px, 1.2vw, 14px);
  color: var(--charcoal);
  font-size: clamp(.92rem, 1vw, 1.04rem);
  font-weight: 700;
  text-align: center;
}

.ods-grid {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: clamp(6px, .8vw, 10px);
}

.ods-grid-create {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ods-grid-protect {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.ods-grid-protect .ods-item:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}

.ods-item {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, opacity .28s ease;
}

.ods-grid-create .ods-item img,
.ods-grid-protect .ods-item img {
  display: block;
  width: clamp(58px, 5.2vw, 84px);
  height: auto;
  max-width: 100%;
}

.ods-item:hover,
.ods-item:focus-visible {
  transform: scale(1.04);
}

.ods-item.is-active {
  transform: scale(1.06);
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(25, 31, 38, .12);
}

.ods-item:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.ods-status {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  padding: 10px clamp(16px, 2vw, 22px);
  color: var(--charcoal);
  font-size: clamp(.92rem, 1vw, 1.02rem);
  font-weight: 700;
  line-height: 1.4;
  background: rgba(255, 255, 255, .88);
  border-top: 1px solid rgba(17, 24, 32, .08);
  opacity: 0;
  transition: opacity .24s ease;
}

.ods-status.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ods-group,
  .ods-item,
  .ods-status {
    transition: none;
  }

  .people-mgmt-gear,
  .distribution-gear {
    animation: none;
    transform: translate(-50%, -50%);
  }
}

.shared-value-section {
  scroll-margin-top: 92px;
  padding: clamp(50px, 5.4vw, 84px) 0;
  background: linear-gradient(180deg, #fff 0%, #f7f7f5 100%);
}

.shared-value-layout {
  display: grid;
  gap: clamp(26px, 3.8vw, 48px);
}

.shared-value-heading .editorial-title {
  margin-bottom: 0;
  white-space: nowrap;
}

.shared-value-heading .editorial-title span,
.shared-value-heading .editorial-title strong {
  display: inline;
}

.shared-value-content {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .55fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.economic-table-wrap {
  min-width: 0;
}

.economic-table-wrap > .economic-table-unit {
  margin: 0 0 .55em;
  color: #727880;
  font-size: clamp(.9rem, 1.05vw, 1.08rem);
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.economic-table {
  width: 100%;
  border-collapse: collapse;
  color: #050b12;
  font-size: clamp(.9rem, 1.05vw, 1.08rem);
}

.economic-table thead th {
  padding: 0 8px 9px;
  color: #101820;
  font-weight: 400;
  text-align: right;
  background: transparent;
  border-bottom: 1px solid #1261d5;
}

.economic-table thead th:first-child {
  background: transparent;
}

.economic-table thead th:nth-child(2) {
  background: #ebebeb;
  color: #101820;
  font-weight: 700;
}

.economic-table thead th:nth-child(3) {
  background: transparent;
  color: #727880;
  font-weight: 400;
}

.economic-table tbody th,
.economic-table tbody td {
  padding: 8px 8px;
  border-bottom: 1px solid #1261d5;
  transition: background-color .25s ease, color .25s ease;
}

.economic-table tbody tr:not(.economic-group-row):hover th,
.economic-table tbody tr:not(.economic-group-row):hover td,
.economic-table tbody tr:not(.economic-group-row):focus-within th,
.economic-table tbody tr:not(.economic-group-row):focus-within td,
.economic-table tbody tr:not(.economic-group-row):hover td:nth-child(2),
.economic-table tbody tr:not(.economic-group-row):hover td:nth-child(3),
.economic-table tbody tr:not(.economic-group-row):focus-within td:nth-child(2),
.economic-table tbody tr:not(.economic-group-row):focus-within td:nth-child(3) {
  background: var(--orange) !important;
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, .28);
}

.economic-table tbody tr:not(.economic-group-row):focus-within {
  outline: 2px solid var(--deep-orange);
  outline-offset: -2px;
}

.economic-table tbody th {
  width: 42%;
  font-weight: 400;
  line-height: 1.12;
  text-align: left;
}

.economic-table tbody tr:nth-child(4) th, .economic-table tbody tr:nth-child(11) th {
  font-weight: 700;
}

.economic-table tbody tr:nth-child(3) th, .economic-table tbody tr:nth-child(3) td, .economic-table tbody tr:nth-child(10) th, .economic-table tbody tr:nth-child(10) td {
  background: none;
  border:none;
}

.economic-table tbody td {
  text-align: right;
  white-space: nowrap;
}

.economic-table tbody td:nth-child(2),
.economic-table tbody td:nth-child(4) {
  width: 7%;
  text-align: center;
}

.economic-table tbody td:nth-child(2),
.economic-table tbody td:nth-child(3) {
  background: #ebebeb;
}

.economic-table tbody td:nth-child(4),
.economic-table tbody td:nth-child(5) {
  background: transparent;
  color: #5a6168;
}

.economic-table tbody td:nth-child(3),
.economic-table tbody td:nth-child(5) {
  width: 22%;
  font-variant-numeric: tabular-nums;
}

.economic-table tbody td:nth-child(3) {
  color: #101820;
  font-weight: 400;
}

.economic-table tbody td:nth-child(5) {
  font-weight: 400;
}

.economic-group-row th {
  color: var(--orange);
  font-size: clamp(1.04rem, 1.2vw, 1.24rem);
  font-weight: 800;
  line-height: 1.08;
}

.economic-group-row td {
  font-weight: 300;
  color: #101820;
}

.economic-group-row th,
.economic-group-row td {
  padding-top: clamp(12px, 1.5vw, 18px);
  padding-bottom: clamp(8px, 1vw, 12px);
}

.economic-table tbody tr.economic-group-row:first-child th,
.economic-table tbody tr.economic-group-row:first-child td {
  padding-top: clamp(4px, .5vw, 6px);
  font-weight: 700;
}

.economic-table tbody tr.economic-group-row:first-child + tr th,
.economic-table tbody tr.economic-group-row:first-child + tr td {
  padding-top: clamp(12px, 1.6vw, 20px);
}

.economic-group-row td:nth-child(2),
.economic-group-row td:nth-child(3) {
  background: #ebebeb;
}

.economic-group-row td:nth-child(4),
.economic-group-row td:nth-child(5) {
  background: transparent;
  color: #101820;
}

.economic-gap-row th,
.economic-gap-row td {
  padding-top: clamp(34px, 4.2vw, 54px);
  padding-bottom: clamp(10px, 1.2vw, 14px);
}

.economic-retained-row th,
.economic-retained-row td {
  padding-top: clamp(38px, 4.8vw, 58px);
  padding-bottom: clamp(10px, 1.2vw, 14px);
}

.economic-note {
  max-width: 840px;
  margin: clamp(22px, 3vw, 38px) 0 0;
  color: #101820;
  font-size: .72rem;
  font-weight: 400;
  line-height: 1.35;
}

.distribution-card {
  padding: clamp(24px, 3vw, 34px) clamp(20px, 2.6vw, 30px);
  background: #f1f1f0;
}

.distribution-card h3.chart-title {
  text-align: center;
}

.distribution-card h3 span {
  display: block;
  color: #4e5359;
  font-weight: 400;
}

.distribution-chart {
  position: relative;
  width: min(230px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 20px;
}

.distribution-pie,
.distribution-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.distribution-pie {
  --pie-cover: #f1f1f0;
}

.distribution-wheel {
  background: conic-gradient(from 0deg, var(--segments));
  box-shadow: 0 16px 32px rgba(16, 24, 32, .1);
}

.distribution-gear {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: distributionGearSpin 7.5s linear infinite;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.distribution-gear::before,
.distribution-gear span {
  position: absolute;
  display: grid;
  border-radius: 50%;
  background: var(--pie-cover);
}

.distribution-gear::before {
  content: "";
  inset: 0;
  z-index: 2;
}

.distribution-gear span {
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 14%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-352%);
}

.distribution-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* Mismo tamaño que .distribution-gear → centro = disco gris/blanco */
  width: 44%;
  aspect-ratio: 1;
  /* Óptico: sube la cifra dentro del disco sin mover el contenedor */
  padding: 0 0 .36em;
  margin: 0;
  color: #ff831c;
  font-size: clamp(.95rem, 1.1vw, 1.12rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  transition: color .28s ease;
  transform: translate(-50%, -50%);
}

@keyframes distributionGearSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.distribution-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.distribution-legend button {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-height: 44px;
  padding: 4px 6px;
  border: 0;
  border-radius: 6px;
  color: #3d4349;
  background: transparent;
  font: inherit;
  font-size: clamp(.78rem, .85vw, .88rem);
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease;
}

.distribution-legend i {
  width: 11px;
  aspect-ratio: 1;
  margin-top: .22em;
  border-radius: 50%;
  background: var(--legend-color);
}

.distribution-legend button:hover,
.distribution-legend button:focus-visible {
  color: #101820;
  background: rgba(255, 255, 255, .55);
  outline: none;
}

.distribution-legend button.is-active {
  color: #101820;
  font-weight: 800;
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 3px 0 0 var(--legend-color);
}

.distribution-legend button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.placeholder-kicker {
  color: var(--deep-orange);
  font-weight: 900;
  text-transform: uppercase;
}

.placeholder-section h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.placeholder-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--soft);
  border-left: 6px solid var(--orange);
}

.report-document-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 20px;
  color: #fff;
  font-weight: 800;
  background: var(--accent-gradient);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 34px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 102% 18%, rgba(255, 255, 255, .16) 0 90px, transparent 91px),
    linear-gradient(145deg, #9c3912 0%, var(--deep-orange) 42%, var(--orange) 100%);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-footer::before {
  inset: 0 auto 0 0;
  width: min(18vw, 190px);
  background: rgba(255, 255, 255, .12);
}

.site-footer::after {
  right: -95px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.site-footer .inner {
  position: relative;
  z-index: 1;
}

.footer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.footer-logo {
  width: clamp(46px, 4.4vw, 62px);
  height: auto;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-action {
  position: relative;
  display: grid;
  gap: 2px;
  min-width: 166px;
  padding: 11px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 16px 34px rgba(72, 28, 0, .2);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}

.footer-action::before {
  content: "";
  position: absolute;
  inset: auto 14px 12px auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.footer-action:hover,
.footer-action:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .2);
}

.footer-action-pdf {
  color: var(--deep-orange);
  border-color: #fff;
  background: #fff;
}

.footer-action-pdf:hover,
.footer-action-pdf:focus-visible {
  color: var(--deep-orange);
  background: #f5f6f7;
}

.footer-action span {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .74;
}

.footer-action strong {
  padding-right: 18px;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-panel {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: 0;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: linear-gradient(90deg, #a83c12, var(--deep-orange), var(--orange));
  opacity: .96;
}

.contact-heading {
  position: relative;
  z-index: 1;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px 0 clamp(18px, 3vw, 34px);
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.contact-heading::-webkit-details-marker {
  display: none;
}

.contact-heading::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .3s ease;
}

.contact-panel[open] .contact-heading::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.contact-heading p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.contact-heading strong {
  font-weight: 800;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr) minmax(0, 1.08fr);
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, .1);
  animation: contactPanelIn .34s cubic-bezier(.22, 1, .36, 1) both;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, .92);
}

.contact-card h2 {
  margin: 0 0 5px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card p,
.contact-card a {
  font-size: .82rem;
  line-height: 1.32;
}

.contact-card a {
  color: #0a54c7;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.contact-card strong {
  font-weight: 900;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, .12);
}

.footer-card {
  min-height: 190px;
  padding: 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, .92);
}

.footer-card h2 {
  margin-bottom: 8px;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-card p,
.footer-card a {
  font-size: .82rem;
  line-height: 1.32;
}

.footer-card strong {
  font-weight: 900;
}

.footer-card a {
  color: #0a54c7;
  text-decoration: underline;
}

.footer-navigation {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-map {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-map a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .08);
}

.footer-map a:hover,
.footer-map a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .16);
}

.footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  white-space: nowrap;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: transparent;
  background: conic-gradient(var(--orange) calc(var(--scroll-progress, 0) * 1%), rgba(31, 33, 37, .18) 0);
  box-shadow: 0 14px 30px rgba(36, 0, 0, .18), 0 0 0 6px rgba(255, 255, 255, .34);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-top::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 50%;
  background: #fff;
}

.back-top svg {
  width: 21px;
  height: 21px;
  color: var(--deep-orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes preloadLine {
  0% { transform: scaleX(0); transform-origin: left; }
  45% { transform: scaleX(1); transform-origin: left; }
  46% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes contactPanelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes performanceFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translate(-50%, -50%) translate3d(12px, -16px, 38px) rotateX(8deg) rotateY(-12deg);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(0, 12px, -20px) rotateX(-5deg) rotateY(10deg);
  }
  75% {
    transform: translate(-50%, -50%) translate3d(-14px, -8px, 24px) rotateX(6deg) rotateY(14deg);
  }
}

/* ===== Seguridad y salud ocupacional ===== */
.safety-section {
  padding: clamp(40px, 4.8vw, 72px) 0 clamp(48px, 5.2vw, 80px);
  background: #fff;
}

.safety-layout {
  display: grid;
  gap: clamp(22px, 2.8vw, 36px);
}

.safety-section-head {
  display: grid;
  gap: 0;
}

.safety-editorial-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.safety-editorial-title.editorial-title strong,
.safety-editorial-title.editorial-title span {
  display: inline;
}

.safety-editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.safety-editorial-title span {
  font-weight: 300;
}

.safety-section p:not(.safety-panel-hint):not(.people-table-note):not(.safety-callout-text):not(.safety-triangle-objective-text):not(.safety-cycle-center-text):not(.ethics-bar-label) {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.safety-opening {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.safety-intro {
  max-width: none;
  height: 100%;
  margin: 0;
}

.safety-callout.value-chain-highlight-copy {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: clamp(22px, 2.6vw, 32px);
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(245, 130, 32, .98) 0%,
      rgba(235, 98, 28, .97) 48%,
      rgba(204, 79, 24, .98) 100%
    );
}

.safety-callout--opening {
  height: 100%;
}

.safety-callout-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
}

.people-metric-head .rights-panel-title {
  margin-bottom: 0;
}

.people-metric-head .rights-panel-title:not(:first-child) {
  margin-top: 0;
}

.safety-callout .rights-panel-title {
  margin: 0;
}

.safety-callout--opening .safety-callout-title.rights-panel-title {
  margin: 0;
  color: #fff;
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
}

.safety-callout-text {
  margin: 0;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.92rem, 1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
}

.safety-callout.value-chain-highlight-copy .safety-callout-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
}

.safety-callout.value-chain-highlight-copy .safety-callout-text {
  margin: 0;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.92rem, 1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
}

.safety-callout--opening .safety-callout-text {
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.safety-grid-main,
.safety-grid-contractors,
.safety-grid-metrics,
.safety-grid-health {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  align-items: start;
}

.safety-grid-main {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}

.safety-grid-contractors {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  grid-template-areas:
    "copy cycle"
    "lead cycle";
}

.safety-grid-contractors .safety-contractors-copy {
  grid-area: copy;
}

.safety-grid-contractors .safety-panel--cycle {
  grid-area: cycle;
  align-self: start;
}

.safety-grid-contractors .safety-leadership {
  grid-area: lead;
}

.safety-grid-metrics {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
}

.safety-grid-health {
  grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
  align-items: start;
  gap: clamp(18px, 2.2vw, 28px);
}

.safety-health-aside {
  display: grid;
  gap: 0;
  align-content: start;
  min-width: 0;
}

.safety-health-aside .safety-panel--health {
  width: 100%;
  box-sizing: border-box;
  gap: 12px;
}

.safety-health-copy .safety-callout--emergency {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  margin: clamp(6px, 1vw, 12px) 0 0;
  min-height: 0;
  height: auto;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  box-shadow:
    0 18px 48px rgba(35, 24, 18, .08),
    inset 0 0 0 1px rgba(17, 24, 32, .06);
}

.safety-callout--emergency .safety-callout-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: clamp(22px, 2.6vw, 32px);
  height: auto;
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(245, 130, 32, .98) 0%,
      rgba(235, 98, 28, .97) 48%,
      rgba(204, 79, 24, .98) 100%
    );
}

.safety-callout--emergency .safety-callout-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
}

.safety-callout--emergency .safety-callout-text {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.92rem, 1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
}

.safety-callout--emergency .safety-callout-emergency-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.safety-callout--emergency .safety-callout-emergency-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
}

.safety-panel {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(18px, 2vw, 24px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 32, .08);
}

.safety-panel figcaption {
  display: grid;
  gap: 6px;
}

.safety-panel-hint {
  margin: 0;
  color: #6f7379;
  font-size: clamp(.78rem, .84vw, .86rem);
  font-weight: 600;
  line-height: 1.4;
}

.safety-triangle-board {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 30vw, 340px);
  padding: clamp(8px, 1.2vw, 16px) 0;
}

.safety-triangle-stage {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 206.95 / 184.4;
  margin: 0 auto;
}

.safety-triangle-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Decoración (círculo blanco, tipografía) no debe capturar eventos */
.safety-triangle-svg * {
  pointer-events: none;
}

.safety-triangle-seg {
  pointer-events: auto;
  cursor: pointer;
  /*
    Origen del viewBox = centro del círculo.
    El hover/activo NO usa scale: al agrandar solo un segmento bajo los vecinos
    se deforman los huecos y el morado se percibe corrido.
  */
  transform-box: view-box;
  transform-origin: 50% 62.18%;
  transition: filter .3s ease, opacity .3s ease;
  outline: none;
  animation: safetyTrianglePulse 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(17, 24, 32, .12));
}

.safety-triangle-seg--high { animation-delay: 0s; }
.safety-triangle-seg--low { animation-delay: 1.4s; }
.safety-triangle-seg--cat { animation-delay: 2.8s; }

.safety-triangle-seg:hover,
.safety-triangle-seg:focus-visible,
.safety-triangle-seg.is-active {
  filter: brightness(1.14) drop-shadow(0 12px 20px rgba(17, 24, 32, .22));
  animation-play-state: paused;
}

@keyframes safetyTrianglePulse {
  0%, 76%, 100% { filter: brightness(1) drop-shadow(0 8px 14px rgba(17, 24, 32, .12)); }
  88% { filter: brightness(1.08) drop-shadow(0 8px 14px rgba(17, 24, 32, .14)); }
}

@media (prefers-reduced-motion: reduce) {
  .safety-triangle-seg {
    animation: none;
    transition: filter .2s ease;
  }
}

.safety-triangle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 228px);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}

.safety-triangle-objectives {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: clamp(4px, 1vw, 10px);
}

.safety-triangle-objectives-title {
  margin: 0;
  color: #6f7379;
  font-size: clamp(.72rem, .8vw, .8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.safety-triangle-objectives ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-triangle-objective {
  padding: 10px 12px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  background: #f7f7f8;
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.safety-triangle-objective--high { --accent: #a052b1; }
.safety-triangle-objective--low { --accent: #f58220; }
.safety-triangle-objective--cat { --accent: #0da48e; }

.safety-triangle-objective-tag {
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-size: clamp(.74rem, .8vw, .8rem);
  font-weight: 800;
}

.safety-triangle-objective-text {
  margin: 0;
  color: #111820;
  font-size: clamp(.8rem, .86vw, .88rem);
  font-weight: 400;
  line-height: 1.4;
}

.safety-triangle-objective.is-active {
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
  transform: translateX(2px);
}

.safety-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.safety-pillar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(100px, 11.5vw, 128px);
  aspect-ratio: 1;
  margin-left: -18px;
  padding: 12px 10px;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(.66rem, .74vw, .78rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 6px 16px rgba(17, 24, 32, .12);
  animation: safetyPillarFloat 5.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.safety-pillar:first-child {
  margin-left: 0;
}

.safety-pillar span {
  display: block;
  text-wrap: balance;
}

.safety-pillar--1 {
  z-index: 4;
  background: #12b8c9;
  animation-delay: 0s;
}

.safety-pillar--2 {
  z-index: 3;
  background: #57a84a;
  animation-delay: .35s;
}

.safety-pillar--3 {
  z-index: 2;
  background: #3f8f3a;
  animation-delay: .7s;
}

.safety-pillar--4 {
  z-index: 1;
  background: #2f6f32;
  animation-delay: 1.05s;
}

@keyframes safetyPillarFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.safety-panel--strategy {
  min-height: clamp(420px, 38vw, 520px);
}

.safety-strategy-diagram {
  min-height: clamp(320px, 30vw, 390px);
  transform: none;
}

.safety-strategy-diagram .esg-orbit {
  top: 55%;
  width: min(22vw, 206px);
  z-index: 4;
}

.safety-strategy-diagram .esg-orbit::before {
  border-width: 5px;
}

.safety-strategy-diagram .esg-orbit-arc::after {
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 13px;
  transform: translate(-50%, -50%) rotate(var(--arrow-rotate));
}

.safety-strategy-diagram .esg-orbit-arc-one {
  --arrow-rotate: 24deg;
}

.safety-strategy-diagram .esg-orbit-arc-one::after {
  left: 70.3%;
  top: 6.4%;
}

.safety-strategy-diagram .esg-orbit-arc-two {
  --arrow-rotate: 144deg;
}

.safety-strategy-diagram .esg-orbit-arc-two::after {
  left: 79.4%;
  top: 88.5%;
}

.safety-strategy-diagram .esg-orbit-arc-three {
  --arrow-rotate: 264deg;
}

.safety-strategy-diagram .esg-orbit-arc-three::after {
  left: 1.5%;
  top: 52.5%;
}

.safety-panel--strategy .safety-strategy-hint {
  margin: 40px 0 0;
  text-align: center;
}

.safety-strategy-diagram .esg-node {
  --esg-node-size: clamp(168px, 14.5vw, 196px);
  z-index: 3;
  padding: clamp(18px, 1.8vw, 28px);
}

.safety-strategy-diagram .esg-node-governance {
  left: 50%;
  top: 22%;
}

.safety-strategy-diagram .esg-node-performance {
  left: 78%;
  top: 74%;
}

.safety-strategy-diagram .esg-node-leadership {
  left: 22%;
  top: 74%;
}

.safety-strategy-diagram .esg-node-index {
  font-size: clamp(3rem, 3.4vw, 4.4rem);
  color: rgba(255, 255, 255, .42);
  transition: transform .42s ease, opacity .42s ease, font-size .42s ease;
}

.safety-strategy-diagram .esg-node strong {
  max-width: 16ch;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  font-size: clamp(.78rem, .9vw, .95rem);
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

.safety-strategy-diagram .esg-node:hover,
.safety-strategy-diagram .esg-node:focus-visible,
.safety-strategy-diagram .esg-node.is-active {
  z-index: 6;
}

.safety-strategy-diagram .esg-node:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 4px;
}

.safety-strategy-diagram .esg-node:hover .esg-node-index,
.safety-strategy-diagram .esg-node:focus-visible .esg-node-index,
.safety-strategy-diagram .esg-node.is-active .esg-node-index,
.safety-strategy-diagram .esg-node:hover strong,
.safety-strategy-diagram .esg-node:focus-visible strong,
.safety-strategy-diagram .esg-node.is-active strong {
  transform: none;
}

.safety-strategy-diagram .esg-node:hover .esg-node-index,
.safety-strategy-diagram .esg-node:focus-visible .esg-node-index,
.safety-strategy-diagram .esg-node.is-active .esg-node-index {
  font-size: clamp(1.9rem, 2.2vw, 2.7rem);
  opacity: .55;
}

.safety-strategy-diagram .esg-node:hover strong,
.safety-strategy-diagram .esg-node:focus-visible strong,
.safety-strategy-diagram .esg-node.is-active strong {
  max-height: 5.2em;
  margin-top: 6px;
  opacity: 1;
  transform: translateY(0);
}

.safety-strategy-diagram.is-dimmed .esg-node:not(.is-active):not(:hover):not(:focus-visible) {
  filter: saturate(.85) brightness(.92);
  opacity: .78;
}

.safety-cycle-detail,
.safety-health-detail {
  display: grid;
  gap: 8px;
}

.safety-contractors-copy,
.safety-leadership,
.safety-health-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.safety-leadership-brand {
  margin: 0 0 4px;
}

.safety-leadership-logo {
  display: block;
  width: min(100%, 220px);
  max-width: 100%;
  height: auto;
}

.safety-panel--cycle {
  justify-items: stretch;
}

.safety-panel--cycle > figcaption {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.safety-panel--cycle .rights-panel-title {
  margin-bottom: 0;
  text-align: center;
}

.safety-cycle-hint {
  width: 100%;
  max-width: 420px;
  margin: 40px auto 0;
  text-align: center;
}

.safety-cycle-layout {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.safety-cycle-diagram {
  --cycle-purple: #9d4eb6;
  --cycle-teal: #11a894;
  --cycle-orange: #ff831c;
  --cycle-blue: #4a90c8;
  --cycle-outer: #7a9bb5;
  --cycle-size: min(100%, 420px);
  --cycle-phase-size: clamp(124px, 22vw, 156px);
  --cycle-center-size: clamp(92px, 16.5vw, 112px);
  --cycle-orbit-size: clamp(158px, 26vw, 186px);
  --cycle-mini-size: clamp(26px, 4.2vw, 32px);
  --cycle-outer-inset: 2%;
  --cycle-mini-radius: 48.8%;
  position: relative;
  width: var(--cycle-size);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
  box-sizing: border-box;
  isolation: isolate;
}

.safety-cycle-outer {
  position: absolute;
  inset: var(--cycle-outer-inset);
  z-index: 1;
  border: 2px solid var(--cycle-outer);
  border-radius: 50%;
  pointer-events: none;
}

.safety-cycle-steps-ring {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.safety-cycle-mini {
  position: absolute;
  left: calc(50% + cos(var(--angle)) * var(--cycle-mini-radius));
  top: calc(50% + sin(var(--angle)) * var(--cycle-mini-radius));
  z-index: 7;
  display: grid;
  place-items: center;
  width: var(--cycle-mini-size);
  height: var(--cycle-mini-size);
  padding: 0;
  border: 2px solid var(--cycle-blue);
  border-radius: 50%;
  background: #fff;
  color: var(--cycle-blue);
  font-size: clamp(.68rem, 1.4vw, .78rem);
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.safety-cycle-mini:hover,
.safety-cycle-mini:focus-visible,
.safety-cycle-mini.is-active,
.safety-cycle-mini[aria-pressed="true"] {
  background: var(--cycle-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 144, 200, .28);
  outline: none;
}

.safety-cycle-mini:focus-visible {
  outline: 2px solid rgba(255, 131, 28, .85);
  outline-offset: 3px;
}

.safety-cycle-tip {
  position: absolute;
  z-index: 30;
  display: none;
  gap: 2px;
  width: max-content;
  max-width: min(168px, calc(100% - 16px));
  padding: 8px 10px;
  border: 1px solid rgba(17, 24, 32, .1);
  border-left: 3px solid var(--orange, #ff831c);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 32, .12);
  color: #111820;
  text-align: left;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease;
}

.safety-cycle-tip.is-open {
  display: grid;
  opacity: 1;
}

.safety-cycle-tip b {
  color: var(--orange, #ff831c);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
}

.safety-cycle-tip span {
  color: #111820;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
}

.safety-cycle-tip::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1px solid rgba(17, 24, 32, .1);
  transform: rotate(45deg);
}

.safety-cycle-tip[data-placement="top"]::after {
  left: 50%;
  bottom: -5px;
  border-top: 0;
  border-left: 0;
  transform: translateX(-50%) rotate(45deg);
}

.safety-cycle-tip[data-placement="bottom"]::after {
  left: 50%;
  top: -5px;
  border-bottom: 0;
  border-right: 0;
  transform: translateX(-50%) rotate(45deg);
}

.safety-cycle-tip[data-placement="left"]::after {
  right: -5px;
  top: 50%;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
}

.safety-cycle-tip[data-placement="right"]::after {
  left: -5px;
  top: 50%;
  border-right: 0;
  border-top: 0;
  transform: translateY(-50%) rotate(45deg);
}

.safety-cycle-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: var(--cycle-orbit-size);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.safety-cycle-orbit-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.safety-cycle-orbit-spin::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid #fff;
  border-radius: 50%;
}

.safety-cycle-orbit-arc {
  --arc-color: #fff;
  --arc-start: 0deg;
  --arrow-rotate: 0deg;
  position: absolute;
  inset: 7px;
  border-radius: 50%;
}

.safety-cycle-orbit-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from var(--arc-start), transparent 0deg 16deg, var(--arc-color) 16deg 98deg, transparent 98deg 360deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
}

.safety-cycle-orbit-arc::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--arc-color);
  transform: translate(-50%, -50%) rotate(var(--arrow-rotate));
}

.safety-cycle-orbit-arc--1 {
  --arc-color: var(--cycle-purple);
  --arc-start: 286deg;
  --arrow-rotate: 24deg;
}

.safety-cycle-orbit-arc--1::after {
  left: 70.3%;
  top: 6.4%;
}

.safety-cycle-orbit-arc--2 {
  --arc-color: var(--cycle-teal);
  --arc-start: 46deg;
  --arrow-rotate: 144deg;
}

.safety-cycle-orbit-arc--2::after {
  left: 79.4%;
  top: 88.5%;
}

.safety-cycle-orbit-arc--3 {
  --arc-color: var(--cycle-orange);
  --arc-start: 166deg;
  --arrow-rotate: 264deg;
}

.safety-cycle-orbit-arc--3::after {
  left: 1.5%;
  top: 52.5%;
}

.safety-cycle-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: var(--cycle-center-size);
  height: var(--cycle-center-size);
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 32, .1);
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}

.safety-section .safety-cycle-center .safety-cycle-center-text {
  margin: 0;
  max-width: 9.5ch;
  color: #111820;
  font-size: clamp(.42rem, .95vw, .8rem);
  font-weight: 700;
  line-height: 1.1;
}

.safety-cycle-phase {
  --cycle-phase-bg: var(--cycle-purple);
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: var(--cycle-phase-size);
  height: var(--cycle-phase-size);
  padding: 16px 12px;
  border: 0;
  border-radius: 50%;
  background: var(--cycle-phase-bg);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 36px rgba(17, 24, 32, .14);
  transition: filter .34s ease, box-shadow .34s ease;
}

.safety-cycle-phase--1 {
  --cycle-phase-bg: var(--cycle-purple);
  left: 50%;
  top: 25%;
}

.safety-cycle-phase--2 {
  --cycle-phase-bg: var(--cycle-teal);
  left: 72%;
  top: 68%;
}

.safety-cycle-phase--3 {
  --cycle-phase-bg: var(--cycle-orange);
  left: 28%;
  top: 68%;
}

.safety-cycle-phase-index {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .42);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  transition: font-size .34s ease, opacity .34s ease, transform .34s ease;
}

.safety-cycle-phase--1 .safety-cycle-phase-index {
  transform: translateY(-12px);
}

.safety-cycle-phase--2 .safety-cycle-phase-index {
  transform: translate(10px, 8px);
}

.safety-cycle-phase--3 .safety-cycle-phase-index {
  transform: translate(-10px, 8px);
}

.safety-cycle-phase strong {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: #fff;
  font-size: clamp(.66rem, 1.3vw, .78rem);
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
  transform: translateY(8px);
  transition: opacity .34s ease, transform .34s ease, max-height .34s ease, margin-top .34s ease;
}

.safety-cycle-phase:hover,
.safety-cycle-phase:focus-visible,
.safety-cycle-phase.is-active {
  z-index: 6;
  filter: saturate(1.06) brightness(1.03);
  box-shadow: 0 20px 44px rgba(17, 24, 32, .18);
}

.safety-cycle-phase:hover .safety-cycle-phase-index,
.safety-cycle-phase:focus-visible .safety-cycle-phase-index,
.safety-cycle-phase.is-active .safety-cycle-phase-index {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  opacity: .55;
}

.safety-cycle-phase--1:hover .safety-cycle-phase-index,
.safety-cycle-phase--1:focus-visible .safety-cycle-phase-index,
.safety-cycle-phase--1.is-active .safety-cycle-phase-index {
  transform: translateY(-6px);
}

.safety-cycle-phase--2:hover .safety-cycle-phase-index,
.safety-cycle-phase--2:focus-visible .safety-cycle-phase-index,
.safety-cycle-phase--2.is-active .safety-cycle-phase-index {
  transform: translate(6px, 4px);
}

.safety-cycle-phase--3:hover .safety-cycle-phase-index,
.safety-cycle-phase--3:focus-visible .safety-cycle-phase-index,
.safety-cycle-phase--3.is-active .safety-cycle-phase-index {
  transform: translate(-6px, 4px);
}

.safety-cycle-phase:hover strong,
.safety-cycle-phase:focus-visible strong,
.safety-cycle-phase.is-active strong {
  max-height: 3.4em;
  margin-top: 4px;
  opacity: 1;
  transform: translateY(0);
}

.safety-cycle-phase:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .75);
  outline-offset: 4px;
}

.safety-cycle-diagram.is-dimmed .safety-cycle-phase:not(.is-active):not(:hover):not(:focus-visible) {
  filter: saturate(.85) brightness(.92);
  opacity: .78;
}

.safety-injury-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(18px, 2vw, 24px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 32, .08);
}

.safety-injury-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px 16px;
}

.safety-injury-titles {
  display: grid;
  gap: var(--subtitle-after-tight);
}

.safety-injury-titles .rights-panel-title {
  margin: 0;
}

.safety-injury-titles .rights-panel-title:not(:first-child) {
  margin-top: 0;
}

.safety-injury-legend {
  justify-content: flex-start;
}

.safety-legend-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--legend-color, var(--orange));
}

.safety-legend-swatch--ltifr {
  background: var(--orange);
}

.safety-legend-swatch--trifr {
  background: #9d4eb6;
}

.safety-hbar-chart {
  display: grid;
  gap: 14px;
}

.safety-hbar-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.safety-hbar-year {
  color: #4e5359;
  font-size: clamp(.72rem, .78vw, .82rem);
  font-weight: 800;
}

.safety-hbar-tracks {
  display: grid;
  gap: 6px;
}

.safety-hbar-track {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.safety-hbar {
  display: block;
  flex: 0 0 calc((100% - 2.6rem) * var(--bar-scale));
  height: 14px;
  width: calc((100% - 2.6rem) * var(--bar-scale));
  max-width: none;
  border-radius: 4px;
  transform-origin: left center;
  will-change: transform;
}

.safety-hbar--ltifr {
  background: var(--orange);
}

.safety-hbar--trifr {
  background: #9d4eb6;
}

.safety-hbar-value {
  flex: 0 0 auto;
  color: #111820;
  font-size: clamp(.68rem, .74vw, .78rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.safety-panel--health {
  justify-items: stretch;
}

.safety-panel--health > figcaption {
  display: grid;
  gap: 0;
  margin-bottom: 2px;
}

.safety-panel--health .rights-panel-title {
  margin-bottom: 0;
}

.safety-health-interactive {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
  align-items: start;
  justify-items: stretch;
  min-width: 0;
  margin-top: 60px;
}

.safety-health-diagram {
  min-width: 0;
  width: 100%;
  max-width: min(100%, 380px);
  margin: 0 auto;
}

.safety-health-impactos {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.safety-health-hint {
  margin: 10px 0 60px;
  text-align: center;
  max-width: 36em;
  justify-self: center;
}

.safety-health-hit {
  cursor: pointer;
  transition: opacity .28s ease, filter .28s ease;
  outline: none;
}

.safety-health-impactos.is-dimmed #Capa_1-2 > .safety-health-hit:not(.is-active) {
  opacity: .48;
  filter: saturate(.88) brightness(.96);
}

.safety-health-impactos #Capa_1-2 > .safety-health-hit.is-active,
.safety-health-impactos #Capa_1-2 > .safety-health-hit:hover,
.safety-health-impactos #Capa_1-2 > .safety-health-hit:focus-visible {
  opacity: 1;
  filter: none;
}

.safety-health-hit:focus-visible {
  outline: 2px solid rgba(255, 131, 28, .85);
  outline-offset: 3px;
}

.safety-health-detail {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 0;
  padding: 4px 0 0;
  border: 0;
}

.safety-health-panel {
  grid-area: 1 / 1;
  display: grid;
  gap: 8px;
  align-content: start;
}

.safety-health-panel[hidden] {
  display: none;
}

.safety-health-detail .rights-evaluation-title {
  margin: 0;
}

.safety-health-detail p {
  margin: 0;
}

.safety-health-copy .rights-panel-title + p {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .safety-pillar {
    animation: none;
  }

  .safety-health-hit {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .safety-grid-contractors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(14px, 1.8vw, 20px);
  }

  .safety-grid-metrics {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .safety-grid-health {
    grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
  }

  .safety-health-diagram {
    max-width: min(100%, 340px);
  }
}

@media (max-width: 920px) {
  .safety-grid-health {
    grid-template-columns: 1fr;
  }
}

.pueblos-section {
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 96px);
  background: #fff;
}

.pueblos-layout {
  display: grid;
  gap: clamp(28px, 3.2vw, 40px);
}

.pueblos-section-head {
  display: grid;
  gap: 0;
  max-width: none;
}

.pueblos-editorial-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  white-space: nowrap;
}

.pueblos-editorial-title span,
.pueblos-editorial-title strong {
  display: inline;
}

.pueblos-editorial-title span {
  font-weight: 300;
}

.pueblos-editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.pueblos-grid-main {
  display: grid;
  grid-template-columns: minmax(0, .43fr) minmax(0, .57fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.pueblos-copy {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
  align-content: start;
  min-width: 0;
}

.pueblos-intro {
  display: grid;
  gap: 16px;
  align-content: start;
}

.pueblos-section p:not(.pueblos-hint):not(.pueblos-cases-text) {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.pueblos-diagram-block {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  margin: 0;
  min-width: 0;
}

.pueblos-diagram {
  --pueblos-sphere: #e84820;
  --pueblos-center: #a052b1;
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.pueblos-center-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 46%;
  height: 46%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pueblos-center {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 13%;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--pueblos-center);
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.pueblos-center span {
  font-size: clamp(.62rem, 1.1vw, .82rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.pueblos-sphere {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41%;
  height: 41%;
  margin: 0;
  padding: 5%;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--pueblos-sphere);
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: none;
  transition: transform .28s ease, filter .28s ease, opacity .28s ease, box-shadow .28s ease, z-index 0s;
  outline: none;
  text-align: center;
}

.pueblos-sphere-label {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 11.5em;
  margin: 0;
  padding: 0;
  font-size: clamp(.58rem, 1.05vw, .76rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
}

/* Antes: 14%. Ahora: 10% → +4% hacia afuera (más aire entre esferas) */
.pueblos-sphere--estudios {
  left: 4%;
  top: 4%;
}

.pueblos-sphere--gestion {
  right: 4%;
  top: 4%;
}

.pueblos-sphere--cpli {
  left: 4%;
  bottom: 4%;
}

.pueblos-sphere--oportunidades {
  right: 4%;
  bottom: 4%;
}

.pueblos-sphere-dots {
  /* L simétrica: 4 puntos por brazo (esquina compartida = 7 puntos) */
  --dot-size: 5px;
  --dot-gap: 5px;
  --l-cells: 4;
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  width: calc((var(--dot-size) * var(--l-cells)) + (var(--dot-gap) * (var(--l-cells) - 1)));
  height: calc((var(--dot-size) * var(--l-cells)) + (var(--dot-gap) * (var(--l-cells) - 1)));
  display: grid;
  grid-template-columns: repeat(4, var(--dot-size));
  grid-template-rows: repeat(4, var(--dot-size));
  gap: var(--dot-gap);
  pointer-events: none;
}

.pueblos-sphere-dots i {
  display: block;
  width: var(--dot-size);
  height: var(--dot-size);
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

/* L vértice abajo-derecha (TL → centro) */
.pueblos-sphere-dots--br {
  right: 14%;
  bottom: 14%;
  left: auto;
  top: auto;
}

.pueblos-sphere-dots--br i:nth-child(1) { grid-column: 4; grid-row: 1; }
.pueblos-sphere-dots--br i:nth-child(2) { grid-column: 4; grid-row: 2; }
.pueblos-sphere-dots--br i:nth-child(3) { grid-column: 4; grid-row: 3; }
.pueblos-sphere-dots--br i:nth-child(4) { grid-column: 1; grid-row: 4; }
.pueblos-sphere-dots--br i:nth-child(5) { grid-column: 2; grid-row: 4; }
.pueblos-sphere-dots--br i:nth-child(6) { grid-column: 3; grid-row: 4; }
.pueblos-sphere-dots--br i:nth-child(7) { grid-column: 4; grid-row: 4; }

/* L vértice abajo-izquierda (TR → centro) */
.pueblos-sphere-dots--bl {
  left: 14%;
  bottom: 14%;
  right: auto;
  top: auto;
}

.pueblos-sphere-dots--bl i:nth-child(1) { grid-column: 1; grid-row: 1; }
.pueblos-sphere-dots--bl i:nth-child(2) { grid-column: 1; grid-row: 2; }
.pueblos-sphere-dots--bl i:nth-child(3) { grid-column: 1; grid-row: 3; }
.pueblos-sphere-dots--bl i:nth-child(4) { grid-column: 1; grid-row: 4; }
.pueblos-sphere-dots--bl i:nth-child(5) { grid-column: 2; grid-row: 4; }
.pueblos-sphere-dots--bl i:nth-child(6) { grid-column: 3; grid-row: 4; }
.pueblos-sphere-dots--bl i:nth-child(7) { grid-column: 4; grid-row: 4; }

/* L vértice arriba-derecha (BL → centro) */
.pueblos-sphere-dots--tr {
  right: 14%;
  top: 14%;
  left: auto;
  bottom: auto;
}

.pueblos-sphere-dots--tr i:nth-child(1) { grid-column: 1; grid-row: 1; }
.pueblos-sphere-dots--tr i:nth-child(2) { grid-column: 2; grid-row: 1; }
.pueblos-sphere-dots--tr i:nth-child(3) { grid-column: 3; grid-row: 1; }
.pueblos-sphere-dots--tr i:nth-child(4) { grid-column: 4; grid-row: 1; }
.pueblos-sphere-dots--tr i:nth-child(5) { grid-column: 4; grid-row: 2; }
.pueblos-sphere-dots--tr i:nth-child(6) { grid-column: 4; grid-row: 3; }
.pueblos-sphere-dots--tr i:nth-child(7) { grid-column: 4; grid-row: 4; }

/* L vértice arriba-izquierda (BR → centro) */
.pueblos-sphere-dots--tl {
  left: 14%;
  top: 14%;
  right: auto;
  bottom: auto;
}

.pueblos-sphere-dots--tl i:nth-child(1) { grid-column: 1; grid-row: 1; }
.pueblos-sphere-dots--tl i:nth-child(2) { grid-column: 2; grid-row: 1; }
.pueblos-sphere-dots--tl i:nth-child(3) { grid-column: 3; grid-row: 1; }
.pueblos-sphere-dots--tl i:nth-child(4) { grid-column: 4; grid-row: 1; }
.pueblos-sphere-dots--tl i:nth-child(5) { grid-column: 1; grid-row: 2; }
.pueblos-sphere-dots--tl i:nth-child(6) { grid-column: 1; grid-row: 3; }
.pueblos-sphere-dots--tl i:nth-child(7) { grid-column: 1; grid-row: 4; }

.pueblos-diagram.is-dimmed .pueblos-sphere:not(.is-active):not(:hover):not(:focus-visible) {
  opacity: .78;
  filter: saturate(.92) brightness(.97);
}

.pueblos-sphere.is-active {
  z-index: 6;
  opacity: 1;
  filter: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .55), 0 12px 30px rgba(80, 24, 12, .2);
}

.pueblos-sphere:hover,
.pueblos-sphere:focus-visible {
  z-index: 7;
  opacity: 1;
  filter: none;
  transform: scale(1.02);
  box-shadow: 0 8px 22px rgba(80, 24, 12, .14);
}

.pueblos-sphere.is-active:hover,
.pueblos-sphere.is-active:focus-visible {
  z-index: 7;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .55), 0 12px 30px rgba(80, 24, 12, .2);
}

.pueblos-sphere:focus-visible {
  outline: 2px solid rgba(255, 131, 28, .9);
  outline-offset: 3px;
}

.pueblos-hint {
  margin: 2px 0 0;
  text-align: center;
  justify-self: center;
  max-width: 36em;
}

.pueblos-detail {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 8.5em;
}

.pueblos-panel {
  grid-area: 1 / 1;
  display: grid;
  gap: 8px;
  align-content: start;
}

.pueblos-panel[hidden] {
  display: none;
}

.pueblos-detail .rights-evaluation-title {
  margin: 0;
}

.pueblos-detail p {
  margin: 0;
}

.pueblos-cases {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: clamp(16px, 2vw, 22px) 0 0;
  border-top: 1px solid rgba(17, 24, 32, .1);
  width: 100%;
  box-sizing: border-box;
}

.pueblos-cases-title {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
}

.pueblos-cases-text {
  margin: 4px 0 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.pueblos-support {
  margin: clamp(8px, 1.2vw, 14px) 0 0;
  padding: 0;
  width: 100%;
  min-width: 0;
}

.pueblos-support img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .pueblos-sphere {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .pueblos-grid-main {
    gap: clamp(28px, 3.5vw, 48px);
  }

  .pueblos-diagram {
    width: min(100%, 380px);
  }
}

@media (max-width: 920px) {
  .pueblos-grid-main {
    grid-template-columns: 1fr;
  }

  .pueblos-diagram {
    width: min(100%, calc(100vw - 40px), 400px);
  }

  .pueblos-center {
    border-width: 4px;
  }
}

/* —— Comunidades —— */
.comunidades-section {
  padding: clamp(48px, 6vw, 72px) 0 clamp(52px, 6.5vw, 80px);
  background: #fff;
}

.comunidades-layout {
  display: grid;
  gap: clamp(22px, 2.4vw, 32px);
}

.comunidades-section-head {
  display: grid;
  gap: 0;
  margin: 0;
}

.comunidades-editorial-title {
  margin: 0;
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
}

.comunidades-editorial-title strong {
  color: var(--editorial-accent);
  font-weight: 800;
}

.comunidades-grid {
  display: grid;
  grid-template-columns: minmax(0, .47fr) minmax(0, .53fr);
  gap: clamp(28px, 3.4vw, 48px);
  align-items: start;
}

.comunidades-col {
  display: grid;
  align-content: start;
  min-width: 0;
}

.comunidades-col--intro {
  gap: clamp(16px, 1.8vw, 22px);
}

.comunidades-col--performance {
  gap: 0;
}

.comunidades-intro {
  display: grid;
  gap: 14px;
}

.comunidades-section p:not(.comunidades-hint):not(.comunidades-callout-lead):not(.comunidades-init-hint) {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.comunidades-col--performance .rights-panel-title {
  margin-bottom: var(--subtitle-after);
}

.comunidades-col--performance .comunidades-mgmt-title {
  margin-top: 0;
}

.comunidades-callout {
  display: grid;
  gap: 14px;
  align-content: start;
  width: 100%;
  margin: 0;
  padding: clamp(20px, 2.4vw, 28px);
  color: #fff;
  box-sizing: border-box;
  background:
    linear-gradient(
      145deg,
      rgba(245, 130, 32, .98) 0%,
      rgba(235, 98, 28, .97) 48%,
      rgba(204, 79, 24, .98) 100%
    );
  height: auto;
}

/* Misma tipografía que .safety-callout-text (recuadro naranja aprobado) */
.comunidades-callout.value-chain-highlight-copy .comunidades-callout-lead {
  margin: 0;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.92rem, 1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
}

.comunidades-callout-list {
  margin: 0;
  padding: 0 0 0 1.15em;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(.9rem, .98vw, 1.02rem);
  font-weight: 400;
  line-height: 1.45;
  list-style: disc;
}

.comunidades-callout-list li {
  margin: 0 0 .55em;
  padding-left: .15em;
}

.comunidades-callout-list li:last-child {
  margin-bottom: 0;
}

.comunidades-diagram-block {
  display: grid;
  gap: 12px;
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  padding: 0;
  justify-items: center;
  min-width: 0;
}

.comunidades-diagram {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.comunidades-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(17, 24, 32, .18));
}

.comunidades-orbit-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: center center;
  will-change: transform;
}

.comunidades-orbit-spin::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
}

.comunidades-orbit-arc {
  --arc-color: #fff;
  --arc-start: 0deg;
  --arrow-rotate: 0deg;
  position: absolute;
  inset: 6px;
  border-radius: 50%;
}

.comunidades-orbit-arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from var(--arc-start), transparent 0deg 14deg, var(--arc-color) 14deg 78deg, transparent 78deg 360deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
}

.comunidades-orbit-arc::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid var(--arc-color);
  transform: translate(-50%, -50%) rotate(var(--arrow-rotate));
  filter: drop-shadow(0 0 1px rgba(17, 24, 32, .2));
}

.comunidades-orbit-arc--1 {
  --arc-color: #9e52af;
  --arc-start: 302deg;
  --arrow-rotate: 45deg;
}

.comunidades-orbit-arc--1::after {
  left: 68%;
  top: 6%;
}

.comunidades-orbit-arc--2 {
  --arc-color: #0ca28d;
  --arc-start: 32deg;
  --arrow-rotate: 135deg;
}

.comunidades-orbit-arc--2::after {
  left: 94%;
  top: 67%;
}

.comunidades-orbit-arc--3 {
  --arc-color: #f4811e;
  --arc-start: 122deg;
  --arrow-rotate: 225deg;
}

.comunidades-orbit-arc--3::after {
  left: 34%;
  top: 95%;
}

.comunidades-orbit-arc--4 {
  --arc-color: #4181dc;
  --arc-start: 212deg;
  --arrow-rotate: 315deg;
}

.comunidades-orbit-arc--4::after {
  left: 6%;
  top: 33%;
}

.comunidades-node {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 40%;
  aspect-ratio: 1;
  margin: 0;
  padding: 8% 8%;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 12px 28px rgba(80, 24, 12, .16);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease, filter .22s ease;
}

.comunidades-node-num {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(2.6rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  pointer-events: none;
  transition: font-size .35s ease, opacity .35s ease, transform .35s ease;
}

.comunidades-node-label {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 14ch;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(.72rem, .9vw, .9rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, max-height .35s ease, margin .35s ease, visibility .35s ease;
}

.comunidades-node:hover .comunidades-node-num,
.comunidades-node:focus-visible .comunidades-node-num,
.comunidades-node.is-active .comunidades-node-num {
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  opacity: .5;
}

.comunidades-node:hover .comunidades-node-label,
.comunidades-node:focus-visible .comunidades-node-label,
.comunidades-node.is-active .comunidades-node-label {
  max-height: 6em;
  margin-top: 6px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.comunidades-node--liderazgo {
  left: 30%;
  top: 0;
  background: linear-gradient(160deg, #b069c0 0%, #9e52af 55%, #8a4299 100%);
}

.comunidades-node--sistemas {
  right: 0;
  top: 30%;
  background: linear-gradient(160deg, #1bb59f 0%, #0ca28d 55%, #098a78 100%);
}

.comunidades-node--gente {
  left: 30%;
  bottom: 0;
  background: linear-gradient(160deg, #ff9a3d 0%, #f4811e 55%, #e06d12 100%);
}

.comunidades-node--metricas {
  left: 0;
  top: 30%;
  background: linear-gradient(160deg, #5b96e8 0%, #4181dc 55%, #336dca 100%);
}

.comunidades-diagram.is-dimmed .comunidades-node:not(.is-active):not(:hover):not(:focus-visible) {
  opacity: .78;
  filter: saturate(.92) brightness(.97);
}

.comunidades-node.is-active {
  z-index: 6;
  opacity: 1;
  filter: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .55), 0 14px 32px rgba(80, 24, 12, .22);
}

.comunidades-node:hover,
.comunidades-node:focus-visible {
  z-index: 7;
  opacity: 1;
  filter: none;
  transform: scale(1.03);
}

.comunidades-node.is-active:hover,
.comunidades-node.is-active:focus-visible {
  z-index: 7;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .55), 0 14px 32px rgba(80, 24, 12, .22);
}

.comunidades-node:focus-visible {
  outline: 2px solid rgba(255, 131, 28, .9);
  outline-offset: 3px;
}

.comunidades-hint {
  margin: 4px 0 0;
  text-align: center;
  max-width: 36em;
}

@media (prefers-reduced-motion: reduce) {
  .comunidades-node,
  .comunidades-node-num,
  .comunidades-node-label {
    transition: none;
  }

  .comunidades-orbit-spin {
    will-change: auto;
  }
}

@media (max-width: 1180px) {
  .comunidades-grid {
    gap: clamp(22px, 2.8vw, 36px);
  }

  .comunidades-diagram {
    width: min(100%, 360px);
  }
}

@media (max-width: 920px) {
  .comunidades-grid {
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 32px);
  }

  .comunidades-diagram {
    width: min(100%, 320px);
  }

  .comunidades-node-num {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

/* —— Comunidades: suministro e iniciativas —— */
.comunidades-supply {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(17, 24, 32, .1);
}

.comunidades-supply-grid {
  display: grid;
  grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.comunidades-supply-copy {
  display: grid;
  gap: 0;
  align-content: start;
  min-width: 0;
}

.comunidades-supply-title {
  margin-top: 0;
}

.comunidades-supply-copy > p:not(.comunidades-supply-links) {
  margin: 0 0 clamp(14px, 1.6vw, 20px);
}

.comunidades-supply-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 clamp(16px, 2vw, 22px);
}

.comunidades-supply-links a {
  color: var(--deep-orange);
  font-size: clamp(.95rem, 1vw, 1.05rem);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.comunidades-supply-links a:hover,
.comunidades-supply-links a:focus-visible {
  color: var(--orange);
}

.comunidades-supply-links a:focus-visible {
  outline: 2px solid rgba(255, 131, 28, .9);
  outline-offset: 3px;
}

.comunidades-initiatives {
  display: grid;
  align-content: start;
  min-width: 0;
}

.comunidades-init-shell {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.comunidades-init-hint {
  margin: 0;
  text-align: center;
}

.comunidades-init-module {
  display: grid;
  min-width: 0;
}

.comunidades-init-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: -1px;
}

.comunidades-init-tab {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 92px;
  margin: 0;
  padding: 12px 8px 10px;
  border: 1px solid rgba(17, 24, 32, .14);
  border-right-width: 0;
  border-radius: 2px 2px 0 0;
  color: #5c636b;
  background: #f7f7f6;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.comunidades-init-tab:last-child {
  border-right-width: 1px;
}

.comunidades-init-label {
  color: inherit;
  font-size: clamp(.78rem, .88vw, .92rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.comunidades-init-ods {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.comunidades-init-ods img {
  display: block;
  width: 100%;
  height: auto;
}

.comunidades-init-tab:hover,
.comunidades-init-tab:focus-visible {
  color: var(--deep-orange);
  background: rgba(245, 130, 32, .08);
}

.comunidades-init-tab.is-active {
  color: var(--deep-orange);
  border-color: rgba(17, 24, 32, .12);
  border-bottom-color: #fff;
  background: #fff;
}

.comunidades-init-tab:focus-visible {
  outline: 2px solid rgba(255, 131, 28, .95);
  outline-offset: -2px;
  z-index: 2;
}

.comunidades-init-body {
  display: grid;
}

.comunidades-init-detail {
  position: relative;
  z-index: 0;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 8em;
  padding: clamp(18px, 2.2vw, 26px);
  background:
    linear-gradient(180deg, rgba(245, 130, 32, .05) 0%, rgba(255, 255, 255, 0) 88px),
    #fff;
  border: 1px solid rgba(17, 24, 32, .12);
  border-radius: 0 0 2px 2px;
  box-sizing: border-box;
}

.comunidades-init-panel {
  grid-area: 1 / 1;
  display: grid;
  gap: 8px;
  align-content: start;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}

.comunidades-init-panel[hidden] {
  display: none;
}

.comunidades-init-detail .rights-evaluation-title {
  margin: 0;
  color: var(--deep-orange);
}

.comunidades-init-detail p {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.comunidades-metrics {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(17, 24, 32, .1);
}

.comunidades-metrics-title {
  margin-top: 0;
  margin-bottom: var(--subtitle-after);
  color: #EF4823;
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
}

.comunidades-metrics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr);
  gap: clamp(28px, 3.2vw, 44px);
  align-items: stretch;
  min-width: 0;
}

.comunidades-metrics-col--proveedores {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  height: 100%;
}

.comunidades-metrics-col--side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(22px, 2.6vw, 32px);
  min-width: 0;
  min-height: 100%;
}

.comunidades-metrics-block {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  height: 100%;
}

/* Métricas comunitarias: mismo patrón tipográfico que “Desempeño social” (.rights-panel-title) */
.comunidades-metrics-col--proveedores .rights-panel-title,
.comunidades-metrics-block .rights-panel-title {
  margin: 0 0 var(--subtitle-after);
  color: var(--editorial-accent);
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
  text-transform: none;
}

.comunidades-metrics-col--proveedores .rights-panel-title:not(:first-child),
.comunidades-metrics-block .rights-panel-title:not(:first-child) {
  margin-top: 0;
}

.comunidades-metrics-col--proveedores > p,
.comunidades-metrics-block > p {
  margin: 0;
}

.comunidades-metrics-list {
  margin: 0;
  padding: 0 0 0 1.15em;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  line-height: 1.6;
}

.comunidades-metrics-list li {
  margin: 0 0 .45em;
}

.comunidades-metrics-list li:last-child {
  margin-bottom: 0;
}

.comunidades-metric-table tbody th {
  font-weight: 600;
}

.comunidades-metric-year-current th,
.comunidades-metric-year-current td {
  font-weight: 800;
  background: #f7f7f6;
}

.comunidades-metrics-col--proveedores .people-table-note {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .comunidades-init-tab {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .comunidades-supply-grid {
    gap: clamp(20px, 2.5vw, 32px);
  }
}

@media (max-width: 920px) {
  .comunidades-supply-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .comunidades-init-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comunidades-init-tab {
    border-right-width: 1px;
  }

  .comunidades-init-tab:nth-child(odd) {
    border-right-width: 0;
  }

  .comunidades-init-tab:nth-child(-n+2) {
    border-bottom-width: 0;
    border-radius: 2px 2px 0 0;
  }

  .comunidades-init-tab:nth-child(n+3) {
    border-radius: 0;
  }

  .comunidades-init-tab.is-active {
    border-bottom-color: rgba(17, 24, 32, .12);
  }

  .comunidades-init-tab:nth-child(n+3).is-active {
    border-bottom-color: #fff;
  }

  .comunidades-init-detail {
    min-height: 0;
  }

  .comunidades-metrics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comunidades-metrics-col--side {
    grid-template-rows: none;
  }
}

/* --- Gestión de residuos minero-metalúrgicos --- */
.ambiental-residuos-section {
  padding: clamp(48px, 5.5vw, 80px) 0 clamp(56px, 6vw, 88px);
  background: #fff;
  scroll-margin-top: 92px;
}

.ambiental-residuos-shell {
  display: grid;
  gap: clamp(28px, 3.2vw, 44px);
}

.ambiental-residuos-head {
  display: grid;
  gap: 0;
  max-width: none;
}

.ambiental-residuos-title {
  margin: 0 0 clamp(22px, 2.8vw, 34px);
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
}

.ambiental-residuos-title > .ambiental-residuos-title-line {
  display: block;
}

.ambiental-residuos-title .ambiental-residuos-title-line > span {
  display: inline;
  font-weight: 300;
  color: var(--editorial-title-color);
}

.ambiental-residuos-title .ambiental-residuos-title-line > strong,
.ambiental-residuos-title > strong.ambiental-residuos-title-line {
  display: inline;
  color: var(--editorial-accent);
  font-weight: 800;
}

.ambiental-residuos-title > strong.ambiental-residuos-title-line {
  display: block;
}

.ambiental-residuos-band {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.ambiental-residuos-band--1 {
  grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.ambiental-residuos-intro {
  max-width: 38rem;
}

.ambiental-residuos-intro p,
.ambiental-residuos-gov-copy,
.ambiental-residuos-principles-lead,
.ambiental-residuos-defense-panel > p,
.ambiental-residuos-principles-list li,
.ambiental-residuos-indicators-copy p,
.ambiental-residuos-indicator p:not(.ambiental-residuos-indicator-value) {
  margin: 0;
  color: #111820;
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

/* Mismo puntaje/peso que Ambiental > Uso responsable del agua (.ambiental-agua-subtitle) */
.ambiental-residuos-subtitle {
  margin: 0 0 12px;
  color: var(--editorial-accent);
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
  white-space: nowrap;
}

.ambiental-residuos-subtitle--block[data-ambiental-residuos-gov-title],
.ambiental-residuos-subtitle--block[data-ambiental-residuos-impact-title],
.ambiental-residuos-metrics-title {
  color: #EF4823;
  font-weight: 700;
  white-space: normal;
}

.ambiental-residuos-subtitle--block {
  grid-column: 1 / -1;
}

.ambiental-residuos-policies-block {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  align-content: start;
  justify-self: center;
  justify-items: center;
  width: max-content;
  max-width: 100%;
}

.ambiental-residuos-policies-block .ambiental-residuos-subtitle {
  text-align: center;
  white-space: normal;
}

.ambiental-residuos-policies {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.2vw, 18px);
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ambiental-residuos-policy {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(118px, 13vw, 148px);
  aspect-ratio: 1;
  margin: 0;
  padding: 12px 10px;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(.64rem, .74vw, .78rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 18px rgba(245, 130, 32, .22);
}

.ambiental-residuos-policy span {
  display: block;
  text-wrap: balance;
}

.ambiental-residuos-policy--1 {
  background: #f58220;
  z-index: 2;
}

.ambiental-residuos-policy--2 {
  background: #e84820;
  z-index: 1;
}

.ambiental-residuos-band--2 {
  grid-template-columns: 1fr;
  gap: 0;
}

.ambiental-residuos-band--2 > .ambiental-residuos-subtitle--block {
  margin: 0 0 var(--subtitle-after);
}

.ambiental-residuos-gov-copy {
  max-width: 72rem;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
}

.ambiental-residuos-defense {
  --residuos-defense-size: min(100%, 360px);
  --defense-accent: #005ca6;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr);
  gap: clamp(20px, 2.6vw, 36px);
  align-items: start;
}

.ambiental-residuos-defense-visual {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
}

.ambiental-residuos-defense-diagram {
  --residuos-axis-color: rgba(17, 24, 32, .28);
  --residuos-axis-arrow: 7px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 26px);
  width: var(--residuos-defense-size);
  aspect-ratio: 1;
  margin: 0;
  isolation: isolate;
}

.ambiental-residuos-defense-content {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

.ambiental-residuos-defense-hint,
.ambiental-residuos-principles-hint {
  margin: 2px 0 0;
  color: #6f7379;
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.78rem, .84vw, .86rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

/* Mismo patrón que .safety-panel-hint (instrucciones "Selecciona cada...") */
.ambiental-residuos-principles-hint {
  margin: 0;
  font-weight: 600;
}

.ambiental-residuos-defense-axis {
  position: absolute;
  background: var(--residuos-axis-color);
  pointer-events: none;
  z-index: 0;
}

.ambiental-residuos-defense-axis--h {
  top: 50%;
  left: 6%;
  right: 6%;
  height: 2px;
  transform: translateY(-50%);
}

.ambiental-residuos-defense-axis--v {
  left: 50%;
  top: 6%;
  bottom: 6%;
  width: 2px;
  transform: translateX(-50%);
}

.ambiental-residuos-defense-axis--h::before,
.ambiental-residuos-defense-axis--h::after,
.ambiental-residuos-defense-axis--v::before,
.ambiental-residuos-defense-axis--v::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.ambiental-residuos-defense-axis--h::before {
  left: 0;
  top: 50%;
  transform: translate(-35%, -50%);
  border-width: var(--residuos-axis-arrow) var(--residuos-axis-arrow) var(--residuos-axis-arrow) 0;
  border-color: transparent var(--residuos-axis-color) transparent transparent;
}

.ambiental-residuos-defense-axis--h::after {
  right: 0;
  top: 50%;
  transform: translate(35%, -50%);
  border-width: var(--residuos-axis-arrow) 0 var(--residuos-axis-arrow) var(--residuos-axis-arrow);
  border-color: transparent transparent transparent var(--residuos-axis-color);
}

.ambiental-residuos-defense-axis--v::before {
  top: 0;
  left: 50%;
  transform: translate(-50%, -35%);
  border-width: 0 var(--residuos-axis-arrow) var(--residuos-axis-arrow) var(--residuos-axis-arrow);
  border-color: transparent transparent var(--residuos-axis-color) transparent;
}

.ambiental-residuos-defense-axis--v::after {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 35%);
  border-width: var(--residuos-axis-arrow) var(--residuos-axis-arrow) 0 var(--residuos-axis-arrow);
  border-color: var(--residuos-axis-color) transparent transparent transparent;
}

.ambiental-residuos-defense-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 6px;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: filter .28s ease, transform .28s ease, box-shadow .28s ease;
}

.ambiental-residuos-defense-node strong,
.ambiental-residuos-defense-node span {
  color: #fff;
}

.ambiental-residuos-defense-node strong {
  display: block;
  font-size: clamp(.72rem, .84vw, .9rem);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.ambiental-residuos-defense-node span {
  display: block;
  font-size: clamp(.58rem, .66vw, .7rem);
  font-weight: 400;
  line-height: 1.25;
  opacity: .92;
}

.ambiental-residuos-defense-node--1 { background: #005ca6; }
.ambiental-residuos-defense-node--2 { background: #4282de; }
.ambiental-residuos-defense-node--3 { background: #17b5de; }
.ambiental-residuos-defense-node--4 { background: #0da48e; }

.ambiental-residuos-defense-node:hover,
.ambiental-residuos-defense-node:focus-visible,
.ambiental-residuos-defense-node.is-active {
  filter: brightness(1.05);
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(17, 24, 32, .18);
}

.ambiental-residuos-defense-node:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.ambiental-residuos-defense-panels {
  display: grid;
  align-items: start;
  min-width: 0;
  width: 100%;
}

.ambiental-residuos-defense-panel {
  --defense-accent: #005ca6;
  grid-area: 1 / 1;
  display: grid;
  gap: 12px;
  align-content: start;
  width: 100%;
  padding: clamp(16px, 1.7vw, 22px);
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: 12px;
  border-top: 3px solid var(--defense-accent);
  background: #f6f7f8;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease;
}

.ambiental-residuos-defense-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ambiental-residuos-defense-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 24, 32, .08);
}

.ambiental-residuos-defense-panel-roman {
  color: var(--defense-accent);
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.ambiental-residuos-defense-panel-titles {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ambiental-residuos-defense-panel h4 {
  margin: 0;
  color: #111820;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 800;
  line-height: 1.3;
}

.ambiental-residuos-defense-panel-line {
  margin: 0;
  color: #6f7379;
  font-size: clamp(.78rem, .84vw, .88rem);
  font-weight: 400;
  line-height: 1.35;
}

.ambiental-residuos-band--3 {
  grid-template-columns: 1fr;
}

.ambiental-residuos-principles {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  margin-bottom: 60px;
}

.ambiental-residuos-principles-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
  box-sizing: border-box;
}

.ambiental-residuos-principle-card {
  grid-column: span 2;
  min-width: 0;
  height: clamp(260px, 19vw, 270px);
  perspective: 900px;
}

.ambiental-residuos-principle-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.ambiental-residuos-principle-card:nth-child(6) {
  grid-column: 4 / span 2;
}

.ambiental-residuos-principle-card:nth-child(7) {
  grid-column: 6 / span 2;
}

.ambiental-residuos-principle-button {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  appearance: none;
  background: transparent;
  color: #111820;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.ambiental-residuos-principle-button:focus-visible {
  outline: 2px solid var(--editorial-accent);
  outline-offset: 3px;
}

.ambiental-residuos-principle-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
}

.ambiental-residuos-principle-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 16px);
  min-width: 0;
  padding: clamp(18px, 1.6vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(239, 72, 35, .62);
  border-radius: 8px;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 8px 24px rgba(17, 24, 32, .06);
}

.ambiental-residuos-principle-front {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  text-align: center;
}

.ambiental-residuos-principle-front::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(239, 72, 35, .5);
  border-radius: 50%;
  background:
    linear-gradient(var(--editorial-accent), var(--editorial-accent)) center / 9px 1px no-repeat,
    linear-gradient(var(--editorial-accent), var(--editorial-accent)) center / 1px 9px no-repeat;
}

.ambiental-residuos-principle-back {
  background: #f7f7f5;
  transform: rotateY(180deg);
}

.ambiental-residuos-principle-back > span:last-child {
  font-size: clamp(.86rem, .88vw, .92rem);
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

.ambiental-residuos-principle-front strong {
  max-width: 22ch;
  color: #111820;
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.94rem, 1vw, 1.04rem);
  font-weight: 700;
  line-height: 1.28;
  text-wrap: balance;
}

.ambiental-residuos-principle-front .ambiental-residuos-principle-index {
  flex: 0 0 auto;
}

.ambiental-residuos-principle-index {
  color: var(--editorial-accent);
  font-size: clamp(1.15rem, 1.35vw, 1.45rem);
  font-weight: 800;
  line-height: 1;
}

.ambiental-residuos-principle-button.is-flipped .ambiental-residuos-principle-inner,
.ambiental-residuos-principle-button:focus-visible .ambiental-residuos-principle-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .ambiental-residuos-principle-card:hover .ambiental-residuos-principle-inner {
    transform: rotateY(180deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambiental-residuos-principle-inner {
    transition: none;
  }
}

.ambiental-residuos-metrics {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  grid-column: 1 / -1;
}

.ambiental-residuos-metrics-title {
  margin: 0;
}

.ambiental-residuos-metrics-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, .8fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
  min-width: 0;
  padding: clamp(18px, 2vw, 28px);
  background: #f1f1f0;
  border-radius: 2px;
  box-sizing: border-box;
}

.ambiental-residuos-metrics-panel > .ambiental-residuos-flow-notes {
  grid-column: 1 / -1;
  margin-top: clamp(4px, .6vw, 8px);
}

.ambiental-residuos-indicators-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
  min-width: 0;
}

.ambiental-residuos-indicators-copy {
  min-width: 0;
}

.ambiental-residuos-indicator {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: clamp(14px, 1.5vw, 18px);
  background: #fff;
  border-radius: 0;
  align-content: start;
}

.ambiental-residuos-indicator-value {
  margin: 0;
  color: var(--editorial-accent);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
}

.ambiental-residuos-flow {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.ambiental-jales-flow {
  width: 100%;
  max-width: 580px;
  margin-inline: auto;
}

.ambiental-jales-flow-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.ambiental-residuos-flow-notes {
  margin: 0;
  padding-left: 1.1em;
  color: #4e5359;
  font-size: clamp(.72rem, .78vw, .84rem);
  font-weight: 400;
  line-height: 1.5;
}

.ambiental-residuos-flow-notes li + li {
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .ambiental-residuos-defense-node,
  .ambiental-residuos-defense-panel {
    transition: none;
  }
}

/* --- Residuos peligrosos y de manejo especial --- */
.ambiental-residuos-especiales-section {
  padding: clamp(48px, 5.5vw, 80px) 0 clamp(56px, 6vw, 88px);
  background: #fff;
  scroll-margin-top: 92px;
}

.ambiental-residuos-especiales-shell {
  display: grid;
  gap: clamp(28px, 3.2vw, 44px);
}

.ambiental-residuos-especiales-head {
  display: grid;
  gap: 0;
}

.ambiental-residuos-especiales-title {
  margin: 0 0 clamp(22px, 2.8vw, 34px);
  color: var(--editorial-title-color);
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
}

.ambiental-residuos-especiales-title > .ambiental-residuos-especiales-title-line {
  display: block;
}

.ambiental-residuos-especiales-title .ambiental-residuos-especiales-title-line {
  font-weight: 300;
  color: var(--editorial-title-color);
}

.ambiental-residuos-especiales-title .ambiental-residuos-especiales-title-line > strong,
.ambiental-residuos-especiales-title > strong.ambiental-residuos-especiales-title-line {
  display: inline;
  color: var(--editorial-accent);
  font-weight: 800;
}

.ambiental-residuos-especiales-title > strong.ambiental-residuos-especiales-title-line {
  display: block;
}

/* Mismo puntaje/peso que .ambiental-agua-subtitle; color actual conservado */
.ambiental-residuos-especiales-subtitle {
  margin: 0 0 12px;
  color: var(--editorial-accent);
  font-size: clamp(calc(1rem + 2px), calc(1.12vw + 2px), calc(1.16rem + 2px));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
}

.ambiental-residuos-especiales-overview {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.52fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: start;
}

.ambiental-residuos-especiales-intro {
  margin: 0;
  color: #111820;
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.ambiental-residuos-especiales-policies {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  justify-items: center;
}

.ambiental-residuos-especiales-policies .ambiental-residuos-especiales-subtitle {
  justify-self: start;
  width: 100%;
}

.ambiental-residuos-especiales-policy-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 16px);
  width: 100%;
  max-width: min(100%, 920px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ambiental-residuos-especiales-overview .ambiental-residuos-especiales-policy {
  width: clamp(100px, 10.5vw, 138px);
}

.ambiental-residuos-especiales-policy {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(112px, 12.5vw, 148px);
  aspect-ratio: 1;
  margin: 0;
  padding: 12px 10px;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(.58rem, .68vw, .74rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 18px rgba(245, 130, 32, .22);
}

.ambiental-residuos-especiales-policy span {
  display: block;
  text-wrap: balance;
}

.ambiental-residuos-especiales-policy--1 { background: #f58220; }
.ambiental-residuos-especiales-policy--2 { background: #f15922; }
.ambiental-residuos-especiales-policy--3 { background: #e84820; }
.ambiental-residuos-especiales-policy--4 { background: #d94218; }
.ambiental-residuos-especiales-policy--5 { background: #c53a14; }

.ambiental-residuos-especiales-metrics {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
}

.ambiental-residuos-especiales-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  align-items: start;
}

.ambiental-residuos-especiales-metric {
  display: grid;
  gap: 8px;
  padding: clamp(14px, 1.6vw, 20px);
  background: rgba(17, 24, 32, .04);
}

.ambiental-residuos-especiales-metric-value {
  margin: 0;
  color: var(--editorial-accent);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.ambiental-residuos-especiales-metric p:not(.ambiental-residuos-especiales-metric-value) {
  margin: 0;
  color: #111820;
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.98rem, 1.02vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
}

.ambiental-residuos-especiales-charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  align-items: stretch;
}

.ambiental-residuos-especiales-chart {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 0;
  min-width: 0;
  padding: clamp(20px, 2.4vw, 28px) clamp(18px, 2.2vw, 26px) clamp(18px, 2vw, 24px);
  background: #f1f1f0;
}

.ambiental-residuos-especiales-chart-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ambiental-residuos-especiales-chart-hint {
  margin: 6px 0 12px;
  color: #6f7379;
  font-family: "komet", Arial, sans-serif;
  font-size: clamp(.78rem, .84vw, .86rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.ambiental-residuos-especiales-donut-wrap {
  --pie-cover: #f1f1f0;
  position: relative;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 1;
  margin: 0 auto 14px;
}

.ambiental-residuos-especiales-donut,
.ambiental-residuos-especiales-donut-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.ambiental-residuos-especiales-donut {
  --pie-cover: #f1f1f0;
  cursor: pointer;
}

.ambiental-residuos-especiales-donut-wheel {
  background: conic-gradient(from 0deg, var(--segments));
  box-shadow: 0 16px 32px rgba(16, 24, 32, .1);
  transition: opacity .28s ease;
}

.ambiental-residuos-especiales-donut.is-dimmed .ambiental-residuos-especiales-donut-wheel {
  opacity: .92;
}

.ambiental-residuos-especiales-donut-gear {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: ambientalResiduosEspecialesGearSpin 7.5s linear infinite;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
}

.ambiental-residuos-especiales-donut-gear::before,
.ambiental-residuos-especiales-donut-gear span {
  position: absolute;
  display: grid;
  border-radius: 50%;
  background: var(--pie-cover);
}

.ambiental-residuos-especiales-donut-gear::before {
  content: "";
  inset: 0;
  z-index: 2;
}

.ambiental-residuos-especiales-donut-gear span {
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 14%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-352%);
}

/* Texto central únicamente: el disco festoneado vive en .donut-gear (único núcleo) */
.ambiental-residuos-especiales-donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 2px;
  width: 44%;
  aspect-ratio: 1;
  max-width: none;
  padding: 0 0 .28em;
  color: #111820;
  text-align: center;
  pointer-events: none;
  background: none;
  border-radius: 0;
  transform: translate(-50%, -50%);
}

.ambiental-residuos-especiales-donut-center strong {
  color: inherit;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  transition: color .22s ease;
}

.ambiental-residuos-especiales-donut-center span {
  color: #6f7379;
  font-size: clamp(.68rem, .75vw, .8rem);
  font-weight: 400;
  line-height: 1;
}

@keyframes ambientalResiduosEspecialesGearSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ambiental-residuos-especiales-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 12px;
}

.ambiental-residuos-especiales-legend--peligrosos {
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
}

.ambiental-residuos-especiales-legend--special {
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
}

.ambiental-residuos-especiales-legend button {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 3px 4px;
  border: 0;
  border-radius: 4px;
  color: #3d4349;
  background: transparent;
  font: inherit;
  font-size: clamp(.78rem, .85vw, .88rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.ambiental-residuos-especiales-legend button i {
  width: 11px;
  aspect-ratio: 1;
  margin-top: 0;
  border-radius: 50%;
  background: var(--legend-color);
}

.ambiental-residuos-especiales-legend button:hover,
.ambiental-residuos-especiales-legend button:focus-visible {
  color: #101820;
  background: rgba(255, 255, 255, .55);
  outline: none;
}

.ambiental-residuos-especiales-legend button.is-active {
  color: #101820;
  font-weight: 800;
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 3px 0 0 var(--legend-color);
}

.ambiental-residuos-especiales-chart.is-exploring .ambiental-residuos-especiales-legend button:not(.is-active) {
  opacity: .42;
}

.ambiental-residuos-especiales-legend button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .ambiental-residuos-especiales-donut-gear {
    animation: none;
    transform: translate(-50%, -50%);
  }

  .ambiental-residuos-especiales-legend button {
    transition: none;
  }
}

/* ASG Creando valor: stage transparente en escritorio (sin caja propia) */
.esg-section .esg-diagram-stage {
  display: contents;
}
