/*
 * Jornada ECO-APIB x WAZO — modernizacion 2026
 * Capa de presentacion no destructiva sobre el tema heredado.
 */

@font-face {
  font-family: "BR Sonoma";
  src: url("../fonts/br-sonoma/BRSonoma-Regular.woff2") format("woff2"),
       url("../fonts/br-sonoma/BRSonoma-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BR Sonoma";
  src: url("../fonts/br-sonoma/BRSonoma-Medium.woff2") format("woff2"),
       url("../fonts/br-sonoma/BRSonoma-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --wazo-black: #0a0a0a;
  --wazo-ink: #060712;
  --wazo-surface: #111111;
  --wazo-surface-raised: #171717;
  --wazo-surface-soft: #202020;
  --wazo-white: #ffffff;
  --wazo-text-soft: rgba(255, 255, 255, 0.72);
  --wazo-text-muted: #b8b8b8;
  --wazo-electric: #0000ff;
  --wazo-blue-deep: #043cdf;
  --wazo-blue: #1587f7;
  --wazo-interactive: #00a1ff;
  --wazo-sky: #9de2ee;
  --wazo-border: rgba(255, 255, 255, 0.12);
  --wazo-border-strong: rgba(255, 255, 255, 0.22);
  --wazo-gradient: linear-gradient(105deg, #0000ff 0%, #043cdf 35%, #1587f7 70%, #32b0fb 100%);
  --wazo-gradient-vertical: linear-gradient(180deg, #0000ff 0%, #043cdf 34.6%, #1587f7 69.19%, #9de2ee 104.84%);
  --wazo-gradient-spectrum: radial-gradient(120% 140% at 50% 0%, #9de2ee 0%, #1587f7 35%, #043cdf 70%, #0000ff 100%);
  --wazo-font: "BR Sonoma", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wazo-radius-sm: 10px;
  --wazo-radius-md: 18px;
  --wazo-radius-lg: 28px;
  --wazo-radius-xl: 40px;
  --wazo-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --wazo-container: 1180px;
  --wazo-header-height: 88px;
  --wazo-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  min-height: 100%;
  height: auto !important;
  background: var(--wazo-black);
  color-scheme: dark;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--wazo-header-height) + 24px);
}

body {
  min-width: 0;
  min-height: 100%;
  height: auto !important;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(21, 135, 247, 0.12), transparent 30rem),
    var(--wazo-black);
  color: var(--wazo-white);
  font-family: var(--wazo-font) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--wazo-blue);
  color: var(--wazo-white);
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--wazo-sky) !important;
  outline-offset: 4px;
}

img {
  height: auto;
}

strong,
b {
  font-weight: 500;
  color: var(--wazo-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--wazo-white);
  font-family: var(--wazo-font) !important;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-transform: none;
}

h3::after {
  display: none !important;
  content: none !important;
}

p,
li,
.descr,
.descr2 {
  font-family: var(--wazo-font) !important;
}

.container {
  width: min(calc(100% - 40px), var(--wazo-container)) !important;
  max-width: var(--wazo-container) !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

#slider-full .row::before,
#slider-full .row::after,
#time .row::before,
#time .row::after,
#mapas .stat::before,
#mapas .stat::after,
#plan .row::before,
#plan .row::after,
#join .row::before,
#join .row::after,
#block-bottom .row::before,
#block-bottom .row::after {
  display: none !important;
  content: none !important;
}

section {
  scroll-margin-top: calc(var(--wazo-header-height) + 20px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 10000;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--wazo-white);
  color: var(--wazo-black);
  font-weight: 500;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.wazo-scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10001;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.05);
}

.wazo-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--wazo-gradient);
  will-change: transform;
}

/* Cabecera */
#nav-wrapper.wazo-navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--wazo-header-height);
  height: var(--wazo-header-height) !important;
  max-height: var(--wazo-header-height);
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(6, 7, 18, 0.78), rgba(6, 7, 18, 0.44));
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

#nav-wrapper.wazo-navbar.is-scrolled {
  border-bottom-color: var(--wazo-border);
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

#nav-wrapper .wazo-nav-shell {
  display: flex;
  min-height: var(--wazo-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#nav-wrapper .wazo-nav-shell::before,
#nav-wrapper .wazo-nav-shell::after {
  display: none !important;
  content: none !important;
}

.wazo-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: var(--wazo-white);
  text-decoration: none;
}

.wazo-brand__logo {
  width: auto;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.wazo-brand__divider {
  width: 1px;
  height: 38px;
  flex: 0 0 auto;
  background: var(--wazo-border-strong);
}

.wazo-brand__eco {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-width: 0;
  align-items: center;
  gap: 2px;
  line-height: 1.1;
}

.wazo-brand__eco-logo {
  width: 58px;
  height: 58px;
  grid-row: 1;
  object-fit: contain;
}

.wazo-brand__eco small {
  overflow: hidden;
  max-width: 168px;
  color: var(--wazo-text-muted);
  font-size: 11px;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wazo-brand__csa {
  display: block;
  width: 160px;
  height: 58px;
  flex: 0 0 160px;
  overflow: hidden;
}

.wazo-brand__csa img {
  display: block;
  width: 160px;
  height: auto;
  max-width: none;
}

#navbar.wazo-nav-panel {
  display: flex !important;
  min-height: 44px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.wazo-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wazo-nav-list > li {
  position: relative;
  float: none;
}

#navbar .wazo-nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

#navbar .wazo-nav-link:hover,
#navbar .wazo-nav-link.is-active,
#navbar .wazo-nav-link[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wazo-white);
}

#navbar .wazo-nav-link:active {
  transform: scale(0.97);
}

.wazo-nav-link__chevron {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.wazo-nav-link[aria-expanded="true"] .wazo-nav-link__chevron {
  transform: rotate(180deg);
}

.wazo-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 238px;
  gap: 3px;
  margin: 0;
  padding: 10px;
  visibility: hidden;
  border: 1px solid var(--wazo-border);
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.97);
  box-shadow: var(--wazo-shadow);
  opacity: 0;
  transform: translateY(-8px);
  list-style: none;
  backdrop-filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.wazo-nav-dropdown:hover > .wazo-submenu,
.wazo-nav-dropdown:focus-within > .wazo-submenu,
.wazo-nav-dropdown.is-open > .wazo-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#navbar .wazo-submenu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--wazo-text-soft);
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

#navbar .wazo-submenu a:hover,
#navbar .wazo-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wazo-white);
}

#navbar .wazo-nav-cta {
  margin-left: 7px;
  padding-inline: 17px;
  background: var(--wazo-white);
  color: var(--wazo-black);
  font-weight: 500;
}

#navbar .wazo-nav-cta:hover,
#navbar .wazo-nav-cta.is-active {
  background: var(--wazo-sky);
  color: var(--wazo-black);
}

#nav-wrapper .navbar-toggle {
  display: none;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 50px;
  gap: 5px;
  float: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--wazo-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  aspect-ratio: 1;
}

#nav-wrapper .navbar-toggle .icon-bar {
  position: static;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: var(--wazo-white);
  transform-origin: center !important;
  transition: transform 180ms ease, opacity 180ms ease;
}

#nav-wrapper .navbar-toggle:not(.collapsed) .top-bar {
  transform: translateY(6.5px) rotate(45deg);
}

#nav-wrapper .navbar-toggle:not(.collapsed) .middle-bar {
  opacity: 0;
}

#nav-wrapper .navbar-toggle:not(.collapsed) .bottom-bar {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
#slider-full {
  position: relative;
  display: flex;
  min-height: min(900px, 100svh);
  align-items: end;
  overflow: hidden;
  padding: calc(var(--wazo-header-height) + 120px) 0 96px;
  background-color: var(--wazo-ink) !important;
  color: var(--wazo-white);
  isolation: isolate;
}

.wazo-hero-carousel {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #081122;
}

.wazo-hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 650ms ease;
}

.wazo-hero-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.wazo-hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}

.wazo-hero-carousel__slide:nth-child(1) img {
  object-position: 38% center;
}

.wazo-hero-carousel__slide:nth-child(2) img {
  object-position: 54% center;
}

.wazo-hero-carousel__slide.is-active img {
  animation: wazo-hero-drift 8s ease-out both;
}

.wazo-hero-controls {
  position: absolute;
  z-index: 4;
  right: max(20px, calc((100vw - var(--wazo-container)) / 2));
  bottom: 24px;
  display: none;
  min-height: 52px;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 7, 18, 0.62);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.wazo-hero-control,
.wazo-hero-dots button {
  display: inline-grid;
  height: 44px;
  min-height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--wazo-white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.wazo-hero-control {
  width: 44px;
  min-width: 44px;
}

.wazo-hero-control[hidden] {
  display: none !important;
}

.wazo-hero-control svg {
  width: 20px;
  height: 20px;
}

.wazo-hero-control:hover,
.wazo-hero-dots button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--wazo-sky);
}

.wazo-hero-control:active,
.wazo-hero-dots button:active {
  transform: scale(0.94);
}

.wazo-hero-dots {
  display: flex;
  align-items: center;
}

.wazo-hero-dots button {
  position: relative;
  width: 44px;
  min-width: 44px;
  padding: 0;
}

.wazo-hero-dots button::after {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
  transition: width 220ms var(--wazo-ease), background 220ms ease;
}

.wazo-hero-dots button[aria-current="true"]::after {
  width: 22px;
  background: var(--wazo-sky);
}

.wazo-hero-counter {
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.wazo-icon-play {
  display: none;
}

.wazo-hero-control--pause.is-paused .wazo-icon-pause {
  display: none;
}

.wazo-hero-control--pause.is-paused .wazo-icon-play {
  display: block;
}

#slider-full::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 7, 18, 0.93) 0%, rgba(6, 7, 18, 0.77) 48%, rgba(6, 7, 18, 0.3) 78%, rgba(6, 7, 18, 0.55) 100%),
    linear-gradient(0deg, var(--wazo-black) 0%, transparent 38%);
}

#slider-full::after {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: -6%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  background: url("../images/brand/wazo-symbol-white.png") center / contain no-repeat;
  opacity: 0.045;
  filter: blur(0.2px);
  animation: wazo-float 9s ease-in-out infinite;
}

#slider-full .zs-slideshow,
#slider-full .zs-slides,
#slider-full .zs-slide {
  z-index: 0 !important;
}

#slider-full .container,
#slider-full .content {
  position: relative;
  z-index: 2;
  width: 100%;
}

#slider-full > .container {
  width: min(calc(100vw - 40px), var(--wazo-container)) !important;
  align-self: flex-end;
}

#slider-full .content {
  padding: 0;
}

#slider-full .row {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
  margin: 0;
}

#slider-full .row > [class*="col-"] {
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
}

#slider-full .wazo-kicker {
  display: inline-flex;
  width: max-content !important;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px !important;
  color: var(--wazo-sky) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.09em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.wazo-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

#slider-full h1 {
  max-width: 870px;
  margin: 0 !important;
  color: var(--wazo-white) !important;
  font-size: clamp(46px, 6.2vw, 88px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.065em;
  line-height: 0.98 !important;
  text-wrap: balance;
}

#slider-full h1 span {
  display: block;
  background: linear-gradient(90deg, var(--wazo-sky), #4fadff 58%, var(--wazo-white));
  color: transparent !important;
  -webkit-background-clip: text;
  background-clip: text;
}

#slider-full .wazo-hero-source {
  margin: 24px 0 0;
  color: var(--wazo-white);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.25;
  text-transform: none;
}

#slider-full p:not(.wazo-kicker) {
  width: min(100%, 680px);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.55;
}

#slider-full p.wazo-hero-funding {
  margin-top: 18px;
  color: var(--wazo-sky);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

#slider-full p.wazo-hero-funding + p.wazo-hero-source {
  margin-top: 12px;
}

#slider-full .calendar {
  width: 132px;
  margin: 0 0 4px;
  overflow: hidden;
  border: 1px solid var(--wazo-border-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

#slider-full .calendar .day {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--wazo-white);
  font-family: var(--wazo-font) !important;
  font-size: 68px;
  font-weight: 500;
  line-height: 1;
}

#slider-full .calendar .month {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 0;
  background: var(--wazo-gradient);
  color: var(--wazo-white);
  font-size: 15px;
  font-weight: 500;
}

#slider-full .img {
  width: min(100%, 150px);
  margin-left: auto;
  opacity: 0.92;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
}

/* Estado de la jornada */
#time.time {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 0;
  background: var(--wazo-gradient) !important;
  color: var(--wazo-white);
}

#time .row {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr auto;
  align-items: center;
  gap: 28px;
  min-height: 132px;
  margin: 0;
}

#time .row > [class*="col-"] {
  width: auto;
  padding: 0;
  float: none;
}

#time .header {
  margin: 0 0 4px;
  color: var(--wazo-white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

#time .wazo-status-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

#time .days {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

#time .days > span.wazo-event-date,
#time .days > span.wazo-event-location {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  align-items: center;
  float: none;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 7, 18, 0.18);
  color: var(--wazo-white);
  font-family: var(--wazo-font);
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
}

#time .btn {
  display: inline-flex;
  width: auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 20px;
  border: 1px solid var(--wazo-white);
  border-radius: 999px;
  background: var(--wazo-white);
  color: var(--wazo-black);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

#time .btn:hover {
  background: var(--wazo-sky);
  transform: translateY(-2px);
}

/* Secciones editoriales */
.about,
.speakers,
.plan,
.join,
#sponsors,
.wazo-collaborators,
.block-bottom {
  position: relative;
}

#about.about {
  padding: clamp(72px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 161, 255, 0.08), transparent 26rem),
    var(--wazo-black);
}

.about > .container {
  max-width: 1120px !important;
}

.about h2,
.mapas h2,
.speakers > h2,
.plan > .container > h2,
.join h2,
#sponsors h2,
.wazo-collaborators h2 {
  margin-bottom: clamp(34px, 5vw, 64px);
  color: var(--wazo-white) !important;
  font-size: clamp(34px, 4.8vw, 64px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-align: left;
  text-transform: none;
}

#about.about h2 {
  margin-bottom: clamp(30px, 4vw, 48px);
  font-size: clamp(34px, 4vw, 54px) !important;
}

#about.about p {
  width: auto;
  max-width: none;
  margin: 0;
  color: var(--wazo-text-soft);
  font-size: 16px;
  line-height: 1.68;
  text-align: left !important;
}

.about p:has(> strong:first-child) {
  color: rgba(255, 255, 255, 0.82);
}

.wazo-welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(32px, 5vw, 64px);
}

.wazo-welcome-copy {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--wazo-border);
  border-radius: var(--wazo-radius-lg);
  background:
    linear-gradient(145deg, rgba(21, 135, 247, 0.11), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

#about.about .wazo-welcome-kicker {
  margin-bottom: 20px;
  color: var(--wazo-sky);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

#about.about .wazo-welcome-salutation {
  margin-bottom: 14px;
  color: var(--wazo-white);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

#about.about .wazo-welcome-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.68;
}

.wazo-welcome-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--wazo-border);
  border-radius: var(--wazo-radius-lg);
  background: var(--wazo-surface-raised);
  box-shadow: var(--wazo-shadow);
}

.wazo-welcome-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--wazo-ease), filter 500ms ease;
}

.wazo-welcome-media:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.wazo-welcome-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 7, 18, 0.72);
  color: var(--wazo-white);
  font-size: 11px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wazo-welcome-more {
  margin-top: 24px;
  border-top: 1px solid var(--wazo-border);
}

.wazo-welcome-more summary {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  color: var(--wazo-sky);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.wazo-welcome-more summary::-webkit-details-marker {
  display: none;
}

.wazo-welcome-more summary svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  transition: transform 220ms var(--wazo-ease);
}

.wazo-welcome-more[open] summary svg {
  transform: rotate(180deg);
}

.wazo-welcome-more__body {
  display: grid;
  gap: 16px;
  padding: 10px 0 2px;
}

#about.about .wazo-welcome-more__body p {
  color: var(--wazo-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.wazo-partner-lockup {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(34px, 4vw, 48px);
  padding: 20px;
  border: 1px solid var(--wazo-border);
  border-radius: var(--wazo-radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.wazo-partner-lockup__label {
  color: var(--wazo-sky);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#about.about .wazo-partner-lockup__funding {
  margin: -4px 0 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center !important;
}

.wazo-partner-lockup__items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.wazo-partner-lockup__item {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 12px;
  border-radius: var(--wazo-radius-md);
  background: #fff;
}

.wazo-partner-lockup__item img {
  width: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.wazo-partner-lockup__item--wazo img {
  max-height: 56px;
}

.wazo-partner-lockup__collaborators {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--wazo-border);
}

.wazo-partner-lockup__collaborator-list {
  display: grid;
  width: min(100%, 280px);
}

.wazo-partner-lockup__item--mcmedica img {
  max-height: 56px;
}

/* Mapa y cifras */
#mapas.mapas {
  margin-top: 0;
  padding: clamp(72px, 8vw, 108px) 0;
  border-top: 1px solid var(--wazo-border);
  background-image: none !important;
}

#mapas .map-marker {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-bottom: 28px;
  padding: 12px 18px 12px 48px;
  border: 1px solid var(--wazo-border);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.045);
  background-position: 17px center;
  color: var(--wazo-white);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

#mapas .map-marker:hover {
  border-color: rgba(0, 161, 255, 0.6);
  background-color: rgba(0, 161, 255, 0.1);
  transform: translateY(-2px);
}

#mapas iframe {
  display: block;
  width: 100% !important;
  height: 460px;
  overflow: hidden;
  border: 1px solid var(--wazo-border) !important;
  border-radius: var(--wazo-radius-lg);
  box-shadow: var(--wazo-shadow);
}

#mapas .stat {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

#mapas .stat > [class*="col-"] {
  width: auto;
  min-height: 230px;
  padding: 24px;
  float: none;
  border: 1px solid var(--wazo-border);
  border-radius: var(--wazo-radius-md);
  background: var(--wazo-surface-raised);
  text-align: left;
  transition: transform 220ms var(--wazo-ease), border-color 220ms ease, background 220ms ease;
}

#mapas .stat > [class*="col-"]:hover {
  border-color: rgba(0, 161, 255, 0.45);
  background: linear-gradient(150deg, rgba(21, 135, 247, 0.15), var(--wazo-surface-raised) 70%);
  transform: translateY(-5px);
}

#mapas .stat .number {
  display: block;
  margin-bottom: 24px;
  background: none;
  color: var(--wazo-sky);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  -webkit-text-fill-color: currentColor;
}

#mapas .stat .header {
  display: block;
  margin-bottom: 10px;
  color: var(--wazo-white);
  font-size: 18px;
  font-weight: 500;
}

#mapas .stat p {
  margin: 0;
  color: var(--wazo-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Ponentes */
.speakers.parallax {
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) 0;
  border-top: 1px solid var(--wazo-border);
  background-color: var(--wazo-surface) !important;
  background-image: none !important;
}

.speakers.parallax:nth-of-type(even) {
  background-color: var(--wazo-black) !important;
}

.speakers > h2 {
  width: min(calc(100% - 40px), var(--wazo-container));
  margin-inline: auto;
}

.speakers .swiper-container {
  overflow: hidden;
  padding: 0 1px 68px;
}

.speakers .swiper-wrapper {
  align-items: flex-start;
}

.speakers .swiper-slide {
  display: flex;
  height: auto;
  min-height: 0;
  flex-direction: column;
  padding: 12px 12px 24px;
  overflow: hidden;
  border: 1px solid var(--wazo-border);
  border-radius: 24px;
  background: var(--wazo-surface-raised);
  color: var(--wazo-white);
  box-shadow: none;
  transition: transform 260ms var(--wazo-ease), border-color 260ms ease, box-shadow 260ms ease;
}

/* El marcado historico incluye saltos de linea usados como espaciadores.
   No aportan contenido y hacian que todas las tarjetas heredaran una altura
   excesiva del perfil mas largo del carrusel. */
.speakers .swiper-wrapper > br,
.speakers .swiper-slide > br {
  display: none;
}

.speakers .swiper-slide:hover {
  border-color: rgba(0, 161, 255, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
  transform: translateY(-7px);
}

.speakers .swiper-slide > img,
.speakers .speaker-photo-placeholder {
  width: 100%;
  height: 310px;
  margin: 0 0 22px;
  border-radius: 16px;
  background: var(--wazo-surface-soft);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.02);
  transition: filter 300ms ease, transform 500ms var(--wazo-ease);
}

.speakers .speaker-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(157, 226, 238, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(21, 135, 247, 0.28), rgba(6, 7, 18, 0.96));
  color: var(--wazo-white);
}

.speakers .speaker-photo-placeholder span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(6, 7, 18, 0.32);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.speakers .swiper-slide:hover > img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.015);
}

.speakers .name,
.speakers .name2 {
  display: flex;
  min-height: 46px;
  align-items: flex-start;
  margin: 0 10px 10px;
  color: var(--wazo-white);
  font-family: var(--wazo-font) !important;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.speakers .descr,
.speakers .descr2 {
  flex: 1 1 auto;
  max-height: none;
  margin: 0 10px;
  overflow: visible;
  color: var(--wazo-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.speakers .social {
  display: none;
}

.speakers .arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.speakers .arrow-left,
.speakers .arrow-right,
#sponsors .arrow-left,
#sponsors .arrow-right {
  position: static;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--wazo-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--wazo-white);
  font-size: 13px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.speakers .arrow-left:hover,
.speakers .arrow-right:hover,
#sponsors .arrow-left:hover,
#sponsors .arrow-right:hover {
  background: var(--wazo-white);
  color: var(--wazo-black);
  transform: translateY(-2px);
}

/* Programa 2026 */
#plan.plan {
  padding: clamp(76px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 12% 3%, rgba(0, 0, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 92% 38%, rgba(21, 135, 247, 0.1), transparent 34rem),
    var(--wazo-black) !important;
}

.wazo-program-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  align-items: end;
  gap: clamp(34px, 6vw, 86px);
  margin-bottom: clamp(48px, 7vw, 92px);
  background: transparent;
}

.wazo-program-eyebrow {
  margin: 0 0 14px;
  color: var(--wazo-sky);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wazo-program-hero h2 {
  margin: 0;
  color: var(--wazo-white);
  font-size: clamp(52px, 7.6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-align: left;
}

.wazo-program-intro {
  max-width: 710px;
  margin: 26px 0 0;
  color: var(--wazo-text-soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
}

.wazo-program-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.wazo-program-facts li {
  display: grid;
  min-width: 148px;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid var(--wazo-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.wazo-program-facts span {
  color: var(--wazo-text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wazo-program-facts strong {
  color: var(--wazo-white);
  font-size: 15px;
  font-weight: 500;
}

.wazo-program-download {
  position: relative;
  display: grid;
  min-height: 88px;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px solid rgba(157, 226, 238, 0.66);
  border-radius: 20px;
  background: var(--wazo-gradient);
  box-shadow: 0 18px 48px rgba(0, 18, 255, 0.26);
  color: var(--wazo-white);
  text-align: left;
  text-decoration: none;
  isolation: isolate;
  transition: transform 260ms var(--wazo-ease), box-shadow 260ms var(--wazo-ease), border-color 260ms ease;
}

.wazo-program-download::before {
  position: absolute;
  inset: -70% auto -70% -40%;
  z-index: -1;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: skewX(-18deg) translateX(-220%);
  transition: transform 560ms var(--wazo-ease);
}

.wazo-program-download:hover {
  border-color: var(--wazo-white);
  box-shadow: 0 26px 70px rgba(0, 80, 255, 0.44), 0 0 0 6px rgba(157, 226, 238, 0.1);
  color: var(--wazo-white);
  transform: translateY(-6px) scale(1.018);
}

.wazo-program-download:visited,
.wazo-program-download:focus,
.wazo-program-download:focus-visible,
.wazo-program-download:active {
  color: var(--wazo-white);
}

.wazo-program-download:hover::before {
  transform: skewX(-18deg) translateX(470%);
}

.wazo-program-download__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(6, 7, 18, 0.18);
}

.wazo-program-download__icon svg,
.wazo-program-download__arrow {
  width: 22px;
  height: 22px;
}

.wazo-program-download > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.wazo-program-download strong {
  font-size: 16px;
  font-weight: 500;
}

.wazo-program-download small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.wazo-program-download__arrow {
  transition: transform 240ms var(--wazo-ease);
}

.wazo-program-download:hover .wazo-program-download__arrow {
  transform: translateX(5px);
}

.wazo-program-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--wazo-border-strong);
  list-style: none;
}

.wazo-program-timeline__item {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: 148px 56px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 26px 24px;
  border-bottom: 1px solid var(--wazo-border);
  transition: background 220ms ease, padding-left 220ms var(--wazo-ease);
}

.wazo-program-timeline__item::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 18, 255, 0.16), rgba(21, 135, 247, 0.08) 48%, transparent 86%);
  content: "";
  opacity: 0;
  transform: translateX(-12%);
  transition: opacity 220ms ease, transform 320ms var(--wazo-ease);
}

.wazo-program-timeline__item:hover {
  padding-left: 34px;
  background: rgba(255, 255, 255, 0.025);
}

.wazo-program-timeline__item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.wazo-program-timeline__item > * {
  position: relative;
  z-index: 1;
}

.wazo-program-timeline time {
  display: grid;
  color: var(--wazo-white);
  font-variant-numeric: tabular-nums;
}

.wazo-program-timeline time span {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wazo-program-timeline time small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--wazo-sky);
  font-size: 13px;
}

.wazo-program-timeline time small::before {
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.wazo-program-timeline__index {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(157, 226, 238, 0.28);
  border-radius: 50%;
  color: var(--wazo-sky);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.wazo-program-timeline__type {
  color: var(--wazo-sky);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wazo-program-timeline h3 {
  margin: 6px 0 8px;
  color: var(--wazo-white);
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.wazo-program-timeline p {
  margin: 0;
  color: var(--wazo-text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.wazo-program-notice {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(157, 226, 238, 0.24);
  border-radius: 18px;
  background: rgba(0, 161, 255, 0.07);
}

.wazo-program-notice > svg {
  width: 32px;
  height: 32px;
  color: var(--wazo-sky);
}

.wazo-program-notice strong {
  color: var(--wazo-white);
  font-size: 16px;
}

.wazo-program-notice p {
  margin: 5px 0 0;
  color: var(--wazo-text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.wazo-program-disclosures {
  margin-top: clamp(54px, 7vw, 86px);
  border-top: 1px solid var(--wazo-border-strong);
}

.wazo-program-accordion {
  border-bottom: 1px solid var(--wazo-border-strong);
}

.wazo-program-accordion > summary {
  display: grid;
  min-height: 112px;
  grid-template-columns: minmax(0, 1fr) auto 52px;
  align-items: center;
  gap: 22px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
}

.wazo-program-accordion > summary::-webkit-details-marker {
  display: none;
}

.wazo-program-accordion > summary::marker {
  content: "";
}

.wazo-program-accordion > summary > span {
  display: grid;
  gap: 5px;
}

.wazo-program-accordion > summary small {
  color: var(--wazo-sky);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wazo-program-accordion > summary strong {
  color: var(--wazo-white);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.wazo-program-accordion > summary em {
  color: var(--wazo-text-muted);
  font-size: 13px;
  font-style: normal;
}

.wazo-program-accordion > summary > svg {
  width: 48px;
  height: 48px;
  padding: 13px;
  border: 1px solid var(--wazo-border);
  border-radius: 50%;
  color: var(--wazo-white);
  transition: background 180ms ease, color 180ms ease, transform 220ms var(--wazo-ease);
}

.wazo-program-accordion > summary:hover > svg {
  border-color: transparent;
  background: var(--wazo-sky);
  color: var(--wazo-black);
}

.wazo-program-accordion[open] > summary > svg {
  background: var(--wazo-white);
  color: var(--wazo-black);
  transform: rotate(180deg);
}

.wazo-program-accordion__body {
  padding: 0 0 36px;
}

.wazo-workshop-intro {
  margin: 0 0 18px;
  color: var(--wazo-text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.wazo-workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wazo-workshop-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--wazo-border);
  border-radius: 18px;
  background: var(--wazo-surface-raised);
}

.wazo-workshop-grid article > span {
  margin-bottom: 10px;
  color: var(--wazo-sky);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wazo-workshop-grid h3 {
  margin: 0 0 10px;
  color: var(--wazo-white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.wazo-workshop-grid p {
  margin: 0 0 12px;
  color: var(--wazo-text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.wazo-workshop-meta {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--wazo-border);
  color: var(--wazo-text-muted);
  font-size: 13px;
  line-height: 1.52;
  list-style: none;
}

.wazo-workshop-meta strong {
  color: var(--wazo-white);
  font-weight: 500;
}

.wazo-committee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--wazo-border);
}

.wazo-committee-grid article {
  min-width: 0;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--wazo-border);
}

.wazo-committee-grid article:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--wazo-border);
}

.wazo-committee-grid article:nth-child(even) {
  padding-left: 32px;
}

.wazo-committee-grid h3,
.wazo-program-institutional h3 {
  margin: 0 0 8px;
  color: var(--wazo-white);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.wazo-committee-grid p,
.wazo-program-institutional p {
  margin: 0;
  color: var(--wazo-text-soft);
  font-size: 14px;
  line-height: 1.62;
}

.wazo-program-institutional {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wazo-program-institutional article {
  padding: 24px;
  border: 1px solid var(--wazo-border);
  border-radius: 18px;
  background: var(--wazo-surface-raised);
}

.wazo-program-institutional article > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--wazo-sky);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wazo-guidelines {
  margin-top: clamp(58px, 7vw, 92px);
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--wazo-border);
  border-radius: var(--wazo-radius-lg);
  background:
    linear-gradient(145deg, rgba(21, 135, 247, 0.12), transparent 30%),
    var(--wazo-surface);
  color: var(--wazo-text-soft);
  font-size: 15px;
  line-height: 1.74;
}

.wazo-guidelines__summary {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: center;
  padding-right: 220px;
  cursor: pointer;
  list-style: none;
}

.wazo-guidelines__summary::-webkit-details-marker {
  display: none;
}

.wazo-guidelines__summary::marker {
  content: "";
}

.wazo-guidelines__summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--wazo-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--wazo-white);
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 240ms var(--wazo-ease);
}

.wazo-guidelines[open] .wazo-guidelines__summary::after {
  background: var(--wazo-white);
  color: var(--wazo-black);
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.wazo-guidelines__summary:hover::after {
  border-color: transparent;
  background: var(--wazo-sky);
  color: var(--wazo-black);
}

.wazo-guidelines__summary h3 {
  margin-bottom: 0;
}

.wazo-guidelines__action {
  position: absolute;
  top: 50%;
  right: 72px;
  color: var(--wazo-text-muted);
  font-size: 13px;
  line-height: 1.25;
  transform: translateY(-50%);
}

.wazo-guidelines[open] .wazo-guidelines__action span {
  display: inline-block;
  transform: rotate(180deg);
}

.wazo-guidelines__body {
  margin-top: 16px;
  padding-top: 38px;
  border-top: 1px solid var(--wazo-border);
}

.wazo-guidelines__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--wazo-sky);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wazo-guidelines h3 {
  margin: 0 0 26px;
  color: var(--wazo-white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  text-align: left;
}

.wazo-guidelines h4 {
  margin: 0 0 18px;
  color: var(--wazo-white);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.2;
  text-align: left;
}

.wazo-guidelines center {
  text-align: left;
}

.wazo-guidelines p {
  color: var(--wazo-text-soft);
  line-height: 1.74;
}

.wazo-guidelines .wazo-archive-notice {
  margin: 0 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(157, 226, 238, 0.24);
  border-radius: 14px;
  background: rgba(0, 161, 255, 0.08);
  color: var(--wazo-white);
}

.wazo-guidelines strong {
  color: var(--wazo-white);
}

.wazo-resources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(52px, 7vw, 84px);
}

.wazo-resource-card {
  scroll-margin-top: calc(var(--wazo-header-height) + 20px);
}

.wazo-resource-card h3 {
  margin: 0 0 16px;
  color: var(--wazo-white);
  font-size: 24px;
  line-height: 1.1;
}

.wazo-resource-card__link {
  display: grid;
  min-height: 224px;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--wazo-border);
  border-radius: var(--wazo-radius-md);
  background: var(--wazo-surface-raised);
  color: var(--wazo-white);
  text-align: left;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--wazo-ease);
}

.wazo-resource-card__link:hover {
  border-color: rgba(0, 161, 255, 0.55);
  background: linear-gradient(145deg, rgba(0, 80, 255, 0.18), var(--wazo-surface-raised));
  transform: translateY(-5px);
}

.wazo-resource-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--wazo-white);
  color: var(--wazo-black);
}

.wazo-resource-card__icon svg {
  width: 21px;
  height: 21px;
}

.wazo-resource-card__type {
  align-self: end;
  color: var(--wazo-sky);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wazo-resource-card__copy {
  color: var(--wazo-text-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* Inscripcion */
#join.join {
  padding: clamp(76px, 9vw, 126px) 0;
  background: var(--wazo-gradient-spectrum) !important;
}

#join::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 7, 18, 0.56), rgba(6, 7, 18, 0.08));
}

#join .container {
  position: relative;
  z-index: 1;
}

#join .wazo-section-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#join h2.black {
  color: var(--wazo-white) !important;
}

#join .price-tabs {
  margin: 0;
}

#join .price-tabs > [class*="col-"] {
  width: 100%;
  padding: 0;
  float: none;
}

#join .price-tabs .item {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--wazo-radius-lg);
  background: rgba(6, 7, 18, 0.54);
  color: var(--wazo-white);
  box-shadow: var(--wazo-shadow);
  padding: 0;
  text-align: left;
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: transform 220ms var(--wazo-ease), background 220ms ease;
}

#join .price-tabs .item:hover {
  background: rgba(6, 7, 18, 0.68);
  transform: translateY(-5px);
}

#join .price-tabs .item .price {
  display: flex;
  min-height: 100%;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--wazo-white);
  font-size: clamp(28px, 4vw, 48px);
  font-family: var(--wazo-font);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

#join .price-tabs .item .info {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  padding: clamp(28px, 4vw, 52px);
  background: transparent;
  opacity: 1;
  display: block;
  text-align: left;
}

#join .price-tabs .item .info ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#join .price-tabs .item .info li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 400;
  line-height: 1.45;
}

#join .price-tabs .item .info ul li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 400;
  line-height: 1.45;
}

#join .price-tabs .item .info li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wazo-sky);
  content: "";
  box-shadow: 0 0 0 5px rgba(157, 226, 238, 0.13);
  color: transparent;
  font: inherit;
}

#join .price-tabs .item .info ul li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: var(--wazo-sky);
  box-shadow: 0 0 0 5px rgba(157, 226, 238, 0.13);
  color: transparent;
  content: "";
  font: inherit;
}

#join .price-tabs .item:hover .info {
  height: auto;
  background: transparent;
}

#join .form-validate {
  margin-top: 24px;
}

#join .form-validate .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--wazo-radius-md);
  background: rgba(6, 7, 18, 0.32);
}

#join .form-validate .row > [class*="col-"] {
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
}

#join .form-validate .wazo-registration-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: left;
}

#join .wazo-original-copy {
  color: var(--wazo-white);
}

#join .form-validate a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--wazo-white);
  color: var(--wazo-black);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

#join .form-validate a:hover {
  background: var(--wazo-sky);
  transform: translateY(-2px);
}

/* CTA de inscripcion: una misma firma WAZO en cabecera, hero y cierre. */
#navbar .wazo-nav-cta,
#time .btn,
#join .form-validate a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(157, 226, 238, 0.52);
  background: var(--wazo-gradient);
  background-position: 0 50%;
  background-size: 180% 100%;
  color: var(--wazo-white) !important;
  box-shadow:
    0 12px 30px rgba(4, 60, 223, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transition:
    background-position 420ms var(--wazo-ease),
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--wazo-ease);
}

#navbar .wazo-nav-cta::before,
#time .btn::before,
#join .form-validate a::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -62%;
  width: 38%;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-20deg);
  transition: left 620ms var(--wazo-ease);
}

#navbar .wazo-nav-cta::after,
#time .btn::after,
#join .form-validate a::after {
  position: relative;
  z-index: 1;
  margin-left: 9px;
  content: "→";
  font-size: 1.12em;
  line-height: 1;
  transition: transform 260ms var(--wazo-ease);
}

#navbar .wazo-nav-cta:hover,
#navbar .wazo-nav-cta.is-active,
#time .btn:hover,
#join .form-validate a:hover {
  border-color: rgba(255, 255, 255, 0.74);
  background: var(--wazo-gradient);
  background-position: 100% 50%;
  color: var(--wazo-white) !important;
  box-shadow:
    0 18px 42px rgba(0, 73, 255, 0.42),
    0 0 24px rgba(50, 176, 251, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-3px) scale(1.015);
}

#navbar .wazo-nav-cta:hover::before,
#navbar .wazo-nav-cta.is-active::before,
#time .btn:hover::before,
#join .form-validate a:hover::before {
  left: 126%;
}

#navbar .wazo-nav-cta:hover::after,
#navbar .wazo-nav-cta.is-active::after,
#time .btn:hover::after,
#join .form-validate a:hover::after {
  transform: translateX(4px);
}

#navbar .wazo-nav-cta:active,
#time .btn:active,
#join .form-validate a:active {
  transform: translateY(-1px) scale(0.985);
}

/* Patrocinio y colaboradores */
#sponsors {
  padding: clamp(72px, 8vw, 112px) 0 !important;
  border: 0;
  border-bottom: 1px solid var(--wazo-border);
  background: var(--wazo-black);
}

#sponsors #sponsors-slider {
  margin-top: 0;
  padding-bottom: 70px;
}

#sponsors .swiper-wrapper {
  align-items: stretch;
}

#sponsors .swiper-slide {
  display: grid;
  min-height: 148px;
  place-items: center;
  padding: 24px;
  border: 8px solid var(--wazo-black);
  border-radius: 24px;
  background: #f4f6f8;
}

#sponsors .swiper-slide img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

#sponsors .arrow-left,
#sponsors .arrow-right {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 10;
}

#sponsors .arrow-left {
  right: 58px;
}

.wazo-collaborators {
  padding: clamp(60px, 7vw, 94px) 0;
  border-bottom: 1px solid var(--wazo-border);
  background: var(--wazo-surface);
}

.wazo-collaborators h2 {
  width: min(calc(100% - 40px), var(--wazo-container));
  margin-inline: auto;
}

.wazo-collaborators__panel {
  width: min(calc(100% - 40px), var(--wazo-container));
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wazo-collaborators__panel img {
  display: block;
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(2.35) contrast(1.08);
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* Pie */
#block-bottom.block-bottom {
  padding: 34px 0;
  background: var(--wazo-ink) !important;
  color: var(--wazo-white);
}

#block-bottom .borders {
  display: grid !important;
  grid-template-columns: 1.15fr 0.82fr 1fr;
  align-items: center;
  gap: 26px;
  margin: 0;
  border: 0;
}

#block-bottom .borders > .item {
  width: auto;
  min-height: auto;
  padding: 0;
  float: none;
  border: 0;
}

#block-bottom .borders > .item:first-child {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

#block-bottom .logo {
  width: auto;
  height: 64px;
  margin: 0;
  object-fit: contain;
}

#block-bottom .logo-text {
  max-width: 260px;
  margin: 0;
  color: var(--wazo-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

#block-bottom .menu-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 4px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#block-bottom .menu-footer::before,
#block-bottom .menu-footer::after {
  display: none !important;
  content: none !important;
}

#block-bottom .menu-footer li {
  margin: 0;
}

#block-bottom .menu-footer a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  color: var(--wazo-text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 160ms ease;
}

#block-bottom .menu-footer a:hover {
  color: var(--wazo-white);
}

#block-bottom .item:last-child .row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 0;
}

#block-bottom .item:last-child .row > [class*="col-"] {
  width: auto;
  padding: 0;
  float: none;
}

#block-bottom .date {
  display: grid;
  width: 72px;
  min-height: 72px;
  place-content: center;
  border: 1px solid var(--wazo-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--wazo-white);
  margin: 0 !important;
  text-align: center;
}

#block-bottom .date .day {
  display: block;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  padding: 0;
}

#block-bottom .date .month {
  color: var(--wazo-sky);
  font-size: 12px;
}

#block-bottom .address {
  color: var(--wazo-text-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

#block-bottom h6,
#block-bottom .social,
#block-bottom .wazo-footer-social {
  display: none;
}

footer {
  height: auto !important;
  min-height: 64px;
  padding: 16px 0 !important;
  overflow: visible;
  border-top: 1px solid var(--wazo-border);
  background: var(--wazo-ink) !important;
  color: var(--wazo-text-muted) !important;
  text-align: left;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

footer a {
  color: var(--wazo-white);
}

footer .go-top {
  position: static;
  display: inline-grid !important;
  width: 44px;
  height: 44px;
  margin: 0;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--wazo-border);
  border-radius: 50%;
  color: var(--wazo-white);
  text-decoration: none;
}

footer .go-top::before {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
}

/* Scroll reveal: el contenido solo se oculta cuando JS esta activo. */
.has-modern-js .wazo-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms var(--wazo-ease) var(--reveal-delay, 0ms),
    transform 520ms var(--wazo-ease) var(--reveal-delay, 0ms);
}

.has-modern-js .wazo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wazo-hero-drift {
  from { transform: scale(1.035); }
  to { transform: scale(1.085); }
}

@keyframes wazo-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(-12px, 16px, 0) rotate(1deg); }
}

@media (min-width: 992px) and (max-height: 800px) {
  #slider-full {
    height: 100svh;
    min-height: 720px;
    padding: calc(var(--wazo-header-height) + 64px) 0 72px;
  }

  #slider-full .row {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: clamp(24px, 3vw, 46px);
  }

  #slider-full h1 {
    max-width: 790px;
    font-size: clamp(46px, 5.2vw, 70px) !important;
  }

  #slider-full .wazo-kicker {
    margin-bottom: 16px !important;
  }

  #slider-full .wazo-hero-source {
    margin-top: 18px;
    font-size: 20px;
  }

  #slider-full p:not(.wazo-kicker) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  #slider-full p.wazo-hero-funding {
    margin-top: 14px;
    font-size: 13px;
  }

  #slider-full p.wazo-hero-funding + p.wazo-hero-source {
    margin-top: 10px;
  }

  #slider-full .calendar {
    width: 110px;
  }

  #slider-full .calendar .day {
    min-height: 84px;
    font-size: 56px;
  }

  #slider-full .calendar .month {
    min-height: 42px;
  }

  #slider-full .img {
    width: 120px;
  }

  .wazo-hero-controls {
    bottom: 16px;
  }
}

@media (max-width: 1180px) {
  .wazo-brand__eco {
    grid-template-columns: 58px;
  }

  .wazo-brand__eco-logo {
    width: 58px;
    height: 58px;
  }

  .wazo-brand__eco small {
    display: none;
  }

  #navbar .wazo-nav-link {
    padding-inline: 9px;
  }
}

/* El tema heredado convertia el menu en panel lateral hasta 1199 px, pero el
   boton hamburguesa moderno empieza en 991 px. Este puente mantiene visible
   la navegacion de escritorio en el intervalo intermedio. */
@media (min-width: 992px) and (max-width: 1199px) {
  #nav-wrapper #navbar.wazo-nav-panel,
  #nav-wrapper #navbar.wazo-nav-panel.collapse {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    width: auto !important;
    height: auto !important;
    min-height: 44px !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 991px) {
  :root {
    --wazo-header-height: 78px;
  }

  .container {
    width: min(calc(100% - 32px), var(--wazo-container)) !important;
  }

  #nav-wrapper .wazo-nav-shell {
    min-height: var(--wazo-header-height);
  }

  .wazo-brand__logo {
    height: 48px;
  }

  .wazo-brand__eco-logo {
    width: 48px;
    height: 48px;
  }

  .wazo-brand {
    gap: 10px;
  }

  .wazo-brand__csa {
    width: 104px;
    height: 48px;
    flex-basis: 104px;
  }

  .wazo-brand__csa img {
    width: 104px;
  }

  #nav-wrapper .navbar-toggle {
    display: inline-flex;
  }

  #nav-wrapper #navbar.wazo-nav-panel,
  #nav-wrapper #navbar.wazo-nav-panel.collapse {
    position: fixed;
    top: calc(var(--wazo-header-height) + 10px) !important;
    right: 16px !important;
    bottom: auto !important;
    left: 16px !important;
    display: none !important;
    width: auto !important;
    height: auto !important;
    min-width: 0;
    min-height: 0;
    max-height: calc(100svh - var(--wazo-header-height) - 28px) !important;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid var(--wazo-border);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--wazo-shadow);
    backdrop-filter: blur(20px);
  }

  #nav-wrapper #navbar.wazo-nav-panel:not(.collapse) {
    display: block !important;
    animation: wazo-menu-in 220ms var(--wazo-ease) both;
  }

  .wazo-nav-list {
    display: grid;
    gap: 4px;
  }

  #navbar .wazo-nav-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding-inline: 15px;
    border-radius: 12px;
    font-size: 15px;
    text-align: left;
  }

  #navbar .wazo-nav-cta {
    justify-content: center;
    margin: 8px 0 0;
  }

  .wazo-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px 14px;
    padding: 5px;
    visibility: visible;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .wazo-nav-dropdown.is-open > .wazo-submenu {
    display: grid;
  }

  #slider-full {
    min-height: 860px;
    padding-top: calc(var(--wazo-header-height) + 104px);
  }

  .wazo-hero-controls {
    right: 16px;
  }

  #slider-full .row {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  #slider-full .calendar {
    width: 110px;
  }

  #slider-full .calendar .day {
    min-height: 88px;
    font-size: 56px;
  }

  #time .row {
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
    padding-block: 26px;
  }

  #time .row > :nth-child(2) {
    grid-column: 1;
  }

  #time .row > :last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .wazo-partner-lockup__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wazo-welcome-grid {
    grid-template-columns: 1fr;
  }

  .wazo-welcome-media img {
    aspect-ratio: 16 / 9;
  }

  #mapas .stat {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wazo-resources {
    grid-template-columns: 1fr;
  }

  .wazo-resource-card__link {
    min-height: 180px;
  }

  .speakers .arrows {
    display: none !important;
  }

  #block-bottom .borders {
    grid-template-columns: 1fr 1fr;
  }

  #block-bottom .borders > .item:first-child {
    grid-column: 1 / -1;
  }
}

@keyframes wazo-menu-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 767px) {
  .container,
  .speakers > h2,
  .wazo-collaborators h2,
  .wazo-collaborators__panel {
    width: min(calc(100% - 28px), var(--wazo-container)) !important;
  }

  #slider-full {
    height: auto !important;
    min-height: 950px;
    align-items: center;
    padding: calc(var(--wazo-header-height) + 82px) 0 104px;
  }

  .wazo-hero-controls {
    top: 300px;
    right: auto;
    bottom: auto;
    left: 14px;
  }

  .wazo-hero-carousel__slide:nth-child(1) img {
    object-position: 40% center;
  }

  .wazo-hero-carousel__slide:nth-child(2) img {
    object-position: 50% center;
  }

  #slider-full::before {
    background:
      linear-gradient(180deg, rgba(6, 7, 18, 0.64) 0%, rgba(6, 7, 18, 0.84) 42%, rgba(6, 7, 18, 0.98) 100%),
      linear-gradient(0deg, var(--wazo-black) 0%, transparent 38%);
  }

  #slider-full::after {
    top: 8%;
    right: -24%;
    width: 84vw;
  }

  #slider-full .row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 80px;
  }

  #slider-full .row > :first-child {
    grid-row: 1;
  }

  #slider-full .row > :nth-child(2) {
    grid-row: 2;
  }

  #slider-full .calendar {
    width: 94px;
    border-radius: 18px;
  }

  #slider-full .calendar .day {
    min-height: 70px;
    font-size: 45px;
  }

  #slider-full .calendar .month {
    min-height: 38px;
    font-size: 12px;
  }

  #slider-full .wazo-kicker {
    max-width: calc(100vw - 32px);
    margin-bottom: 18px !important;
    font-size: 11px !important;
  }

  #slider-full h1 {
    font-size: clamp(40px, 12.8vw, 61px) !important;
  }

  #slider-full .wazo-hero-source {
    margin-top: 20px;
    font-size: 18px;
  }

  #slider-full p:not(.wazo-kicker) {
    display: block;
    margin-top: 20px;
    font-size: 16px;
  }

  #slider-full p.wazo-hero-funding {
    margin-top: 18px;
    font-size: 13px;
  }

  #slider-full p.wazo-hero-funding + p.wazo-hero-source {
    margin-top: 12px;
  }

  #time .row {
    grid-template-columns: 1fr;
    padding-block: 28px;
  }

  #time .row > :nth-child(2),
  #time .row > :last-child {
    grid-column: 1;
    grid-row: auto;
  }

  #time .days {
    flex-wrap: wrap;
  }

  #time .btn {
    width: 100%;
  }

  .about h2,
  .mapas h2,
  .speakers > h2,
  .plan > .container > h2,
  .join h2,
  #sponsors h2,
  .wazo-collaborators h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  .wazo-partner-lockup {
    gap: 14px;
    padding: 14px;
  }

  #about.about {
    padding-block: 64px;
  }

  .wazo-welcome-copy {
    padding: 22px;
  }

  .wazo-partner-lockup__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wazo-partner-lockup__item {
    min-height: 64px;
    padding: 8px;
  }

  .wazo-partner-lockup__items > .wazo-partner-lockup__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 10px) / 2);
    justify-self: center;
  }

  #mapas iframe {
    height: 360px;
    border-radius: 20px;
  }

  #mapas .stat {
    grid-template-columns: 1fr;
  }

  #mapas .stat > [class*="col-"] {
    min-height: 0;
  }

  .speakers .swiper-slide {
    min-height: 0;
  }

  /* En pantallas tactiles usamos desplazamiento nativo: evita tarjetas
     comprimidas con la version historica de Swiper y mantiene el gesto. */
  .speakers .swiper-container,
  #sponsors #sponsors-slider {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .speakers .swiper-container::-webkit-scrollbar,
  #sponsors #sponsors-slider::-webkit-scrollbar {
    display: none;
  }

  .speakers .swiper-wrapper,
  #sponsors .swiper-wrapper {
    display: flex !important;
    width: max-content !important;
    transform: none !important;
    transition: none !important;
  }

  .speakers .swiper-slide,
  #sponsors .swiper-slide {
    width: calc(100vw - 43px) !important;
    flex: 0 0 calc(100vw - 43px) !important;
    margin-right: 12px !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .speakers .arrows,
  #sponsors .arrow-left,
  #sponsors .arrow-right {
    display: none !important;
  }

  .speakers .swiper-slide > img,
  .speakers .speaker-photo-placeholder {
    height: 290px;
  }

  .wazo-program-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wazo-program-download {
    width: 100%;
    min-height: 76px;
  }

  .wazo-program-timeline__item {
    min-height: 0;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
    padding: 26px 4px;
  }

  .wazo-program-timeline__item:hover {
    padding-left: 10px;
  }

  .wazo-program-timeline__index {
    display: none;
  }

  .wazo-program-accordion > summary {
    min-height: 92px;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 14px;
  }

  .wazo-program-accordion > summary em {
    display: none;
  }

  .wazo-committee-grid,
  .wazo-workshop-grid,
  .wazo-program-institutional {
    grid-template-columns: 1fr;
  }

  .wazo-committee-grid article,
  .wazo-committee-grid article:nth-child(odd),
  .wazo-committee-grid article:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
  }

  .wazo-guidelines {
    padding: 24px;
    border-radius: 22px;
    font-size: 14px;
  }

  .wazo-guidelines__summary {
    min-height: 0;
    padding: 0 0 84px;
  }

  .wazo-guidelines__action {
    right: 64px;
    bottom: 18px;
    top: auto;
    transform: none;
  }

  .wazo-guidelines__summary::after,
  .wazo-guidelines[open] .wazo-guidelines__summary::after {
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
  }

  #join .price-tabs .item {
    grid-template-columns: 1fr;
  }

  #join .price-tabs .price {
    min-height: 0;
  }

  #join .form-validate .row {
    align-items: stretch;
    flex-direction: column;
  }

  #join .form-validate .row > [class*="col-"] {
    width: 100%;
  }

  #join .form-validate a {
    width: 100%;
  }

  #block-bottom .borders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  #block-bottom .borders > .item:first-child {
    grid-column: 1 / -1;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  #block-bottom.block-bottom {
    padding: 24px 0;
  }

  #block-bottom .logo {
    height: 54px;
  }

  #block-bottom .logo-text {
    max-width: 300px;
  }

  #block-bottom .menu-footer {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  #block-bottom .menu-footer a {
    min-height: 28px;
  }

  #block-bottom .item:last-child .row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  footer {
    min-height: 68px;
    padding: 14px 0 !important;
    font-size: 12px;
  }

  footer .container {
    gap: 12px;
  }

  #block-bottom .hidden-xs {
    display: block !important;
  }

  footer .container {
    align-items: flex-start;
  }
}

@media (max-width: 340px) {
  .wazo-brand {
    gap: 4px;
  }

  .wazo-brand__csa {
    width: 64px;
    flex-basis: 64px;
  }

  .wazo-brand__csa img {
    width: 64px;
  }

  .wazo-hero-counter {
    display: none;
  }

  .wazo-partner-lockup__items {
    grid-template-columns: 1fr;
  }

  .wazo-partner-lockup__item {
    min-height: 92px;
  }

  .wazo-partner-lockup__items > .wazo-partner-lockup__item:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  #time .wazo-event-date,
  #time .wazo-event-location {
    width: 100%;
    justify-content: center;
  }

  footer .container {
    flex-direction: row;
    align-items: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-modern-js .wazo-reveal,
  .has-modern-js .wazo-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  #slider-full::after {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  #nav-wrapper.wazo-navbar,
  #navbar.wazo-nav-panel,
  .wazo-submenu {
    background: var(--wazo-black);
    backdrop-filter: none;
  }
}
