:root {
  --teal: #005f7b;
  --teal-deep: #004b57;
  --cyan: #56fffc;
  --cyan-bright: #00ffff;
  --yellow: #ffcc00;
  --solar-zocalo: #ffd050;
  --yellow-gold: #d4af37;
  --white: #ffffff;
  --panel-eolico: #e6eef2;
  --panel-solar: #fdf6e3;
  --text-dark: #1a2a33;
  --text-muted: #333333;
  --modal-tint: rgba(255, 255, 255, 0.92);
  --zocalo-h: 26%;
  --fade-ms: 420ms;
}

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Gilroy", system-ui, sans-serif;
  font-weight: 500;
  color: var(--white);
  background: #000;
}

html {
  overflow: hidden;
}

body {
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

#app {
  width: 100%;
  min-height: 100vh;
  opacity: 1;
}

.stage {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.stage--home .content-panel {
  display: none;
}

.hero-block {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  transform: scale(1.1);
}

.hero-bg__svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--fade-ms) ease-in-out;
}

.stage--home .hero-bg__svg--home,
.stage--eolico .hero-bg__svg--eolico,
.stage--solar .hero-bg__svg--solar {
  opacity: 1;
}

.hero-layer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 24px 40px 0;
  pointer-events: none;
}

.hero-layer>* {
  pointer-events: auto;
}

.hero-title {
  text-align: center;
  margin: 0;
  font-weight: 500;
  font-size: 140px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-top: 2%;
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-sub {
  text-align: center;
  margin: 12px 0 0;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-mid {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  width: 100%;
  padding: 50px 0 120px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17%;
  flex-wrap: nowrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 141px;
  min-height: 55px;
  padding: 0 12px;
  border-radius: 20px;
  background: var(--teal-deep);
  color: var(--yellow);
  font-weight: 600;
  font-size: 22px;
  border: 2px solid rgba(86, 255, 252, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-btn:active {
  transform: scale(0.97);
}

.hero-btn img {
  width: 26px;
  height: auto;
  display: block;
}

.hero-logo {
  width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0.2vh 0.6vh rgba(0, 0, 0, 0.35));
}

.hero-corner {
  position: absolute;
  right: 130px;
  bottom: calc(var(--zocalo-h) + -25px);
  text-align: left;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.zocalo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--zocalo-h);
  min-height: 320px;
  padding: 0 0 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  pointer-events: none;
}

.zocalo__bg {
  position: absolute;
  inset: 0;
  background: url(../assets/svg/zocalo.svg) no-repeat 49.5% top;
  opacity: 0.65;
  pointer-events: none;
  background-size: cover;
  z-index: 0;
}

.zocalo>*:not(.zocalo__bg) {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.zocalo-inner {
  display: none;
  width: 100%;
  max-width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1%;
}

.stage--home .zocalo-inner--home,
.stage--eolico .zocalo-inner--eolico,
.stage--solar .zocalo-inner--solar {
  display: flex;
}

.stat-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.stat-deco__img {
  width: 251px;
  max-width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.stat-block {
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 4px;
}

.stat-block__value {
  font-weight: 700;
  font-size: 45px;
  line-height: 1.15;
  white-space: nowrap;
}

.stat-num,
.stat-currency,
.zocalo .stat-num,
.eolico-card__text .num,
.eolico-scale__label .num,
.eolico-scale__note .num,
.ha .num {
  font-weight: 500;
}

.stat-unit {
  font-weight: 400;
}

.stat-block__label {
  font-weight: 500;
  font-size: 18px;
  margin-top: 6px;
  opacity: 0.95;
  line-height: 1.2;
}

.zocalo-home__stats {
  display: flex;
  flex: 1 1 38%;
  max-width: 38%;
  /*padding-bottom: 20px;*/
  gap: 32px;
  justify-content: center;
}

.zocalo-home__stats--right {
  justify-content: flex-end;
}

.zocalo-center {
  flex: 0 1 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0.5vh;
  text-align: center;
  margin-bottom: -60px;
}

.zocalo-center__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8vw;
  width: 100%;
}

.zocalo-nav-btn {
  font-weight: 700;
  font-size: 25px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.zocalo-nav-btn--eolico {
  color: var(--cyan-bright);
}

.zocalo-nav-btn--solar {
  color: var(--yellow);
}

.zocalo-nav-btn.is-active {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.zocalo-nav-btn:not(.is-active):hover {
  opacity: 0.88;
}

.zocalo-nav-btn:active {
  transform: scale(0.96);
}

.zocalo-center__icon {
  width: 137px;
  height: 137px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 50%;
}

.zocalo-center__icon-btn {
  cursor: pointer;
}

.zocalo-center__lottie {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease-in-out;
}

.stage--home .zocalo-center__lottie--home {
  opacity: 1;
}

.stage--eolico .zocalo-center__lottie--eolico {
  opacity: 1;
}

.stage--solar .zocalo-center__lottie--solar {
  opacity: 1;
}

.zocalo-slogan {
  margin-top: 20px;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.3;
}

.zocalo-slogan .s-cyan {
  color: var(--cyan-bright);
}

.zocalo-slogan .s-yellow {
  color: var(--yellow);
}

.stage--home .zocalo-slogan .s-cyan {
  color: var(--cyan-bright);
}

.stage--home .zocalo-slogan .s-yellow {
  color: var(--yellow);
}

.zocalo-side {
  flex: 1 1 30%;
  max-width: 32%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6px;
}

.zocalo-side--stack {
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.zocalo-side--stack.zocalo-side--right {
  align-items: center;
}

.zocalo-side--stack .stat-block {
  width: 100%;
  max-width: 280px;
  max-height: 115px;
}

.zocalo-side--stack.zocalo-side--right .stat-block {
  text-align: center;
}

.zocalo-side--stack.zocalo-side--right .stat-block,
.zocalo-solar-grid--right .stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zocalo-side--stack.zocalo-side--right .stat-deco,
.zocalo-solar-grid--right .stat-deco {
  justify-content: center;
}

.zocalo-inner--eolico .stat-block--zocalo-mini .stat-block__value,
.zocalo-inner--eolico .stat-block--zocalo-mini .stat-block__label {
  color: var(--cyan-bright);
}

.zocalo-inner--eolico .stat-block--zocalo-mini .stat-unit {
  font-weight: 500;
  color: inherit;
}

.zocalo-inner--solar .stat-block--solar-zocalo .stat-block__value,
.zocalo-inner--solar .stat-block--solar-zocalo .stat-block__label {
  color: var(--solar-zocalo);
}

.zocalo-inner--solar .stat-block--solar-zocalo .stat-unit {
  font-weight: 300;
  color: var(--solar-zocalo);
}

.zocalo-inner--solar .zocalo-nav-btn--solar {
  color: var(--solar-zocalo);
}

.stat-block--zocalo-mini .stat-block__value {
  font-size: 45px;
}

.stat-block__label--wrap {
  white-space: normal;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.zocalo-side--stack.zocalo-side--right .stat-block__label--wrap {
  margin-left: auto;
  margin-right: auto;
}

/*
.zocalo-solar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  width: 100%;
  max-width: 36%;
  align-items: end;
}
*/
.zocalo-solar-grid {
  display: flex;
  flex: 1 1 38%;
  max-width: 38%;
  gap: 32px;
}

.zocalo-solar-grid .stat-block {
  text-align: center;
  min-width: 0;
  max-height: 115px;
}

.zocalo-solar-grid--right {
  text-align: center;
  justify-items: center;
}

.zocalo-solar-grid--right .stat-block {
  text-align: center;

}

.content-panel {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  padding-bottom: 0px;
  color: var(--text-dark);
  overflow: visible;
}

.content-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #d2dfe8;
}

.stage--solar .content-panel::before {
  background: transparent;
}

.stage--eolico .content-panel,
.stage--solar .content-panel {
  display: block;
}

.content-panel__body {
  display: none;
  position: relative;
  z-index: 1;
}

.stage--eolico .content-panel__body--eolico,
.stage--solar .content-panel__body--solar {
  display: block;
}

.content-panel__body--eolico {
  height: 79vh;
  padding: 2.8vh 3.6vw 2vh;
  border-bottom: 2px solid rgba(0, 95, 123, 0.9);
  overflow: hidden;
  margin-bottom: 2%;
}

.eolico-layout {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.eolico-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8vw;
  align-items: start;
  min-height: 45%;
  margin-top: 30px;
}

.eolico-olimpica,
.eolico-velocidad {
  position: relative;
  height: 30.5vh;
  max-height: 30.5vh;
}

.eolico-olimpica__img {
  width: 31.5vw;
  height: 30.5vh;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.eolico-velocidad__lottie {
  width: 31.5vw;
  height: 30.5vh;
  min-height: 40.5vh;
  margin: 0 -5%;
}

.eolico-copy {
  position: absolute;
  color: var(--text-dark);
  max-width: 16.5vw;
}

.eolico-copy__value {
  color: #24a5e9;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.eolico-copy__title {
  margin-top: 0.5vh;
  font-size: 31px;
  font-weight: 400;
}

.eolico-copy__desc {
  margin-top: 0.4vh;
  font-size: 25px;
  line-height: 1.22;
}

.eolico-copy--olimpica-left {
  top: 30%;
  left: -30%;
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: flex-end;
}

.eolico-copy--olimpica-right {
  top: 0%;
  right: 0%;
}

.eolico-copy--velocidad {
  top: 85%;
  right: 0%;
}

.eolico-bottom-row {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21%;
  gap: 0.9vw;
  align-items: end;
  min-height: 0;
}

.eolico-molinos {
  position: relative;
  height: 100%;
}

.eolico-molinos__lottie {
  position: absolute;
  inset: 0 0 0 0;
  display: block;
  width: 100%;
  transform: translate(-25.2%, 5%) scale(1.6);
  transform-origin: center bottom;
}

.eolico-tag {
  position: absolute;
  color: #131c22;
  min-width: 7vw;
}

.eolico-tag__value {
  font-size: 52px;
  color: #24a5e9;
  font-weight: 600;
  line-height: 1;
}

.eolico-tag__name {
  margin-top: 0.3vh;
  font-size: 31px;
  font-weight: 500;
}

.eolico-tag__desc,
.eolico-tag__note {
  margin-top: 0.3vh;
  font-size: 27px;
  line-height: 1.22;
  font-weight: 500;
}

.eolico-tag__note {
  color: #005f7b;
}

.eolico-tag--cocos {
  left: 40%;
  bottom: 85%;
}



.eolico-tag--esperanza {
  left: 3%;
  bottom: 149%;
  max-width: 24vw;
}

.eolico-buildings {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5vw;
  height: 72%;
  padding-bottom: 00;
  margin-bottom: -22px;
  transform-origin: center bottom;
  transform: translate(-51%, 0%) scale(1.8);
}

.eolico-building {
  position: relative;
  text-align: center;
  color: #131c22;
  min-width: 11.8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eolico-building img {
  display: block;
  width: auto;
  height: auto;
  max-width: 11.8vw;
  order: 2;
}

.eolico-building--novo img {
  max-height: 11.8vh;
}

.eolico-building--santiago img {
  max-height: 11.2vh;
}

.eolico-building__name {
  margin-top: 0;
  margin-bottom: 0.15vh;
  font-size: 15px;
  font-weight: 400;
  order: 0;
}

.eolico-building--santiago {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.eolico-building.eolico-building--novo>div.eolico-building__name {
  margin-left: 10%;
}

.eolico-building.eolico-building--novo>div.eolico-building__value {
  margin-left: 10%
}

.eolico-building__value {
  margin-top: 0;
  margin-bottom: 0.35vh;
  font-size: 15px;
  font-weight: 400;
  order: 1;
}

.eolico-footnote {
  position: absolute;
  left: 15%;
  bottom: 0%;
  width: 15%;
  margin: 0;
  font-size: 27px;
  color: #005f7b;
  font-weight: 600;
}

.content-panel__body--solar {
  height: 100vh;
  padding: 2.6vh 3.6vw 2.6vh;
  overflow: hidden;
  background: #fffaed;
  min-height: 900px;
}

.solar-layout {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 11vh;
}

.solar-top-row {
  position: relative;
  min-height: 41%;
  display: grid;
  grid-template-columns: 52% 48%;
  grid-template-rows: auto 1fr;
  column-gap: 0.4vw;
  align-items: start;
}

.solar-asset {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.solar-asset.solar-asset--left {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.solar-asset.solar-asset--right {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0.9vh;
  margin-left: 0;
}


.solar-asset>.js-inline-svg {
  width: 84%;
}

.solar-asset>.js-inline-svg svg,
.solar-asset img {
  display: block;
  width: 93%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin-left: 50px;
  margin-top: 35px;
}

.solar-asset--left>.js-inline-svg,
.solar-asset--left img {
  width: 89%;
  margin-top: 0.8vh;
}

.solar-asset--right>.js-inline-svg,
.solar-asset--right img {
  width: 88%;
  margin-top: 5.6vh;
}

.solar-center-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  margin-top: 1.8vh;
  margin-left: -5.8vw;
  text-align: left;
  color: #1d2328;
  max-width: 23vw;
  z-index: 2;
}

.solar-center-copy__value {
  display: flex;
  align-items: baseline;
  gap: 0.16em;
  font-size: clamp(46px, 2.95vw, 60px);
  font-weight: 600;
  line-height: 1;
  color: #005f7b;
}

.solar-center-copy__title {
  margin-top: 0.35vh;
  font-size: clamp(20px, 1.4vw, 28px);
  font-weight: 600;
  line-height: 1.12;
}

.solar-center-copy__desc {
  margin-top: 0.5vh;
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.18;
}

.solar-asset__caption {
  margin-top: 0.75vh;
  text-align: center;
  font-size: clamp(14px, 0.9vw, 18px);
  line-height: 1.2;
  color: #1d2328;
}

.solar-bottom-row {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4vw;
  align-items: end;
  margin-top: 22px;
}

.solar-module {
  text-align: center;
  color: #1d2328;
  height: 100%;
}

.solar-module h3 {
  margin: 0;
  font-size: clamp(26px, 1.6vw, 32px);
  font-weight: 600;
  color: #005f7b;
  line-height: 1.08;
}

.solar-module.solar-module--right h3 {
  color: #005f7b;
}

.solar-module__top-size {
  margin-top: 0.7vh;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}

.solar-module__frame {
  position: relative;
  width: 70%;
  margin: 1.55vh auto 0;
}

.solar-module__frame>.js-inline-svg svg,
.solar-module__frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.solar-module__side-size {
  position: absolute;
  left: -3.15vw;
  top: 48%;
  transform: translateY(-50%);
  font-size: 21px;
  font-weight: 500;
}

.solar-module__meta {
  margin: 0.95vh 0 0;
  font-size: clamp(19px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.35;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw;
  background: var(--modal-tint);
  backdrop-filter: blur(4px);
}

.modal.is-open {
  display: flex;
}

.modal__close {
  position: absolute;
  top: 2vh;
  right: 2.5vw;
  width: clamp(40px, 5vw, 56px);
  height: clamp(40px, 5vw, 56px);
  font-size: clamp(20px, 3vw, 35px);
  line-height: 1;
  color: #7ec8d4;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}

.modal__close:hover {
  background: rgba(0, 95, 123, 0.08);
  color: var(--teal);
}

.gallery {
  width: 100%;
  max-width: 96%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
}

.gallery__main-wrap {
  position: relative;
  width: 100%;
  max-width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

.gallery__arrow {
  flex: 0 0 clamp(44px, 6vw, 72px);
  height: clamp(44px, 10vh, 100px);
  color: #7ec8d4;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5vw;
  transition: background 0.15s ease, color 0.15s ease;
}

.gallery__arrow:hover {
  background: rgba(0, 95, 123, 0.1);
  color: var(--teal);
}

.gallery__img {
  flex: 1 1 auto;
  max-height: 62vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.3vw;
  box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.12);
}

.gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2vw;
}

.gallery__thumb {
  width: clamp(56px, 9vw, 100px);
  height: clamp(42px, 6.8vw, 68px);
  object-fit: cover;
  border-radius: 0.25vw;
  border: 0.25vw solid transparent;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.gallery__thumb:hover,
.gallery__thumb.is-current {
  opacity: 1;
  border-color: var(--teal);
}

.modal--360 .modal__frame-wrap {
  width: 100%;
  max-width: 92%;
  height: 78vh;
  margin-top: 4vh;
  background: #111;
  border-radius: 0.4vw;
  overflow: hidden;
  box-shadow: 0 0.8vh 3vh rgba(0, 0, 0, 0.25);
}

.modal--360 iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 420ms;
  animation-timing-function: ease-in-out;
}



#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--home>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span>svg>g>g:nth-child(2),
#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--home>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span.zocalo-center__lottie.zocalo-center__lottie--home.js-lottie-layer>svg>g>g:nth-child(3),
#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--home>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span.zocalo-center__lottie.zocalo-center__lottie--home.js-lottie-layer>svg>g>g:nth-child(4) {
  display: none !important;
}

#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--eolico>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span>svg>g>g:nth-child(2),
#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--eolico>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span.zocalo-center__lottie.zocalo-center__lottie--eolico.js-lottie-layer>svg>g>g:nth-child(3),
#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--eolico>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span.zocalo-center__lottie.zocalo-center__lottie--eolico.js-lottie-layer>svg>g>g:nth-child(4) {
  display: none !important;
}


#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--solar>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span>svg>g>g:nth-child(2),
#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--solar>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span.zocalo-center__lottie.zocalo-center__lottie--solar.js-lottie-layer>svg>g>g:nth-child(3),
#app>section.hero-block>div.zocalo>div.zocalo-inner.zocalo-inner--solar>div.zocalo-center>div>button.zocalo-center__icon.zocalo-center__icon-btn>span.zocalo-center__lottie.zocalo-center__lottie--solar.js-lottie-layer>svg>g>g:nth-child(4) {
  display: none !important;
}

#app>section.content-panel>div.content-panel__body.content-panel__body--eolico>div>div.eolico-top-row>div.eolico-velocidad>div.eolico-velocidad__lottie.js-lottie-loop>svg>g>g:nth-child(14),
#app>section.content-panel>div.content-panel__body.content-panel__body--eolico>div>div.eolico-top-row>div.eolico-velocidad>div.eolico-velocidad__lottie.js-lottie-loop>svg>g>g:nth-child(15),
#app>section.content-panel>div.content-panel__body.content-panel__body--eolico>div>div.eolico-top-row>div.eolico-velocidad>div.eolico-velocidad__lottie.js-lottie-loop>svg>g>g:nth-child(16) {
  display: none !important;
}

.caret-anim {
  display: inline-block;
  animation: caretBounce 1.6s ease-in-out infinite;
}

.caret-anim.caret-desktop {
  display: inline-block;
}

@keyframes caretBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.zocalo-inner--home .zocalo-caret-mobile {
  display: none;
}

.zocalo-caret-mobile {
  display: none;
}

.d-mobile {
  display: none;
}

/*mobile*/

@media screen and (max-width: 1750px) {

  .hero-title {
    font-size: 115px;
  }



}

@media screen and (max-width: 1640px) {

  .hero-corner {
    font-size: 18px;
    bottom: calc(var(--zocalo-h) + -30px);
    right: 80px;
  }


  .zocalo {
    min-height: 290px;
  }

  .zocalo .zocalo-home__stats {
    max-width: 30%;
  }

  .zocalo-solar-grid {
    max-width: 30%;
  }

  .zocalo-inner {
    justify-content: space-evenly;
  }





  .solar-center-copy {
    margin-left: -2.5vw;
    max-width: 26vw;
  }

  .solar-center-copy__value {
    font-size: 42px;
  }

  .solar-center-copy__title {
    font-size: 19px;
  }

  .solar-center-copy__desc {
    font-size: 16px;
  }



  .solar-module__side-size {
    left: -5.15vw;
  }

  .eolico-footnote {
    font-size: 18px;
  }

  .eolico-tag__desc,
  .eolico-copy__desc,
  .eolico-tag__note {
    font-size: 20px;
  }

  .eolico-tag__value,
  .eolico-copy__value {
    font-size: 32px;
  }

  .eolico-tag__name,
  .eolico-copy__title {
    font-size: 25px;
  }

  .eolico-building__name,
  .eolico-building__value {
    font-size: 12px;
  }

  .eolico-velocidad__lottie {
    min-height: 34.5vh;
    margin: 0 -5%;
  }

}

@media screen and (max-width: 1465px) {

  .hero-title {
    font-size: 100px;
  }


  .stat-block__value {
    font-size: 28px;
  }

  .stat-block--zocalo-mini .stat-block__value {
    font-size: 28px;
  }

  .stat-block__label {
    font-size: 13px;
  }

  .zocalo {
    min-height: 260px;
    padding: 0;
  }

  .zocalo-slogan {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .stage--solar .zocalo-inner--solar .zocalo-slogan {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .zocalo-solar-grid--right .stat-block {
    width: 100%;
  }

  .zocalo-solar-grid {
    max-width: 32%;
  }

  .zocalo-center__icon {
    width: 100px;
    height: 100px;
  }



  .eolico-olimpica__img {
    height: 26.5vh;
  }

  .eolico-tag__desc,
  .eolico-copy__desc,
  .eolico-tag__note {
    font-size: 19px;
  }

  /*.hero-bg {
    transform: scale(1.2);
  }
*/
  .eolico-tag__value,
  .eolico-copy__value {
    font-size: 25px;
  }

  .hero-corner {
    right: 7%;
    bottom: calc(var(--zocalo-h) + 0px);
  }

}

@media screen and (max-width: 1370px) {
  .hero-bg {
    transform: scale(1.2);
}
  .hero-corner {
    bottom: calc(var(--zocalo-h) + 5%);
  }
}

@media screen and (max-width: 1330px) {

  .stat-block__label {
    font-size: 12px;
  }

  .stat-block__value {
    font-size: 26px;
  }

  .stat-block--zocalo-mini .stat-block__value {
    font-size: 26px;
  }


}

@media screen and (max-width: 1300px) {

  .hero-title {
    font-size: 90px;
  }

  .zocalo {
    min-height: 210px;
  }

  .zocalo-center__icon {
    width: 100px;
    height: 110px;
  }

  .zocalo-nav-btn {
    font-size: 18px;
  }


  .eolico-building__value,
  .eolico-building__name,
  .eolico-building__value .stat-unit {
    font-size: 10px;
  }

  .eolico-tag__name,
  .eolico-copy__title {
    font-size: 18px;
  }

  .eolico-copy--olimpica-left {
    top: 15%;
  }

  .eolico-tag__desc,
  .eolico-copy__desc,
  .eolico-tag__note {
    font-size: 16px;
  }




}
@media screen and (max-width: 1280px) {
    .hero-corner {
        bottom: calc(var(--zocalo-h) + -1%);
    }
}

@media screen and (max-width: 1230px) {

  .hero-sub {
    font-size: 35px;
  }

  .zocalo-slogan {
    font-size: 22px;
    padding-bottom: 20px;
  }

  .stat-block__value {
    font-size: 24px;
  }

  .stat-block--zocalo-mini .stat-block__value {
    font-size: 24px;
  }

  .eolico-copy__desc {
    font-size: 13px;
  }

  .eolico-footnote {
    font-size: 14px;
  }
}

@media screen and (max-width: 1170px) {

  .hero-title {
    font-size: 80px;
  }

  .stat-block__label {
    font-size: 10px;
  }

  .hero-logo {
    width: 130px;
  }

  .hero-btn {
    min-width: 130px;
    min-height: 50px;
    font-size: 23px;
  }

  .hero-btn img {
    width: 20px;
  }

  .zocalo .zocalo-home__stats {
    max-width: 32%;
  }

  .zocalo-center__icon {
    width: 90px;
    height: 100px;
  }

  .stat-block__value {
    font-size: 20px;
  }

  .stat-block--zocalo-mini .stat-block__value {
    font-size: 20px;
  }

  .zocalo-slogan {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .solar-module__side-size {
    left: -7vw;
  }

  .eolico-velocidad__lottie {
    height: 25.5vh;
    min-height: 35.5vh;
  }

}

@media screen and (max-width: 1070px) {

  .hero-sub {
    font-size: 30px;
  }

  .stat-block__label {
    font-size: 9px;
  }
}

@media screen and (max-width: 1030px) {

  .hero-title {
    font-size: 75px;
  }
}

@media screen and (max-width: 1024px) {

  .hero-corner {
    right: 65px;
    bottom: calc(var(--zocalo-h) + 0px);
  }

}

@media screen and (max-width: 1023px) {

  .hero-corner {
    display: none;
  }

  .hero-btn span {
    display: none;
  }
}


.cls-4-hectarias {
  fill: #96bc3d !important;
}

.cls-1 {
  fill: #ffd050 !important;
}

@media screen and (max-width: 920px) {
  .hero-block {
    height: 100%;
    min-height: auto;
  }


  /*.stage--eolico .hero-block,
  .stage--solar .hero-block {
    min-height: 135vh;
  }
*/
  .hero-title {
    font-size: 50px;
  }

  .hero-sub {
    font-size: 20px;
  }

  .hero-mid {
    padding: 50px 0 190px;
  }




  .hero-btn {
    flex: 0 0 auto;
    min-width: 43px;
    min-height: 50px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
  }


  .hero-btn:first-of-type img {
    width: 30px;
  }

  .hero-btn img {
    width: 25px;
  }


  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "btn1 btn2";
    justify-items: center;
    align-items: center;
    row-gap: 50px;
    column-gap: 100%;
    width: 100%;
  }

  .hero-logo {
    grid-area: logo;
    width: 100px;
    margin: 0 auto;
    justify-self: center;
  }

  .hero-btn:first-of-type {
    grid-area: btn1;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    justify-self: start;
  }

  .hero-btn:last-of-type {
    grid-area: btn2;
    justify-self: end;
  }

  .zocalo-inner--eolico .stat-block .stat-deco__img,
  .zocalo-inner--solar .stat-block .stat-deco__img {
    display: none
  }

  .zocalo {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 30px 0;
    justify-content: flex-start;
  }

  .zocalo__bg {
    background-size: cover !important;
    height: 100%;
    background: url(../assets/svg/zocalo.svg) no-repeat 49.8% top;
  }



  .zocalo-inner {
    flex-direction: column;
    align-items: center;
  }

  .zocalo-center {
    order: -1;
    margin-bottom: 0;
    padding-bottom: 0;
    flex: 100%;
  }

  .zocalo-inner--home,
  .zocalo-inner--eolico,
  .zocalo-inner--solar {
    min-height: auto;
  }

  .zocalo-solar-grid {
    max-width: 100%;
  }

  .zocalo-solar-grid .stat-block {
    flex: auto;
  }

  .zocalo-home__stats,
  .zocalo-solar-grid {
    order: 2;
      padding-bottom: 20px;
  }

  .zocalo-home__stats--right,
  .zocalo-solar-grid--right {
    order: 3;
  }

  .zocalo-home__stats,
  .zocalo-home__stats--right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .stat-block__value {
    font-size: 35px;
  }

  .stat-unit {
    font-size: 27px;
  }

  .stat-block__label {
    font-size: 17px;
  }

  .zocalo-nav-btn {
    font-size: 19px;
  }



  .zocalo-caret-mobile {
    order: 4;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .zocalo-caret-mobile .caret-anim {
    display: inline-block;
  }

  .caret-anim.caret-desktop {
    display: none;
  }

  .stat-block--zocalo-mini .stat-block__value {
    font-size: 39px;
  }

  .stat-block__label {
    font-size: 14px;
  }

  .zocalo-inner--eolico .stat-block--zocalo-mini .stat-unit {
    font-size: 14px;
  }

  .zocalo-inner--eolico .zocalo-side--right .stat-block .stat-unit {
    font-size: 31px;
  }

  .solar-module {
    width: 100%;
  }

  .solar-center-copy__value {
    font-size: 36px;
  }

  .solar-top-row,
  .solar-bottom-row {
    min-height: auto;
    display: flex;
    flex-direction: column;

    align-items: center;
  }

  .content-panel__body--solar {
    height: 100%;
    padding: 2.6vh 3.6vw 15vh;
    background: #fffaed;
    min-height: auto;
    overflow: auto;
  }

  .solar-module__side-size {
    left: -9vw;
  }

  .solar-layout {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .solar-asset--left>.js-inline-svg,
  .solar-asset--left img {
    width: 100%;
  }

  .solar-asset>.js-inline-svg svg,
  .solar-asset img {
    width: 100%;
    margin-left: 0;
  }

  .solar-center-copy {
    margin-left: 30px;
    max-width: 55%;
    order: -1;
  }

  .solar-module h3 {
    font-size: 15px;
  }

  .solar-module__meta {
    font-size: 12.5px;
  }

  .solar-module__side-size,
  .solar-module__top-size {
    font-size: 11px;
  }

  .solar-bottom-row {
    gap: 15vw;
  }

  /*Eolico*/
  .stage--eolico .zocalo-inner--eolico {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content-panel__body--eolico {
    height: 100%;
    overflow: visible;
    margin-bottom: 2%;
  }

  .eolico-top-row,
  .eolico-bottom-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }


  .eolico-olimpica {
    display: none;
  }

  .eolico-velocidad {
    width: 100%;
    order: -1;
  }

  .eolico-velocidad__lottie {
    width: 30.5vh;
    margin: 0 15%;
    min-height: 50.5vh;
  }

  .eolico-tag__name,
  .eolico-copy__title {
    font-size: 15px;
  }

  .eolico-copy__desc {
    font-size: 12px;
    text-align: end;
  }

  .eolico-copy--velocidad .eolico-copy__desc,
  .eolico-tag--esperanza {
    text-align: left;
  }

  .eolico-tag__desc {
    font-size: 12px;
    text-align: left;
  }

  .eolico-tag__note,
  .eolico-tag__note .num,
  .eolico-tag__note .stat-unit {
    font-size: 13px;
  }

  .eolico-copy--olimpica-right {
    top: 0%;
    right: 0%;
    left: 0;
    max-width: 35vw;
  }

  /* layout general */
  .eolico-layout {
    display: flex;
    flex-direction: column;
    gap: 360px;
  }

  /* TOP */
  .eolico-top-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .eolico-velocidad {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* reset desktop absolutos */
  .eolico-copy,
  .eolico-tag {
    position: static !important;
    inset: auto !important;
    max-width: 100%;
    text-align: center;
    margin: 0;
  }

  /* orden mobile */
  .eolico-copy--olimpica-right {
    order: 1;
  }

  /* 20,867 */
  .eolico-velocidad__lottie {
    order: 2;
  }

  /* círculo */
  .eolico-copy--olimpica-left {
    order: 3;
  }

  /* 80.1 */
  .eolico-copy--velocidad {
    order: 4;
  }

  /* +300 */
  .eolico-copy--olimpica-right,
  .eolico-copy--olimpica-left,
  .eolico-tag--esperanza {
    align-self: flex-start;
    text-align: left;
    padding-left: 20px;
  }

  .eolico-tag--esperanza {
    padding-left: 40px;
  }

  .eolico-copy--velocidad,
  .eolico-tag--cocos {
    align-self: flex-end;
    text-align: left;
    padding-right: 20px;
    width: 50%;
  }

  .eolico-copy--velocidad,
  .eolico-copy--olimpica-left {
    position: relative !important;
  }

  .eolico-copy--velocidad {
    padding-top: 65px;
  }

  .eolico-copy--olimpica-left img {
    width: 220%;
    position: absolute;
    bottom: -35%;
    left: 20px;
  }

  .eolico-copy--velocidad img {
    width: 35%;
    position: absolute;
    top: 67px;
    left: -38%;
  }

  /* BOTTOM */
  .eolico-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 140px;
  }

  .eolico-molinos {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110%;
    height: 500px;
    border-bottom: 2px solid rgba(0, 95, 123, 0.9);
    padding: 70px 0 0;
  }

  .eolico-tag--esperanza {
    order: 1;
    max-width: 55%;
  }

  .eolico-molinos__lottie {
    order: 2;
  }

  .eolico-tag--cocos {
    order: 3;
    max-width: 30%;
  }

  .eolico-footnote {
    order: 4;
    font-size: 10px;
    left: 44%;
    bottom: 16%;
    width: 27%;
  }

  .content-panel__body--eolico {
    border-bottom: none;
  }

  .eolico-buildings {
    order: 5;
    display: flex;
    justify-content: center;
    height: 80px;
    gap: 25px;
    width: 0%;
    margin-top: 0px;

  }

  /* tamaños */
  .eolico-velocidad__lottie {
    width: 100%;
    max-width: 260px;
    min-height: auto;
    margin: 20px auto 110px;
  }

  .eolico-molinos__lottie {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    transform: translate(-1.3%, 23%) scale(1.1);
  }

  .eolico-building img {
    max-height: 60px;
    width: auto;
  }

  .eolico-building--novo img {
    max-width: 100%;
    max-height: 75px;
  }

  .eolico-building {
    min-width: 30vw;
  }

  .eolico-building--santiago {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 65px;
  }

  .d-mobile {
    display: block;
  }

  .d-desktop {
    display: none;
  }



  /* backgrounds*/
  
.hero-bg__svg--solar {
        transform: translate(-33%, -18%) scale(2.95);
}
.hero-bg__svg--eolico{
  transform: translate(10%, -13%) scale(1.5);
}
.hero-bg__svg--home{
      transform: translate(5%, -20%) scale(1.35);
}
}

@media screen and (max-width: 670px) {
  .hero-mid {
    padding: 50px 0 140px;
  }

}

@media screen and (max-width: 450px) {

  .stage--eolico .zocalo-inner--eolico {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .zocalo-inner--eolico .zocalo-center {
    flex:100%;
  } 

  .zocalo-side--stack,
  .zocalo-side--stack.zocalo-side--right {
    align-items: center;
    order: 2;
  }

    /* backgrounds*/
  
.hero-bg__svg--solar {
    transform: translate(-33%, -8%) scale(4.95);
}
}