/* LOCALAB · filosofia.php */

/* ===== Creemos en (lista + panel) ===== */
.loca-creemos {
  padding: 90px 40px;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.loca-creemos_inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.loca-creemos_label {
  margin: 0 0 12px;
  font-family: var(--loca-font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.loca-creemos_title {
  margin: 0 0 50px;
  font-family: var(--loca-font-display);
  font-size: clamp(30px, 4.4vw, 58px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  text-align: left;
}

.loca-creemos_layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.loca-creemos_list {
  display: flex;
  flex-direction: column;
}

.loca-creemos_item {
  display: flex;
  gap: 18px;
  align-items: baseline;
  width: 100%;
  margin: 0;
  padding: 14px 12px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.loca-creemos_item:hover,
.loca-creemos_item:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.loca-creemos_item.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.loca-creemos_item_n {
  flex: none;
  font-family: var(--loca-font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.loca-creemos_item_kw {
  font-family: var(--loca-font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
}

.loca-creemos_item.is-active .loca-creemos_item_kw {
  color: #fff;
}

.loca-creemos_list_end {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.loca-creemos_inline_host:empty {
  display: none;
}

.loca-creemos_inline_host:not(:empty) {
  padding: 0 12px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.loca-creemos_panel {
  position: sticky;
  top: 110px;
}

.loca-creemos_media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.loca-creemos_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loca-creemos_slide.is-active {
  opacity: 1;
  visibility: visible;
}

.loca-creemos_slide_media,
.loca-creemos_slide_placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loca-creemos_slide_placeholder {
  background: rgba(255, 255, 255, 0.03);
}

.loca-creemos_detail {
  display: flex;
  gap: 18px;
  align-items: baseline;
  margin-top: 26px;
}

.loca-creemos_detail_n {
  flex: none;
  font-family: var(--loca-font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.loca-creemos_detail_text {
  display: none;
  margin: 0;
  font-family: var(--loca-font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.loca-creemos_detail_text.is-active {
  display: block;
}

@media (max-width: 991px) {
  .loca-creemos {
    padding: 64px 24px;
  }

  .loca-creemos_title {
    margin-bottom: 36px;
  }

  .loca-creemos_layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .loca-creemos_panel {
    position: static;
  }

  .loca-creemos_inline_host:not(:empty) {
    padding: 0 12px 18px;
  }

  .loca-creemos_inline_host:not(:empty) .loca-creemos_media {
    border-radius: 14px;
  }

  .loca-creemos_inline_host:not(:empty) .loca-creemos_detail {
    margin-top: 14px;
  }

  .loca-creemos_detail {
    margin-top: 0;
  }

  .loca-creemos_detail_text {
    font-size: clamp(18px, 4.5vw, 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loca-hero_video {
    animation: none;
    transform: none;
    opacity: 1;
  }

  .loca-hero_scroll.is-visible {
    animation: none;
  }
}

/* ===== LoCa Lab y Producción (paneles 01 / 03) ===== */
.loca-filosofia-panel {
  background: #000;
  color: #fff;
}

.loca-filosofia-panel--loca {
  padding: 40px 40px 90px;
}

.loca-hero--titulo + .loca-filosofia-panel--loca {
  padding-top: 40px;
}

.loca-filosofia-panel--produccion {
  padding: 90px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.loca-filosofia-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.loca-filosofia-split_aside {
  position: sticky;
  top: 120px;
}

.loca-filosofia-split_label {
  margin: 0;
  font-family: var(--loca-font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.loca-filosofia-split_rule {
  width: 44px;
  height: 1px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.4);
}

.loca-filosofia-split_title {
  margin: 0;
  font-family: var(--loca-font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
}

.loca-filosofia-split_title strong {
  font-weight: 600;
}

.loca-filosofia-split_text {
  margin: 36px 0 0;
  max-width: 640px;
  font-family: var(--loca-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.66);
}

.loca-filosofia-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.loca-filosofia-stat {
  flex: 1 1 150px;
  min-width: 150px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  text-align: center;
}

.loca-filosofia-stat_value {
  margin: 0;
  font-family: var(--loca-font-display);
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
}

.loca-filosofia-stat_label {
  margin: 12px 0 0;
  font-family: var(--loca-font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.loca-filosofia-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 36px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: var(--loca-font-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.loca-filosofia-btn:hover,
.loca-filosofia-btn:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

@media (max-width: 991px) {
  .loca-filosofia-panel--loca {
    padding: 80px 24px 64px;
  }

  .loca-filosofia-panel--produccion {
    padding: 64px 24px;
  }

  .loca-filosofia-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .loca-filosofia-split_aside {
    position: static;
  }

  .loca-filosofia-stat_value {
    font-size: clamp(40px, 12vw, 54px);
  }
}

/* ===== Psyche & Delos / Psicodelia ===== */
.loca-psyche-delos {
  position: relative;
  padding: 110px 40px;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  overflow: visible;
}

.loca-psyche-delos_glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 65%);
  transform: translate(-50%, -50%);
  filter: blur(20px);
  pointer-events: none;
}

.loca-psyche-delos_inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  container-type: inline-size;
}

.loca-psyche-delos_label {
  margin: 0 0 26px;
  font-family: var(--loca-font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.loca-psicodelia_title {
  margin: 0 auto;
  padding-left: 0.24em;
  font-family: var(--loca-font-display);
  font-size: clamp(18px, 8.4cqi, 88px);
  font-weight: 300;
  letter-spacing: 0.24em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.loca-psicodelia_phonetic {
  margin: 14px 0 0;
  font-family: var(--loca-font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

.loca-psyche-delos_columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 820px;
  margin: 56px auto 0;
  text-align: left;
}

.loca-psyche-col {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 24px;
}

.loca-psyche-col_heading {
  margin: 0;
  font-family: var(--loca-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #fff;
}

.loca-psyche-col_text {
  margin: 12px 0 0;
  font-family: var(--loca-font-body);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.loca-psyche-col_text em {
  color: #fff;
  font-style: italic;
}

/* ===== Ruta Creativa (carrusel) ===== */
.loca-ruta-creativa {
  padding: 110px 40px 130px;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.loca-ruta-creativa_inner {
  max-width: 1180px;
  margin: 0 auto;
}

.loca-ruta-creativa_label {
  margin: 0 0 12px;
  font-family: var(--loca-font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.loca-ruta-creativa_title {
  margin: 0 0 50px;
  font-family: var(--loca-font-display);
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.loca-ruta-creativa_title_em {
  font-weight: 600;
}

.loca-ruta_panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  overflow: hidden;
}

.loca-ruta_media {
  position: relative;
  min-height: 500px;
  background: rgba(255, 255, 255, 0.02);
}

.loca-ruta_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loca-ruta_slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.loca-ruta_slide_media,
.loca-ruta_slide_placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loca-ruta_slide_placeholder {
  background: rgba(255, 255, 255, 0.03);
}

.loca-ruta_nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s ease;
}

.loca-ruta_nav:hover,
.loca-ruta_nav:focus-visible {
  border-color: #fff;
}

.loca-ruta_nav--prev {
  left: 20px;
}

.loca-ruta_nav--next {
  right: 20px;
}

.loca-ruta_counter {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 3;
  margin: 0;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.55);
  font-family: var(--loca-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
}

.loca-ruta_aside {
  display: flex;
  flex-direction: column;
  padding: 44px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.loca-ruta_copy {
  display: none;
  flex: 1;
}

.loca-ruta_copy.is-active {
  display: block;
}

.loca-ruta_badge {
  display: inline-block;
  margin: 0;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-family: var(--loca-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.loca-ruta_name {
  margin: 22px 0 0;
  font-family: var(--loca-font-display);
  font-weight: 300;
  font-size: 44px;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #fff;
}

.loca-ruta_text {
  margin: 18px 0 0;
  font-family: var(--loca-font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.loca-ruta_steps {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}

.loca-ruta_step {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 12px 2px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.loca-ruta_step:hover,
.loca-ruta_step:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.loca-ruta_step_main {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.loca-ruta_step_n {
  font-family: var(--loca-font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.loca-ruta_step_name {
  font-family: var(--loca-font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.loca-ruta_step.is-active .loca-ruta_step_name {
  color: #fff;
}

.loca-ruta_step_capa {
  font-family: var(--loca-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
  .loca-psyche-delos {
    padding: 80px 24px;
  }

  .loca-psyche-delos_columns {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
  }

  .loca-ruta-creativa {
    padding: 80px 24px 96px;
  }

  .loca-ruta_panel {
    grid-template-columns: 1fr;
  }

  .loca-ruta_media {
    min-height: 320px;
  }

  .loca-ruta_aside {
    padding: 32px 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .loca-ruta_name {
    font-size: clamp(32px, 9vw, 44px);
  }
}
