﻿:root {
  --blue: #1077a1;
  --deep: #07516e;
  --ink: #12303d;
  --pale: #f4f8fa;
  --yellow: #ffd447;
  --white: #fff
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  background: var(--pale)
}

h1,
h2,
h3,
p {
  margin: 0
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -.055em
}

h1 {
  font-size: clamp(4rem, 8.5vw, 8.7rem);
  line-height: .83;
  text-transform: uppercase
}

h2 {
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: .9;
  text-transform: uppercase
}

h2 span,
h1 em {
  color: var(--yellow);
  font-style: normal
}

a {
  text-decoration: none;
  color: inherit
}

.site-header {
  height: 78px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 5vw, 5rem);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 3px 20px #052c3b12
}

.topbar,
.site-header {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.topbar.header-hidden,
.site-header.header-hidden {
  transform: translateY(-110%);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk'
}

.brand b,
.footer-brand b {
  display: block;
  font-size: 15px;
  letter-spacing: .02em
}

.brand small,
.footer-brand small {
  display: block;
  color: #65808a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  border: 3px solid var(--blue);
  font-weight: 700;
  font-family: 'Space Grotesk';
  font-size: 26px;
  line-height: 1
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase
}

.nav-links a:not(.nav-cta):hover {
  color: var(--blue)
}

.nav-cta,
.button {
  background: var(--blue);
  color: #fff;
  border-radius: 3px;
  padding: 14px 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 11px
}

.nav-cta span,
.button span {
  margin-left: 12px;
  font-size: 16px
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px
}

.hero {
  margin-top: 78px;
  min-height: calc(100vh - 78px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #074563 0%, #0d78a1 55%, #8fc6d1 100%);
  color: #fff;
  display: flex;
  align-items: center
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(110deg, #033d5b88 0%, transparent 58%), linear-gradient(#ffffff0e 1px, transparent 1px), linear-gradient(90deg, #ffffff0e 1px, transparent 1px);
  background-size: auto, 55px 55px, 55px 55px
}

.hero-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  right: -20vw;
  top: -10vw;
  background: #54b9ca44;
  filter: blur(2px)
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 53%;
  padding: 7vw 0 7vw clamp(1.2rem, 8vw, 9rem)
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px
}

.eyebrow.light {
  color: #bce8ef
}

.hero-lead {
  font-family: 'Space Grotesk';
  font-size: clamp(1.8rem, 3.3vw, 3.8rem);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 700;
  margin: 30px 0 20px
}

.hero-text {
  max-width: 400px;
  line-height: 1.55;
  font-size: 15px;
  color: #d9f1f3
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px
}

.button-yellow {
  background: var(--yellow);
  color: var(--ink)
}

.text-link {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700
}

.text-link span {
  font-size: 18px;
  margin-left: 7px
}

.hero-person {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 48%;
  height: 92%;
  background: radial-gradient(ellipse at 45% 40%, #caf0f3aa, transparent 43%);
  display: flex;
  align-items: end;
  justify-content: center
}

.portrait-placeholder {
  width: 60%;
  height: 88%;
  position: relative;
  background: linear-gradient(145deg, #d5f0ef 0%, #58aabd 42%, #075976 100%);
  border-radius: 48% 48% 0 0;
  box-shadow: 0 0 90px #b6eff655;
  overflow: hidden
}

.portrait-placeholder:before {
  content: 'JP';
  position: absolute;
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: clamp(9rem, 20vw, 24rem);
  color: #ffffff15;
  left: 5%;
  top: 12%
}

.portrait-placeholder:after {
  content: 'Retrato del candidato';
  position: absolute;
  bottom: 24%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #fff9
}

.portrait-sun {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 12%;
  right: 7%;
  background: #ffd44799;
  filter: blur(5px)
}

.portrait-label {
  position: absolute;
  bottom: 7%;
  left: 7%;
  right: 7%;
  background: #fff;
  color: var(--ink);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px
}

.portrait-label strong {
  font-size: 20px;
  line-height: .95;
  font-weight: 700
}

.portrait-label span {
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.15;
  text-align: right
}

.hero-sign {
  position: absolute;
  right: 4%;
  top: 7%;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  letter-spacing: .08em
}

.rp-symbol {
  width: 74px;
  height: 74px;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk';
  font-size: 44px;
  line-height: 1
}

.hero-sign b {
  font-size: 15px;
  line-height: 1.1;
  display: block
}

.scroll-note {
  position: absolute;
  bottom: 24px;
  left: clamp(1.2rem, 8vw, 9rem);
  font-size: 9px;
  letter-spacing: .2em;
  color: #d3eef0
}

.scroll-note span {
  font-size: 18px;
  margin-left: 14px
}

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.2rem, 8vw, 9rem)
}

.impact {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: end
}

.impact h2 {
  color: var(--ink)
}

.impact h2 span {
  color: var(--blue)
}

.impact-copy {
  max-width: 570px
}

.impact-copy>p {
  font-size: 20px;
  line-height: 1.35;
  max-width: 460px
}

.score {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 48px
}

.score>div {
  display: flex;
  flex-direction: column
}

.score strong {
  font: 700 clamp(3rem, 6vw, 6rem)/.8 'Space Grotesk';
  color: var(--blue);
  letter-spacing: -.08em
}

.score small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: #75909a;
  margin-top: 12px
}

.score i {
  font-size: 3rem;
  font-style: normal;
  color: var(--yellow)
}

.score .goal strong {
  color: var(--ink)
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9vw;
  background: #edf6f8
}

.about-visual {
  display: grid;
  place-items: center
}

.about-card {
  width: min(100%, 370px);
  aspect-ratio: .78;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  box-shadow: 24px 24px 0 #cae6ea
}

.about-card:before {
  content: '';
  position: absolute;
  inset: 13% 10% 0;
  background: linear-gradient(145deg, #f1fbfa, #96d3db);
  border-radius: 47% 47% 0 0
}

.about-silhouette {
  position: absolute;
  z-index: 1;
  bottom: 4%;
  left: 17%;
  font: 700 10rem/.8 'Space Grotesk';
  color: #07516eaa
}

.card-stamp {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  font-size: 9px;
  background: #fff;
  padding: 8px 11px;
  color: var(--blue);
  font-weight: 700
}

.about-name {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 20px;
  background: #fff;
  padding: 13px 18px;
  font-size: 14px;
  letter-spacing: .03em
}

.about-name b {
  color: var(--blue)
}

.about-copy {
  align-self: center
}

.about-copy>p:not(.eyebrow) {
  line-height: 1.55;
  max-width: 560px;
  margin: 28px 0;
  font-size: 17px
}

.value-list>div {
  display: flex;
  gap: 20px;
  border-top: 1px solid #cbdfe3;
  padding: 18px 0
}

.value-list span {
  font: 700 12px 'Space Grotesk';
  color: var(--blue)
}

.value-list p {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.value-list small {
  color: #64808a
}

.vision {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden
}

.vision:after {
  content: '';
  position: absolute;
  right: -15%;
  top: -25%;
  width: 65vw;
  height: 65vw;
  border: 100px solid #ffffff0c;
  border-radius: 50%
}

.vision-head {
  max-width: 760px;
  position: relative;
  z-index: 1
}

.vision-head h2 {
  margin-bottom: 28px
}

.vision-head>p:last-child {
  font-size: 18px;
  line-height: 1.5;
  color: #d5f2f3;
  max-width: 690px
}

.vision-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 65px 0 80px;
  position: relative;
  z-index: 1
}

.vision-pills span {
  border: 1px solid #ffffff66;
  border-radius: 50px;
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  background: transparent;
  color: #fff
}

.vision-pills span:first-child {
  background: transparent;
  border-color: #ffffff66;
  color: #fff
}

.vision-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1
}

.vision-stats div {
  background: #ffffff16;
  border: 1px solid #ffffff33;
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px
}

.vision-stats b {
  font: 700 2.3rem 'Space Grotesk';
  color: var(--yellow)
}

.vision-stats small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.ejes {
  background: radial-gradient(circle at 8% 18%, #d8f0f3 0 90px, transparent 91px), radial-gradient(circle at 94% 82%, #dceff4 0 130px, transparent 131px), linear-gradient(145deg, #f7fcfd 0%, #fff 52%, #eef8fa 100%);
  position: relative;
  overflow: hidden
}

.ejes::before {
  content: '08 EJES';
  position: absolute;
  right: -20px;
  top: 82px;
  color: #0c6f8b0a;
  font: 700 clamp(7rem, 18vw, 15rem) / 1 'Space Grotesk';
  letter-spacing: -.1em;
  pointer-events: none
}

.section-heading {
  max-width: 650px;
  margin-bottom: 60px
}

.section-heading>p:last-child {
  margin-top: 24px;
  color: #65808a;
  font-size: 16px
}

.ejes .section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center
}

.ejes .section-heading>p:last-child {
  max-width: 560px;
  margin: 24px auto 0;
  text-align: center
}

.ejes .section-heading .eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dff3f5;
  color: var(--blue)
}

.ejes .section-heading h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.07em
}

.ejes .section-heading h2 span {
  color: var(--yellow)
}

.ejes-grid {
  position: relative;
  z-index: 1
}

.ejes-grid-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  row-gap: 18px;
  align-items: stretch
}

.ejes-grid-group+.ejes-grid-group {
  margin-top: 18px
}

.ejes-grid-group[hidden] {
  display: none
}

.ejes-grid article {
  min-height: 285px;
  border: 1px solid #dcebee;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(150deg, #fff 0%, #f7fbfc 100%);
  box-shadow: 0 12px 28px #0b597314;
  transition: .35s cubic-bezier(.2, .8, .2, 1)
}

.ejes-toggle {
  margin: 22px auto 0;
  width: 56px;
  height: 56px;
  border: 1px solid #cfe8ee;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 24px #0d7ea11a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease
}

.ejes-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px #0d7ea131
}

.ejes-toggle__icon {
  display: inline-block;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-2px)
}

.ejes-toggle.is-open .ejes-toggle__icon {
  transform: rotate(180deg) translateY(-2px)
}

.ejes-grid article::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--blue);
}

.ejes-grid article:nth-child(2)::before,
.ejes-grid article:nth-child(6)::before {
  background: #21a6b8;
}

.ejes-grid article:nth-child(3)::before,
.ejes-grid article:nth-child(7)::before {
  background: var(--blue);
}

.ejes-grid article:nth-child(4)::before,
.ejes-grid article:nth-child(8)::before {
  background: #07516e;
}

.ejes-grid article::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -48px;
  bottom: -52px;
  border-radius: 50%;
  background: #1077a10d;
  pointer-events: none
}

.ejes-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px #13566a16
}

.number {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .12em
}

.icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #e8f5f7;
  color: var(--blue);
  font-size: 29px;
  margin: 38px 0 22px;
  position: relative;
  z-index: 1
}

.ejes-grid article:nth-child(2) .icon,
.ejes-grid article:nth-child(6) .icon {
  background: #e5f6f3;
  color: #168c99;
}

.ejes-grid article:nth-child(3) .icon,
.ejes-grid article:nth-child(7) .icon {
  background: #e8f5f7;
  color: var(--blue);
}

.ejes-grid article:nth-child(4) .icon,
.ejes-grid article:nth-child(8) .icon {
  background: #e8eef7;
  color: #07516e;
}

.ejes h3,
.proposal h3 {
  font-size: 20px;
  letter-spacing: -.04em;
  line-height: 1
}

.ejes p {
  font-size: 13px;
  line-height: 1.45;
  color: #71858b;
  margin: 13px 0 22px;
  max-width: 230px
}

.ejes a,
.ejes button {
  font-size: 10px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 1
}

.propuestas {
  background: var(--deep);
  color: #fff
}

.proposal-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px
}

.proposal {
  background: #ffffff14;
  border: 1px solid #ffffff2a;
  padding: 17px;
  border-radius: 8px
}

.proposal-art {
  height: 175px;
  border-radius: 5px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden
}

.proposal-art:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a3958, #49afbd);
  opacity: .9
}

.art-security {
  background: linear-gradient(135deg, #193f6a, #0c829f)
}

.art-health {
  background: linear-gradient(135deg, #1b6f77, #95d2c4)
}

.art-data {
  background: linear-gradient(135deg, #12345b, #4e86c2)
}

.proposal-art span,
.proposal-art b {
  position: relative;
  z-index: 1;
  font: 700 5rem 'Space Grotesk';
  color: #ffffff66
}

.proposal-art b {
  position: absolute;
  font-size: 1.4rem;
  color: var(--yellow);
  bottom: 20px;
  right: 20px
}

.proposal small {
  font-size: 9px;
  color: #a3e3e7;
  font-weight: 700;
  letter-spacing: .14em
}

.proposal p {
  color: #cae6e9;
  line-height: 1.5;
  font-size: 13px;
  margin-top: 12px
}

.listen {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center
}

.listen-copy>p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.5;
  max-width: 400px;
  margin: 25px 0 30px
}

.button-blue {
  display: inline-block
}

.listen-map {
  height: 370px;
  background: #dceff1;
  border-radius: 50%;
  position: relative;
  overflow: hidden
}

.map-lines {
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(20deg, transparent 0 42px, #ffffffaa 43px 45px), repeating-linear-gradient(110deg, transparent 0 70px, #ffffff88 71px 73px);
  transform: rotate(-12deg)
}

.map-pin {
  position: absolute;
  left: 47%;
  top: 36%;
  width: 65px;
  height: 65px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 35px
}

.map-tag {
  position: absolute;
  right: 15%;
  bottom: 18%;
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  font-size: 10px;
  letter-spacing: .1em;
  transform: rotate(4deg)
}

.map-tag b {
  color: var(--yellow);
  font-size: 19px
}

.plan {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6vw;
  align-items: center
}

.plan h2 {
  font-size: clamp(3rem, 5vw, 5.5rem)
}

.timeline {
  display: flex;
  gap: 25px;
  border-left: 1px solid #ffffff55;
  padding-left: 25px;
  margin-bottom: 32px
}

.timeline>div {
  flex: 1
}

.timeline b {
  font: 700 3.2rem 'Space Grotesk';
  color: var(--yellow);
  display: block
}

.timeline span {
  font-size: 10px;
  letter-spacing: .14em
}

.timeline p {
  font-size: 13px;
  color: #b6d1d4;
  line-height: 1.4;
  margin-top: 15px
}

.plan .button {
  grid-column: 2;
  width: max-content
}

.plan .eyebrow {
  margin-bottom: 20px
}

footer {
  background: #06202b;
  color: #fff;
  padding: 35px clamp(1.2rem, 8vw, 9rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap
}

.footer-rp {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .1em
}

.footer-rp .rp-symbol {
  width: 32px;
  height: 32px;
  font-size: 18px
}

footer>p {
  width: 100%;
  font-size: 11px;
  color: #82a4aa
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:980px) {
  .topbar {
    padding: 0 12px;
    font-size: 8px
  }

  .topbar span {
    margin-right: 0;
    float: none;
    display: inline-flex;
    gap: 8px;
    vertical-align: middle
  }

  .nav-links {
    gap: 12px;
    font-size: 10px
  }

  .nav-cta {
    padding: 11px 12px
  }

  .hero {
    min-height: 760px;
    align-items: flex-start
  }

  .hero-person {
    right: -8%;
    width: 52%;
    height: 54%;
    opacity: .8
  }

  .hero-copy {
    width: 64%;
    padding-top: 80px
  }

  .hero-actions {
    width: min(100%, 360px)
  }

  .ejes-grid-group {
    grid-template-columns: repeat(2, 1fr)
  }

  .proposal-grid {
    grid-template-columns: 1fr 1fr
  }

  .proposal.feature {
    grid-column: span 2
  }

  .plan {
    grid-template-columns: 1fr
  }

  .plan .button {
    grid-column: auto
  }

  .footer-main {
    grid-template-columns: 1fr 1fr
  }

  .footer-about {
    grid-column: span 2
  }
}

@media(max-width:860px) {
  .site-header {
    height: 68px
  }

  .brand {
    gap: 8px
  }

  .brand b {
    font-size: 12px
  }

  .brand small {
    font-size: 8px;
    letter-spacing: .08em
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 20px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 12px 20px #052c3b12
  }

  .nav-links.open {
    display: flex
  }

  .menu-toggle {
    display: block
  }

  .hero {
    margin-top: 68px;
    min-height: 760px;
    align-items: start;
    overflow: hidden
  }

  .hero-copy {
    width: 58%;
    padding: 90px 0 0 22px
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-top: 26px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: min(100%, 300px)
  }

  .hero-actions .button,
  .hero-actions .text-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    line-height: 1.1;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0
  }

  .hero-actions .button {
    padding: 12px 10px;
    font-size: 8.5px;
    letter-spacing: .02em
  }

  .hero-actions .text-link {
    font-size: 8.2px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    margin-top: 0
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: .12em;
    margin-bottom: 18px
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 5rem)
  }

  .hero-lead {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    margin: 18px 0 14px
  }

  .hero-text {
    font-size: 14px;
    max-width: 92%
  }

  .hero-person {
    width: 42%;
    right: -6%;
    height: 52%;
    bottom: 0;
    opacity: 1
  }

  .portrait-placeholder {
    width: 100%;
    height: 100%
  }

  .hero-sign {
    top: 25px;
    right: 22px;
    gap: 10px;
    transform: scale(.9);
    transform-origin: top right
  }

  .rp-symbol {
    width: 52px;
    height: 52px;
    font-size: 30px
  }

  .hero-sign b {
    font-size: 11px;
    line-height: 1.05
  }

  .portrait-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 12px 10px;
    left: 8%;
    right: 8%;
    bottom: 26px;
    transform: translateY(-28px)
  }

  .portrait-label strong,
  .portrait-label span {
    display: block;
    line-height: .9
  }

  .portrait-label strong {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    width: 100%
  }

  .portrait-label span {
    font-size: 11px;
    letter-spacing: .08em;
    text-align: center;
    width: 100%
  }

  .scroll-note {
    left: 22px
  }

  .section-pad {
    padding: 72px 22px
  }

  .impact,
  .about,
  .listen {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .impact-copy>p {
    font-size: 17px
  }

  .about {
    padding-top: 90px
  }

  .about-visual {
    padding-right: 20px
  }

  .about-copy h2 {
    font-size: 3.1rem
  }

  .vision-stats {
    grid-template-columns: 1fr
  }

  .vision-stats div {
    padding: 16px
  }

  .ejes .section-heading h2 {
    font-size: clamp(2.5rem, 12vw, 4.2rem)
  }

  .section-heading>p:last-child {
    font-size: 14px
  }

  .ejes-grid-group,
  .proposal-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .ejes-grid article {
    min-height: 220px;
    padding: 18px;
    margin-bottom: 0
  }

  .ejes-grid article h3 {
    font-size: 1.5rem
  }

  .ejes-grid article p {
    font-size: .97rem
  }

  .proposal.feature {
    grid-column: auto
  }

  .proposal-art {
    height: 145px
  }

  .ejes-toggle {
    width: 48px;
    height: 48px
  }

  .section-heading {
    margin-bottom: 38px
  }

  .timeline {
    flex-direction: column;
    gap: 20px
  }

  .timeline>div {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center
  }

  .timeline b {
    grid-row: span 2
  }

  .timeline p {
    margin: 0
  }

  .plan .button {
    width: 100%;
    text-align: center
  }

  .listen-map {
    height: 300px
  }

  .footer-rp {
    width: 100%
  }
}

.topbar {
  height: 34px;
  background: #08728f;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 700 10px/1 'Space Grotesk';
  letter-spacing: .1em;
  padding: 0 18px
}

.topbar span {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .9
}

.topbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  line-height: 1;
  font-size: 18px;
  color: #fff
}

.site-header {
  top: 23px;
  padding-left: clamp(1.2rem, 8vw, 9rem);
  padding-right: clamp(1.2rem, 8vw, 9rem)
}

.hero {
  margin-top: 91px
}

.message {
  background: var(--deep);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: center
}

.message-copy h2 {
  font-size: clamp(3rem, 5vw, 5.8rem)
}

.message-copy>p:not(.eyebrow) {
  max-width: 540px;
  color: #c8e6e9;
  line-height: 1.55;
  margin: 28px 0
}

.signature {
  display: block;
  border-left: 2px solid var(--yellow);
  padding-left: 14px;
  font: 700 14px 'Space Grotesk'
}

.signature small {
  font: 400 11px 'DM Sans';
  color: #b8dadd
}

.video-card {
  background: #fff;
  color: var(--ink);
  border-radius: 15px;
  padding: 14px;
  max-width: 300px;
  justify-self: center;
  box-shadow: 0 20px 50px #042a3d33
}

.video-art {
  height: 330px;
  border-radius: 9px;
  background: linear-gradient(145deg, #07516e, #5fc0c9 55%, #ffc84a);
  display: grid;
  place-items: center
}

.video-art span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 24px
}

.video-card small,
.video-card>b {
  display: block;
  margin-top: 12px
}

.video-card small {
  font-size: 8px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .13em
}

.video-card>b {
  font-size: 14px
}

.gallery {
  background: #fff
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 185px;
  gap: 16px;
  margin-top: 0
}

.gallery-photo {
  border-radius: 16px;
  background: linear-gradient(145deg, #0a5170, #78cbd0);
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: end;
  color: #fff;
  box-shadow: 0 16px 28px rgba(8, 43, 61, .12)
}

.gallery-photo:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, #ffd447bb, transparent 18%), linear-gradient(0deg, #052b3dcc, transparent 70%)
}

.gallery-photo b {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: .04em
}

.photo-one {
  grid-row: span 2;
  background: linear-gradient(150deg, #197896, #d1b477)
}

.rv-hover-gallery {
  background: #0f232d;
}

.rv-hover-gallery .rv-hover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .7s ease, transform .7s ease;
}

.rv-hover-gallery .rv-hover-image.current {
  opacity: 1;
  transform: scale(1.02);
}

.rv-hover-gallery .rv-hover-image.next {
  opacity: 0;
  transform: scale(1.08);
}

.rv-hover-gallery:hover .rv-hover-image.current,
.rv-hover-gallery:focus-within .rv-hover-image.current {
  opacity: 0;
  transform: scale(1.08);
}

.rv-hover-gallery:hover .rv-hover-image.next,
.rv-hover-gallery:focus-within .rv-hover-image.next {
  opacity: 1;
  transform: scale(1.02);
}

.rv-hover-gallery:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 28, 38, .10) 0%, rgba(5, 28, 38, .72) 100%);
  z-index: 1;
}

.rv-hover-gallery b {
  position: relative;
  z-index: 2;
}

.photo-four {
  grid-column: span 2;
  background: linear-gradient(145deg, #0d5073, #2d9db0)
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: #edf6f8
}

.contact-copy>p:not(.eyebrow) {
  max-width: 500px;
  line-height: 1.5;
  margin: 25px 0
}

.contact-links {
  display: grid;
  gap: 10px
}

.contact-links a {
  background: #fff;
  border: 1px solid #dcebee;
  padding: 15px 18px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-links b {
  font-size: 12px;
  color: var(--blue);
  text-transform: uppercase
}

.contact-links small {
  color: #71858b;
  font-size: 11px
}

.contact-photo {
  align-self: center;
  margin: 0;
  background: #fff;
  border: 1px solid #dcebee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px #164f5c16;
}

.contact-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 48%;
}

.contact-photo figcaption {
  padding: 14px 18px;
  color: var(--deep);
  font: 700 13px / 1.3 'Space Grotesk';
}

.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 20px 50px #164f5c16
}

.contact-form h3 {
  font-size: 23px;
  margin: 0 0 18px
}

.contact-form label {
  display: block;
  font-size: 9px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 11px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #d6e8eb;
  background: #f5fafb;
  border-radius: 8px;
  padding: 12px;
  margin-top: 5px;
  font: 12px 'DM Sans';
  color: var(--ink)
}

.contact-form textarea {
  min-height: 82px;
  resize: vertical
}

.contact-form button {
  border: 0;
  margin-top: 16px;
  width: 100%;
  cursor: pointer
}

@media(max-width:650px) {
  .site-header {
    top: 23px;
    padding-left: 22px;
    padding-right: 22px
  }

  .hero {
    margin-top: 91px
  }

  .message,
  .contact {
    grid-template-columns: 1fr
  }

  .video-card {
    max-width: 280px
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 145px
  }

  .photo-one {
    grid-row: span 2
  }

  .photo-four {
    grid-column: span 2
  }
}

.candidate-name {
  display: block;
  color: #fff;
  font-size: .72em;
  line-height: .82;
  text-shadow: 0 4px 0 #07516e, 0 0 25px #55d9e5aa;
  letter-spacing: -.07em
}

.hero h1 em {
  display: block;
  font-size: .55em;
  margin-top: 18px;
  color: var(--yellow)
}

.portrait-placeholder img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: none;
  mix-blend-mode: normal
}

.portrait-placeholder:after {
  content: none
}

.portrait-label {
  z-index: 3
}

.about-card img {
  position: absolute;
  z-index: 1;
  inset: 13% 10% 0;
  width: 80%;
  height: 87%;
  object-fit: cover;
  object-position: 46% 30%;
  filter: none;
  mix-blend-mode: normal
}

.about-name {
  z-index: 3
}

.gallery-photo,
.proposal-art {
  background-position: center;
  background-size: cover;
  transition: background-image .35s ease, transform .35s ease
}

.gallery-photo:hover,
.proposal:hover .proposal-art {
  transform: translateY(-5px)
}

.photo-one {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=80')
}

.photo-one:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1504150558240-0b4fd8946624?auto=format&fit=crop&w=900&q=80')
}

.photo-two {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=900&q=80')
}

.photo-two:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=900&q=80')
}

.photo-three {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=80')
}

.photo-three:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=80')
}

.photo-four {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80')
}

.photo-four:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=80')
}

.photo-five {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80')
}

.photo-five:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=80')
}

.art-security {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=900&q=80')
}

.art-security:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=900&q=80')
}

.art-health {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=900&q=80')
}

.art-health:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=900&q=80')
}

.art-data {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=900&q=80')
}

.art-data:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80')
}

.photo-one {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/754057988_4156898017944667_3626651952943753393_n.jpg')
}

.photo-one:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/756590108_1034437059178207_4593054757537456171_n.jpg')
}

.photo-two {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/753320253_1382612896528857_7782466475221390756_n.jpg')
}

.photo-two:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/754884511_27516317961369944_1401106218030850548_n.jpg')
}

.photo-three {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/755373477_1622334139242078_7712049078931541213_n.jpg')
}

.photo-three:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/752538760_1035808679346193_1332422841862386142_n.jpg')
}

.photo-four {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/756590108_1034437059178207_4593054757537456171_n.jpg')
}

.photo-four:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/753320253_1382612896528857_7782466475221390756_n.jpg')
}

.photo-five {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/752538760_1035808679346193_1332422841862386142_n.jpg')
}

.photo-five:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/755373477_1622334139242078_7712049078931541213_n.jpg')
}

.art-security {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/754057988_4156898017944667_3626651952943753393_n.jpg')
}

.art-security:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/753320253_1382612896528857_7782466475221390756_n.jpg')
}

.art-data {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/752538760_1035808679346193_1332422841862386142_n.jpg')
}

.art-data:hover {
  background-image: linear-gradient(0deg, #052b3dcc, transparent 70%), url('img/756590108_1034437059178207_4593054757537456171_n.jpg')
}

.hero {
  background-image: linear-gradient(105deg, #033d5be8 0%, #086b8db8 52%, #0b76998f 100%), url('img/fondo.jpg');
  background-size: cover;
  background-position: center 42%;
}

.hero-grid {
  opacity: .5
}

.portrait-placeholder {
  background: #fff;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 0 14px #ffffff20, 0 0 60px #b8f3ff55
}

.portrait-placeholder img {
  object-position: 50% 17%
}

:root {
  --deep: #01698a
}

.topbar {
  background: #01698a
}

.hero {
  background-image: linear-gradient(105deg, #01698ae8 0%, #1077a1c7 52%, #1077a18f 100%), url('img/fondo.jpg')
}

.hero-sign .rp-symbol,
.footer-rp .rp-symbol {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
  font-weight: 700
}

.hero-sign b {
  color: #fff
}

.footer-rp {
  color: #fff
}

.footer-rp .rp-symbol {
  width: 42px;
  height: 42px;
  font-size: 24px
}

footer {
  background: #01698a
}

body>footer:not(.footer-modern) {
  display: none
}

.footer-modern {
  display: block !important;
  background: #01698a;
  color: #dff6f7;
  padding: 58px clamp(1.2rem, 8vw, 9rem) 18px;
  position: relative;
  overflow: hidden
}

.footer-modern:before,
.footer-modern:after {
  content: '';
  position: absolute;
  border: 1px solid #ffffff18;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -170px
}

.footer-modern:after {
  width: 240px;
  height: 240px;
  left: -130px;
  bottom: -160px;
  top: auto;
  right: auto
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 5vw;
  position: relative;
  z-index: 1
}

.footer-brand {
  color: #fff
}

.footer-brand .brand-mark {
  background: #fff;
  color: #01698a
}

.footer-about>p {
  max-width: 340px;
  line-height: 1.6;
  font-size: 14px;
  margin: 25px 0 18px
}

.location {
  display: inline-block;
  border: 1px solid #ffffff33;
  border-radius: 30px;
  padding: 10px 15px;
  font-size: 11px
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 25px
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff44;
  background: #ffffff14;
  font-weight: 700
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-column h4 {
  margin: 0 0 10px;
  color: #fff;
  font: 700 15px 'Space Grotesk'
}

.footer-column>a {
  font-size: 13px;
  font-weight: 600;
  color: #d4eff1
}

.footer-column>a:hover {
  color: #fff
}

.footer-contact>a,
.footer-contact-link {
  border: 1px solid #ffffff33;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff12
}

.footer-contact>a>b,
.footer-contact-link>b {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #01698a;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px
}

.footer-contact>a span,
.footer-contact-link span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #fff
}

.footer-contact>a small,
.footer-contact-link small {
  font-size: 9px;
  color: #b4e1e5;
  letter-spacing: .08em
}

.footer-join {
  background: #fff !important;
  color: #01698a !important;
  border-radius: 30px !important;
  justify-content: center;
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 11px !important;
  border: 0;
  width: 100%;
  font-family: inherit;
  cursor: default
}

.footer-bottom {
  border-top: 1px solid #ffffff25;
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.5;
  color: #d9f1f2;
  position: relative;
  z-index: 1
}

.footer-bottom span {
  display: inline-block
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  background: #fff;
  color: #01698a;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 50;
  box-shadow: 0 14px 28px rgba(12, 49, 67, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-2px);
}

@media(max-width:800px) {
  .footer-main {
    grid-template-columns: 1fr 1fr
  }

  .footer-about {
    grid-column: span 2
  }
}

@media(max-width:520px) {
  .footer-main {
    grid-template-columns: 1fr
  }

  .footer-about {
    grid-column: auto
  }

  .footer-social {
    margin-top: 18px
  }

  .footer-social a {
    width: 42px;
    height: 42px
  }

  .footer-contact>a,
  .footer-contact-link {
    padding: 10px 12px
  }

  .footer-join {
    min-height: 48px;
    font-size: 10px !important;
    letter-spacing: .08em
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }

  .back-top {
    right: 18px;
    bottom: 100px
  }
}

.tiktok-card {
  padding: 10px 10px 18px;
  max-width: 340px
}

.tiktok-card .tiktok-embed {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  border-radius: 10px;
  overflow: hidden
}

.tiktok-card .tiktok-embed section {
  padding: 20px !important
}

.video-fallback {
  display: block;
  text-align: center;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px
}

.local-video-card {
  padding: 14px;
  max-width: 340px;
}

.campaign-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 10px;
  background: #071c26;
}

.local-video-card small,
.local-video-card>b {
  display: block;
  margin-top: 12px;
}

.local-video-card small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.local-video-card>b {
  color: var(--ink);
  font-size: 14px;
}

.modal-open {
  overflow: hidden
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.video-modal.is-open {
  display: flex
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #031a25d9;
  backdrop-filter: blur(5px)
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  padding: 28px 18px 18px;
  box-shadow: 0 24px 80px #00131e99
}

.video-modal-panel .eyebrow {
  margin: 0 0 10px
}

.video-modal-panel h3 {
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: -.03em
}

.video-modal-close {
  position: absolute;
  right: -1px;
  top: -1px;
  border: 0;
  background: #fff;
  color: var(--blue);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 8px 25px #00131e33;
  cursor: pointer
}

.video-modal-panel .tiktok-embed {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  border-radius: 14px;
  overflow: hidden
}

.video-modal-panel .tiktok-embed section {
  padding: 20px !important;
  display: none !important
}

.video-modal-panel .tiktok-embed iframe {
  max-width: 100% !important
}

.tiktok-player {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
  border-radius: 14px;
  background: #101b22;
}

.proposal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.proposal-modal.is-open {
  display: flex !important;
  opacity: 1;
}

.proposal-category {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.proposal-detail {
  color: #58747d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.proposal-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.proposal-panel li {
  background: #eef7f8;
  color: var(--ink);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
}

.proposal-panel li::before {
  content: '✓';
  color: var(--blue);
  margin-right: 10px;
}

.proposal-open {
  border: 0;
  background: none;
  padding: 0;
  color: var(--blue);
  cursor: pointer;
  font: 700 10px 'DM Sans';
  text-transform: uppercase;
  margin-top: 8px;
}

.proposal-open:hover {
  color: var(--deep);
  text-decoration: underline;
}

.propuestas .proposal-open {
  color: #fff;
}

.propuestas .proposal-open:hover {
  color: var(--yellow);
}

.proposal-wide {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: 32px;
}

.proposal-wide-image {
  min-height: clamp(340px, 64vh, 620px);
  border-radius: 14px;
  background-position: center 62%;
  background-size: cover;
  background-color: var(--deep);
}

.proposal-panel {
  width: min(94vw, 1080px);
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 36px;
}

.proposal-panel h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.proposal-panel .proposal-detail {
  font-size: 16px;
}

.proposal-wide-copy {
  min-width: 0;
}

.proposal-block {
  border-top: 1px solid #dcebee;
  padding: 14px 0;
}

.proposal-block h4 {
  color: var(--deep);
  font: 700 16px / 1.2 'Space Grotesk';
  margin: 0 0 9px;
}

.proposal-block ul {
  gap: 6px;
}

.proposal-block li {
  background: none;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
}

.proposal-result {
  background: var(--deep);
  color: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-top: 14px;
}

.proposal-result strong {
  color: var(--yellow);
  display: block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proposal-result p {
  font-size: 12px;
  line-height: 1.45;
  margin-top: 7px;
}

@media(max-width:700px) {
  .proposal-panel {
    width: 94vw;
    padding: 24px 18px;
  }

  .proposal-wide {
    grid-template-columns: 1fr;
  }

  .proposal-wide-image {
    min-height: 250px;
    max-height: 300px;
  }
}

.vote-cta {
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

/* Se conserva en el HTML, pero queda desactivada visualmente por ahora. */
.listen {
  display: none !important;
}

.button,
.nav-cta,
.vote-secondary,
.footer-join {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.button:hover,
.nav-cta:hover,
.footer-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px #0329382e;
}

.hero-person {
  animation: candidateFloat 7s ease-in-out infinite;
}

.hero-sign {
  animation: softPulse 3.5s ease-in-out infinite;
}

.contact-status {
  display: none;
  margin-top: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-status.is-visible {
  display: block;
  animation: statusIn .35s ease both;
}

@keyframes candidateFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes softPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes statusIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Movimiento editorial para que la página cobre vida al entrar y al recorrerla. */
.hero-copy>* {
  opacity: 0;
  animation: heroIn .8s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-copy> :nth-child(1) {
  animation-delay: .12s;
}

.hero-copy> :nth-child(2) {
  animation-delay: .22s;
}

.hero-copy> :nth-child(3) {
  animation-delay: .34s;
}

.hero-copy> :nth-child(4) {
  animation-delay: .46s;
}

.hero-copy> :nth-child(5) {
  animation-delay: .58s;
}

.hero-glow {
  animation: glowDrift 9s ease-in-out infinite alternate;
}

.proposal,
.contact-links a,
.gallery-photo,
.contact-photo {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
    box-shadow .35s ease, border-color .35s ease;
}

.proposal:hover,
.contact-links a:hover,
.contact-photo:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px #073d512b;
}

.proposal:hover {
  border-color: #ffffff70;
}

.contact-photo:hover img {
  transform: scale(1.035);
}

.contact-photo img {
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowDrift {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3%, -2%, 0) scale(1.06);
  }
}

.vote-cta::after {
  content: 'R';
  position: absolute;
  right: 8%;
  top: -50px;
  color: #ffffff12;
  font: 700 18rem / 1 'Space Grotesk';
}

.vote-cta-copy,
.vote-cta-actions {
  position: relative;
  z-index: 1;
}

.vote-cta-copy {
  max-width: 650px;
}

.vote-cta h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.vote-cta-copy>p:not(.eyebrow) {
  max-width: 520px;
  color: #d3eef0;
  line-height: 1.55;
  margin-top: 24px;
}

.vote-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  min-width: 230px;
}

.vote-secondary {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.vote-secondary span {
  color: var(--yellow);
  font-size: 18px;
  margin-left: 8px;
}

@media(max-width:650px) {
  .vote-cta {
    display: block;
  }

  .vote-cta-actions {
    margin-top: 30px;
  }
}

.tiktok-gallery {
  background: #f4f8fa
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.tiktok-grid article {
  background: #fff;
  border: 1px solid #dcebee;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 12px 26px #12303d0d;
  transition: .25s
}

.tiktok-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px #12303d1c
}

.tiktok-grid .tiktok-embed {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  border-radius: 9px;
  overflow: hidden
}

.tiktok-grid .tiktok-embed section {
  padding: 18px !important
}

.tiktok-grid article>a {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 11px 5px 4px
}

@media(max-width:900px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .tiktok-grid {
    grid-template-columns: 1fr
  }

  .tiktok-grid article {
    max-width: 360px;
    margin: auto;
    width: 100%
  }
}

.tiktok-grid article {
  height: 430px;
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/754057988_4156898017944667_3626651952943753393_n.jpg')
}

.tiktok-grid article:nth-child(2) {
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/756344028_1052568427284111_6415414383106489220_n.jpg')
}

.tiktok-grid article:nth-child(3) {
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/755373477_1622334139242078_7712049078931541213_n.jpg')
}

.tiktok-grid article:nth-child(4) {
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/753320253_1382612896528857_7782466475221390756_n.jpg')
}

.tiktok-grid article:nth-child(5) {
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/752538760_1035808679346193_1332422841862386142_n.jpg')
}

.tiktok-grid article:nth-child(6) {
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/756590108_1034437059178207_4593054757537456171_n.jpg')
}

.tiktok-grid article:nth-child(7) {
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/754884511_27516317961369944_1401106218030850548_n.jpg')
}

.tiktok-grid article:nth-child(8) {
  background-image: linear-gradient(0deg, #032938e8 0%, #03293820 62%, #03293838 100%), url('img/fondo.jpg')
}

.tiktok-grid article:hover {
  transform: translateY(-7px);
  background-position: center 45%
}

.tiktok-grid .tiktok-embed {
  display: none
}

.tiktok-grid article:before {
  content: 'VIDEO OFICIAL';
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  background: #fff;
  color: var(--blue);
  border-radius: 30px;
  padding: 10px 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em
}

.tiktok-grid article:after {
  content: '▶';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fffffff0;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 8px 25px #001c2c44
}

.tiktok-grid article>a {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 24px;
  background: #fff;
  color: var(--blue);
  border-radius: 30px;
  padding: 12px 16px;
  margin: 0;
  font-size: 10px
}

.tiktok-grid article>a:after {
  content: '  →';
  font-size: 16px
}

@media(max-width:900px) {
  .tiktok-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:650px) {
  .tiktok-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tiktok-grid article {
    height: 360px
  }
}

@media(max-width:450px) {
  .tiktok-grid {
    grid-template-columns: 1fr
  }

  .tiktok-grid article {
    height: 470px;
    max-width: 330px
  }
}