/*
═══════════════════════════════════════════════════════
  EZTO® — Sistema de diseño
  Principios: Google Material Design 3 + Identidad EZTO
───────────────────────────────────────────────────────
  Tipografías:
    --font-display  Druk → fallback Anton  (impacto)
    --font-ui       Space Grotesk          (sistema/cuerpo)

  Espaciado: grid 8dp (4 · 8 · 12 · 16 · 24 · 32 · 48 · 64)
  Breakpoints MD3:
    compact   0–599px   (mobile)
    medium    600–904px (tablet)
    expanded  905px+    (desktop)
═══════════════════════════════════════════════════════
*/

/* ─── FUENTES LOCALES ─── */
@font-face {
  font-family: 'Druk';
  src: url('fonts/Druk-Wide-Bold.woff2') format('woff2'),
    url('fonts/Druk-Wide-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Druk';
  src: url('fonts/Druk-Wide-Super.woff2') format('woff2'),
    url('fonts/Druk-Wide-Super.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS DE DISEÑO ─── */
:root {
  /* Tipografías */
  --font-display: 'Druk', 'Anton', 'Arial Black', Impact, sans-serif;
  --font-ui: 'Space Grotesk', system-ui, sans-serif;

  /* Paleta */
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-white: #FFFFFF;
  --color-red: #f03b7e;
  --color-muted: rgba(255, 255, 255, 0.45);
  --color-muted-low: rgba(255, 255, 255, 0.25);

  /* Espaciado 8dp */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;

  /* Header */
  --header-h: 64px;

  /* Transición */
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Offset para secciones con scroll-margin (header fijo) */
section[id] {
  scroll-margin-top: var(--header-h);
}


/* ══════════════════════════════════════════
   HEADER FIJO
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-6);
}

/* Logo */
.header-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-white);
  flex-shrink: 0;
}

/* Nav desktop */
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.header-nav a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s var(--ease);
  min-height: 48px;
  /* touch target MD3 */
  display: inline-flex;
  align-items: center;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-white);
}

/* Divisor visual IG | BE | YT */
.header-nav .nav-divider {
  width: 1px;
  height: 16px;
  background: var(--color-border);
}

/* Redes — siempre visibles */
.header-social {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.header-social a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s var(--ease);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.header-social a:hover {
  color: var(--color-white);
}

/* ── Botón idioma ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: border-color 0.2s, color 0.2s;
  min-height: 28px;
}

.lang-toggle:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.lang-sep {
  opacity: 0.35;
  font-weight: 300;
}

/* Idioma activo destacado */
.lang-toggle .lang-es,
.lang-toggle .lang-en {
  opacity: 0.45;
  transition: opacity 0.2s, color 0.2s;
}

[lang="es"] .lang-toggle .lang-es,
[lang="en"] .lang-toggle .lang-en {
  opacity: 1;
  color: var(--color-white);
}

.lang-toggle--mobile {
  margin-top: var(--sp-4);
  align-self: flex-start;
  font-size: 12px;
  padding: 8px 16px;
}

/* Hamburger — solo mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: var(--sp-3);
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-white);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Menú mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-bg);
  z-index: 99;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-6);
  border-top: 1px solid var(--color-border);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-white);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--color-border);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.mobile-menu a:hover {
  opacity: 1;
}

.mobile-menu a.social-link {
  font-size: 14px;
  font-family: var(--font-ui);
  letter-spacing: 0.16em;
  color: var(--color-muted);
}


/* ══════════════════════════════════════════
   CONTENIDO PRINCIPAL
══════════════════════════════════════════ */
.site-main {
  padding-top: var(--header-h);
}


/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */
#home,
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h));
  min-height: 480px;
  overflow: hidden;
}

/* Cada slide ocupa todo el contenedor */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1.2s var(--ease);
  transform: scale(1.03);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Dots navegación */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.hero-dot.is-active {
  background: var(--color-white);
  border-color: var(--color-white);
}

/* ── SLIDE 1: estilos originales ── */
.hero-slide--1 {}

/* ══════════════════════════════════════════
   SECCIÓN: HERO (#home)
══════════════════════════════════════════ */
#home {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h));
  min-height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 10, 10, 0.97) 0%,
      rgba(10, 10, 10, 0.85) 45%,
      rgba(10, 10, 10, 0.25) 72%,
      rgba(10, 10, 10, 0.02) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-7) var(--sp-8);
  max-width: 760px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 108px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: var(--sp-5);
}

.hero-headline .red {
  color: var(--color-red);
}

.hero-headline .nowrap {
  white-space: nowrap;
}

.hero-subline {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.68;
  margin-bottom: var(--sp-2);
  letter-spacing: 0.01em;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--color-white);
  opacity: 0.25;
  margin-bottom: var(--sp-5);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.75;
  transition: opacity 0.2s var(--ease);
  min-height: 48px;
}

.hero-cta:hover {
  opacity: 1;
}

.hero-cta .arrow {
  color: var(--color-red);
  font-size: 16px;
}

/* Etiquetas laterales */
.hero-label {
  position: absolute;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.35;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-label--left {
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.hero-label--bottom {
  left: var(--sp-4);
  bottom: var(--sp-6);
  transform: rotate(180deg);
}

/* Barra roja lateral derecha */
.hero-bar {
  position: absolute;
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100px;
  background: var(--color-red);
  z-index: 2;
}

/* Deco 404 */
.hero-deco-404 {
  position: absolute;
  right: var(--sp-8);
  top: 50%;
  transform: translateY(-55%);
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--color-white);
  opacity: 0.35;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: right;
}

/* Bottom right deco */
.hero-deco-br {
  position: absolute;
  right: var(--sp-6);
  bottom: var(--sp-5);
  z-index: 2;
  text-align: right;
}

.hero-deco-br p {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.45;
  line-height: 1.5;
}

.hero-barcode {
  display: flex;
  gap: 1.5px;
  justify-content: flex-end;
  margin-top: var(--sp-2);
}

.hero-barcode span {
  display: inline-block;
  background: var(--color-white);
  opacity: 0.35;
  height: 12px;
}


/* ══════════════════════════════════════════
   SLIDE 2: No compres identidad
   (usa la misma estructura que slide 1)
══════════════════════════════════════════ */
:root {
  --color-yellow: #D4A000;
}

/* Imagen de fondo slide 2 */
.s2-bg {
  background-image: url('images/hero-slide2.jpg');
  background-position: center right;
}

/* Barra lateral amarilla en lugar de roja */
.s2-bar {
  background: var(--color-yellow) !important;
}

/* Pretítulo encima del headline */
.s2-pretitle {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

/* Acento amarillo dentro del headline y pretítulo */
.s2-yellow {
  color: var(--color-yellow);
}

/* CTA flecha amarilla en slide 2 */
.s2-arrow {
  color: var(--color-yellow) !important;
}

/* Decorativo derecho en amarillo */
.s2-deco-color {
  color: var(--color-yellow) !important;
  opacity: 0.45 !important;
}


/* ══════════════════════════════════════════
   SLIDE 3: David x EZTO — Brand Guidelines
══════════════════════════════════════════ */

/* Imagen de fondo slide 3 */
.hero-slide--3 .hero-bg {
  background-image: url('images/hero-slide3.jpg');
  background-position: center right;
}

/* Sidebar rojo izquierdo — posición absoluta sobre el overlay */
.s3-red-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 12px;
  z-index: 4;
}

.s3-barcode {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  align-items: center;
}

.s3-barcode span {
  display: block;
  width: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.s3-sidebar-label {
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.90;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Top bar */
.s3-top-bar {
  position: absolute;
  top: 0;
  left: 52px;
  right: 0;
  height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 3;
}

.s3-top-left,
.s3-top-right {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}

/* Contenido principal — desplazado por la barra roja */
.s3-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-7) var(--sp-8) var(--sp-7) calc(52px + var(--sp-8));
  flex: 1;
  max-width: 760px;
}

/* Headline slide 3: sin uppercase para capitalización natural */
.s3-headline {
  text-transform: none !important;
}

/* Subtítulo en monospace como slide 2 */
.s3-subline {
  font-family: 'Courier New', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.04em;
  line-height: 1.9 !important;
  opacity: 0.55;
}

/* Bottom bar */
.s3-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 52px;
  right: 0;
  height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 3;
}

.s3-bottom-bar span {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
}

/* Responsive slide 3 */
@media (max-width: 904px) {
  .s3-logo {
    width: clamp(200px, 50vw, 380px);
  }

  .s3-content {
    padding: 56px 32px 56px calc(52px + 24px);
  }
}

@media (max-width: 599px) {
  .s3-red-bar {
    width: 100%;
    height: 44px;
    flex-direction: row;
    top: 0;
    bottom: auto;
  }

  .s3-sidebar-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .s3-barcode {
    flex-direction: row;
  }

  .s3-barcode span {
    width: 1.5px;
    height: 14px;
  }

  .s3-top-bar,
  .s3-bottom-bar {
    left: 0;
  }

  .s3-content {
    padding: 96px 16px 60px 16px;
    max-width: 100%;
  }

  .s3-headline {
    font-size: clamp(40px, 12vw, 64px) !important;
  }
}


/* ══════════════════════════════════════════
   SECCIÓN: MANIFIESTO (#manifiesto)
══════════════════════════════════════════ */
#manifiesto {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

/* Grid 4 columnas → responsive */
.manifesto-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  min-height: 100svh;
}

.manifesto-grid .col {
  border-right: 1px solid var(--color-border);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
}

.manifesto-grid .col:last-child {
  border-right: none;
}

/* — Cover column — */
.col-cover {
  display: flex;
  flex-direction: column;
  padding: var(--sp-5) var(--sp-4);
}

.cover-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  opacity: 0.9;
}

.cover-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(50px, 1vw, 50px);
  line-height: 0.87;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.04), -1px -1px 0 rgba(0, 0, 0, 0.45);
}

.cover-subtitle .s-red {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-red);
}

.cover-subtitle .s-white {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--sp-4);
}

.cover-img {
  flex: 1;
  min-height: 180px;
  margin: 0 calc(-1 * var(--sp-4));
  overflow: hidden;
  position: relative;
}

.cover-img img {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.1);
}

.cover-img .crosshair {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 15px;
  opacity: 0.45;
}

.cover-meta {
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-3);
  margin-top: var(--sp-3);
}

.cover-meta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.cover-barcode {
  display: flex;
  gap: 1.5px;
  align-items: flex-end;
}

.cover-barcode span {
  display: inline-block;
  background: var(--color-white);
  opacity: 0.4;
  width: 1.5px;
}

.meta-label {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.meta-tagline {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.meta-tagline span {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.38;
}

.meta-tagline .num {
  font-family: var(--font-display);
  font-size: 18px;
  opacity: 0.25;
}

.cover-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-3);
}

.cover-footer-left {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.38;
  line-height: 1.9;
}

.cover-footer-right {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.38;
  line-height: 1.7;
  text-align: right;
}

.cover-footer-right .red {
  color: var(--color-red);
  opacity: 1;
}

/* — Items manifiesto — */
.manifesto-item {
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--color-border);
}

.manifesto-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-red);
  margin-bottom: var(--sp-2);
}

.item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.item-body {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-white);
  opacity: 0.62;
}

.item-body em {
  font-style: italic;
  color: var(--color-red);
  opacity: 1;
}

.item-statement {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red);
  font-style: italic;
  margin-top: var(--sp-3);
}

.item-body-red {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-top: var(--sp-2);
}

.item-highlight {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(17px, 1.7vw, 24px);
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: var(--sp-3) 0 var(--sp-3);
}

/* WAKE UP image */
.wakeup-wrap {
  position: relative;
  width: calc(100% + var(--sp-5) * 2);
  margin: var(--sp-4) calc(-1 * var(--sp-5));
  height: 150px;
  overflow: hidden;
}

.wakeup-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.wakeup-bar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 26px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wakeup-bar span {
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* LAS INCENDIA */
.las-incendia {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-red);
  margin-top: var(--sp-2);
  position: relative;
}

.las-incendia::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.07) 3px, rgba(0, 0, 0, 0.07) 4px);
  pointer-events: none;
}

.col4-crosshair {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  font-size: 16px;
  opacity: 0.3;
}


/* ══════════════════════════════════════════
   SECCIÓN PLACEHOLDER (experimentos, etc.)
══════════════════════════════════════════ */
.section-placeholder {
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-8) var(--sp-8);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.section-placeholder .section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--sp-4);
}

.section-placeholder .section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--color-white);
  max-width: 640px;
  margin-bottom: var(--sp-5);
}

.section-placeholder .section-body {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 480px;
}

.section-placeholder .section-num {
  position: absolute;
  right: var(--sp-8);
  bottom: var(--sp-6);
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  color: var(--color-white);
  opacity: 0.03;
  line-height: 1;
  user-select: none;
}


/* ══════════════════════════════════════════
   SECCIÓN: PENSAMIENTOS (#pensamientos)
══════════════════════════════════════════ */
.pensamientos-section {
  position: relative;
  min-height: 100svh;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 96px 80px 64px;
  overflow: hidden;
  scroll-margin-top: var(--header-h);
}

/* ── Contenido principal ── */
.pens-main {
  position: relative;
  z-index: 2;
}

.pens-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 20px;
}

.pens-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 9.5vw, 130px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 40px;
}

.pens-body {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 21px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}


/* CTA Instagram */
.pens-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.pens-cta:hover {
  border-color: var(--color-red);
  background: rgba(204, 27, 27, 0.06);
}

.pens-cta-icon {
  width: 22px;
  height: 22px;
  color: var(--color-white);
  opacity: 0.70;
  flex-shrink: 0;
}

.pens-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pens-cta-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pens-cta-handle {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-white);
}

/* ── Número fantasma ── */
.pens-num {
  position: absolute;
  right: 100px;
  bottom: 60px;
  font-family: var(--font-display);
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 900;
  color: var(--color-white);
  opacity: 0.06;
  line-height: 1;
  user-select: none;
  z-index: 1;
}

/* ── Sidebar derecho ── */
.pens-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 72px;
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 32px;
  gap: 16px;
  z-index: 3;
}

.pens-crosshair {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.50;
}

.pens-crosshair svg {
  width: 18px;
  height: 18px;
}

.pens-plus {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-red);
  opacity: 0.90;
  line-height: 1;
}

.pens-sidebar-text {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.75;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
}

.pens-arrow {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-red);
  line-height: 1;
}

.pens-ig-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.pens-ig-icon {
  width: 16px;
  height: 16px;
  opacity: 0.60;
  flex-shrink: 0;
}

.pens-ig-handle {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-red);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* ── Barra inferior ── */
.pens-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 72px;
  height: 52px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 64px;
  z-index: 3;
}

.pens-bottom-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pens-globe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pens-brand-name {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.pens-divider {
  color: var(--color-white);
  opacity: 0.25;
  font-size: 12px;
  font-weight: 300;
}

.pens-est {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-red);
}

.pens-red-line {
  flex: 1;
  height: 1px;
  background: var(--color-red);
  opacity: 0.50;
}

.pens-barcode {
  display: flex;
  gap: 1.5px;
  align-items: flex-end;
  flex-shrink: 0;
}

.pens-barcode span {
  display: inline-block;
  background: var(--color-white);
  opacity: 0.45;
  width: 1.5px;
}

/* ── Responsive: tablet ── */
@media (max-width: 904px) {
  .pensamientos-section {
    padding: 64px 80px 80px 40px;
  }

  .pens-sidebar {
    width: 60px;
  }

  .pens-bottom-bar {
    right: 60px;
    padding: 0 40px;
  }

  .pens-num {
    right: 80px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 599px) {
  .pensamientos-section {
    padding: 56px 16px 140px 16px;
    min-height: auto;
    justify-content: flex-start;
    padding-top: 72px;
  }

  .pens-headline {
    font-size: clamp(40px, 12vw, 64px);
    margin-bottom: 28px;
  }

  .pens-sidebar {
    top: auto;
    bottom: 56px;
    left: 0;
    right: 0;
    width: 100%;
    height: 52px;
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0 16px;
    gap: 12px;
  }

  .pens-sidebar-text {
    writing-mode: horizontal-tb;
    transform: none;
    flex: 1;
  }

  .pens-ig-box {
    flex-direction: row;
    gap: 8px;
  }

  .pens-ig-handle {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .pens-bottom-bar {
    right: 0;
    padding: 0 16px;
    height: 56px;
  }

  .pens-num {
    right: 16px;
    bottom: 120px;
    font-size: clamp(100px, 40vw, 160px);
  }
}


/* ══════════════════════════════════════════
   SECCIÓN: PORTFOLIO / LAB × EXPERIMENTOS
══════════════════════════════════════════ */
.portfolio-section {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.portfolio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  border-bottom: 1px solid var(--color-border);
  align-items: end;
}

.portfolio-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--sp-4);
}

.portfolio-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 6vw, 90px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.portfolio-headline .pf-red {
  color: var(--color-red);
}

.portfolio-intro {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: var(--sp-5);
}

.portfolio-cta {
  margin-top: 0;
}

/* ── Grid 3 cards ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-7) var(--sp-6);
  border-right: 1px solid var(--color-border);
  position: relative;
  transition: background 0.3s var(--ease);
}

.portfolio-card:last-child {
  border-right: none;
}

.portfolio-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.portfolio-card--accent {
  background: rgba(204, 27, 27, 0.03);
}

.portfolio-card--accent:hover {
  background: rgba(204, 27, 27, 0.06);
}

.pcard-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

.pcard-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  opacity: 0.07;
  user-select: none;
}

.pcard-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red);
}

.pcard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: var(--sp-4);
}

.pcard-body {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-muted);
  flex: 1;
}

.pcard-footer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
}

.pcard-line {
  flex: 1;
  height: 1px;
  background: var(--color-red);
  opacity: 0.35;
}

.pcard-year {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted-low);
}

/* ── Bottom bar ── */
.portfolio-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-3) var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.portfolio-bottom-left {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
}

.pb-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.30;
}

.pb-sep {
  color: var(--color-white);
  opacity: 0.15;
  font-size: 11px;
}

.pb-est {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  opacity: 0.60;
}

.pb-barcode {
  display: flex;
  gap: 1.5px;
  align-items: flex-end;
}

.pb-barcode span {
  display: inline-block;
  background: var(--color-white);
  opacity: 0.25;
  width: 1.5px;
}

.pb-crosshair {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-white);
  opacity: 0.25;
}

/* ── Responsive: tablet ── */
@media (max-width: 904px) {
  .portfolio-header {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    padding: var(--sp-7) var(--sp-6) var(--sp-5);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: var(--sp-6) var(--sp-6);
  }

  .portfolio-card:last-child {
    border-bottom: none;
  }

  .portfolio-bottom {
    padding: var(--sp-3) var(--sp-6);
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 599px) {
  .portfolio-header {
    padding: var(--sp-6) var(--sp-4) var(--sp-4);
  }

  .portfolio-card {
    padding: var(--sp-5) var(--sp-4);
  }

  .pcard-title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .portfolio-bottom {
    padding: var(--sp-3) var(--sp-4);
  }

  .pb-tag {
    display: none;
  }
}


/* ══════════════════════════════════════════
   SECCIÓN: CONTACTO (#contacto)
══════════════════════════════════════════ */
#contacto {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-8) var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.contacto-left .contact-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--sp-4);
}

.contacto-left .contact-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--sp-5);
}

.contact-cta {
  margin-top: var(--sp-5);
}

.labexp-cta {
  margin-top: var(--sp-5);
}

.contacto-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-7);
}

.social-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--color-border);
  min-height: 56px;
  transition: border-color 0.2s;
}

.social-link-item:hover {
  border-color: var(--color-red);
}

.social-link-item .sli-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.social-link-item .sli-arrow {
  font-size: 16px;
  color: var(--color-red);
  opacity: 0;
  transition: opacity 0.2s;
}

.social-link-item:hover .sli-arrow {
  opacity: 1;
}


/* ══════════════════════════════════════════
   FOOTER GLOBAL
══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.site-footer span {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.35;
}

.site-footer .footer-globe {
  font-size: 13px;
  opacity: 0.3;
}


/* ══════════════════════════════════════════
   RESPONSIVE — MEDIUM (600–904px)
══════════════════════════════════════════ */
@media (max-width: 904px) {
  :root {
    --header-h: 56px;
  }

  .site-header {
    padding: 0 var(--sp-5);
  }

  /* Header: ocultar nav, mostrar hamburger */
  .header-nav {
    display: none;
  }

  .header-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding: var(--sp-6) var(--sp-5);
    max-width: 100%;
  }

  .hero-label--left,
  .hero-label--bottom,
  .hero-bar,
  .hero-deco-404,
  .hero-deco-br {
    display: none;
  }

  /* Manifesto: 2 columnas */
  .manifesto-grid {
    grid-template-columns: 1fr 1fr;
  }

  .col-cover {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-4);
    align-items: flex-start;
  }

  .cover-img {
    flex: 1;
    min-width: 200px;
    margin: 0;
  }

  .cover-meta {
    width: 100%;
  }

  /* Contacto */
  #contacto {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding: var(--sp-7) var(--sp-5);
  }

  /* Placeholders */
  .section-placeholder {
    padding: var(--sp-7) var(--sp-5);
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — COMPACT (0–599px / mobile)
══════════════════════════════════════════ */
@media (max-width: 599px) {
  :root {
    --header-h: 56px;
  }

  .site-header {
    padding: 0 var(--sp-4);
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-subline {
    font-size: 13px;
  }

  .hero-content {
    padding: var(--sp-5) var(--sp-4);
  }

  #home .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.75) 100%);
  }

  /* Manifesto: 1 columna */
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid .col {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: var(--sp-5) var(--sp-4);
  }

  .manifesto-grid .col:last-child {
    border-bottom: none;
  }

  .col-cover {
    flex-direction: column;
    padding: var(--sp-4);
  }

  .cover-title {
    font-size: clamp(52px, 18vw, 80px);
  }

  .cover-img {
    margin: 0;
    width: 100%;
    height: 220px;
  }

  .item-title {
    font-size: 16px;
  }

  .item-highlight {
    font-size: 20px;
  }

  .las-incendia {
    font-size: 40px;
  }

  .wakeup-wrap {
    margin: var(--sp-3) 0;
    width: 100%;
  }

  /* Contacto */
  #contacto {
    padding: var(--sp-6) var(--sp-4);
    gap: var(--sp-5);
  }

  /* Placeholders */
  .section-placeholder {
    padding: var(--sp-6) var(--sp-4);
    min-height: 50svh;
  }

  .section-placeholder .section-num {
    display: none;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-4);
  }
}


/* ══════════════════════════════════════════
   BOTÓN TOGGLE DE TEMA
══════════════════════════════════════════ */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 8px;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  transition: border-color 0.2s, color 0.2s;
  min-height: 28px;
  line-height: 1;
}

.theme-toggle:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.theme-dark-label,
.theme-light-label {
  opacity: 0.45;
  transition: opacity 0.2s, color 0.2s;
  font-size: 8px;
}

.theme-sep {
  opacity: 0.35;
  font-weight: 300;
}

/* Indicador de tema activo */
[data-theme="dark"] .theme-toggle .theme-dark-label,
[data-theme="light"] .theme-toggle .theme-light-label {
  opacity: 1;
  color: var(--color-white);
}

/* Mobile toggles wrapper */
.mobile-toggles {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  align-items: center;
}

.theme-toggle--mobile {
  font-size: 11px;
  padding: 8px 14px;
  min-height: 40px;
}


/* ══════════════════════════════════════════
   MODO CLARO — LIGHT MODE
══════════════════════════════════════════ */

/* ── Tokens: override para modo claro ── */
[data-theme="light"] {
  --color-bg: #F3F2EE;
  --color-surface: #EAEAE4;
  --color-border: rgba(0, 0, 0, 0.09);
  --color-white: #0D0D0D;
  --color-muted: rgba(0, 0, 0, 0.52);
  --color-muted-low: rgba(0, 0, 0, 0.28);
  /* --color-red se mantiene igual */
}

/* ── El hero siempre oscuro (slides con imagen de fondo) ── */
[data-theme="light"] #home {
  --color-bg: #0A0A0A;
  --color-white: #FFFFFF;
  --color-muted: rgba(255, 255, 255, 0.45);
  --color-muted-low: rgba(255, 255, 255, 0.25);
  --color-border: rgba(255, 255, 255, 0.08);
}

/* ── Header ── */
[data-theme="light"] .lang-toggle,
[data-theme="light"] .theme-toggle {
  border-color: rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .lang-toggle:hover,
[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
}

/* ── CTA buttons — legibilidad en claro ── */
[data-theme="light"] .pens-cta {
  border-color: rgba(0, 0, 0, 0.14);
}

[data-theme="light"] .pens-cta:hover {
  border-color: var(--color-red);
  background: rgba(204, 27, 27, 0.05);
}

/* Label superior del CTA — hardcodeado blanco en base, se corrige aquí */
[data-theme="light"] .pens-cta-label {
  color: rgba(0, 0, 0, 0.48);
}

/* ── Manifiesto ── */

/* Caja de acento roja (La acelera.) — texto siempre blanco sobre rojo */
[data-theme="light"] .item-highlight {
  color: #FFFFFF;
}

/* Barra lateral roja de la imagen WAKE UP */
[data-theme="light"] .wakeup-bar span {
  color: #FFFFFF;
}

/* ── Pensamientos ── */

/* Cuerpo en monospace — hardcoded en dark, se sobreescribe aquí */
[data-theme="light"] .pens-body {
  color: rgba(0, 0, 0, 0.55);
}

/* Sidebar decorativo de pensamientos */
[data-theme="light"] .pens-sidebar {
  border-left-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .pens-bottom-bar {
  border-top-color: rgba(0, 0, 0, 0.09);
}

/* ── Portfolio section ── */
[data-theme="light"] .portfolio-card:hover {
  background: rgba(0, 0, 0, 0.025);
}

[data-theme="light"] .portfolio-card--accent {
  background: rgba(204, 27, 27, 0.04);
}

[data-theme="light"] .portfolio-card--accent:hover {
  background: rgba(204, 27, 27, 0.08);
}

/* ── Footer ── */
/* .site-footer ya usa var(--color-white) con opacity, funciona solo */

/* ── Manifiesto: footer cover "EZTO®" en rojo ── */
[data-theme="light"] .cover-footer-right .red {
  color: var(--color-red);
  opacity: 1;
}

/* ── Transición suave al cambiar tema ── */
body,
.site-header,
#manifiesto,
.manifesto-grid .col,
.pensamientos-section,
.portfolio-section,
.portfolio-header,
.portfolio-card,
.portfolio-bottom,
#contacto,
.site-footer,
.mobile-menu {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease;
}