@font-face {
  font-family: 'Apercu';
  src: url('../fonts/Apercu-Light.woff2') format('woff2'),
      url('../fonts/Apercu-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('../fonts/Apercu-Bold.woff2') format('woff2'),
      url('../fonts/Apercu-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
      url('../fonts/Gotham-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.woff2') format('woff2'),
      url('../fonts/Gotham-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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



/* ROOT VARS */
:root {
--font-default: "Apercu";
--font-primary: "Gotham";

--color-default: #1a1f24;

--color-primary: #3b4c44;
--color-primary-dark: #283830;
--color-secondary: #272727;
--color-tertiary: #E5CDA1;

--color-white: #FFFFFF;
--color-light: #F1ECDF;
--color-dark: #1a1f24;

--regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;

scroll-behavior: smooth;
}












/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
  font-weight: 100;
  text-transform: uppercase;
}










/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader .prel-1 {
  width: 320px;
}
#preloader .prel-2 {
  width: 100px;
}





/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: visible;
  opacity: 1;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-tertiary);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
  animation: pulse 1s infinite;
  display: none!important;
}

.back-to-top i {
  font-size: 24px;
  color: var(--color-primary);
  line-height: 0;
}

.back-to-top:hover {
  box-shadow: var(--regular-shadow);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  80% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  80% {
    -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--color-secondary);
}


#header .logo img {
  max-height: 30px;
}






































/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: var(--color-tertiary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--color-tertiary);
  z-index: 999;
}

@media (max-width: 4000px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar ul {
  list-style: none !important;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--color-primary);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: relative;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 20px;
  color: var(--color-white);
  font-family: var(--font-default);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-tertiary);
}

#deco-menu {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100vh;
}

















/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 79vh;
  height: 100vh;
  background-size: cover; /* Puedes probar con contain también */
  background-position: center;
  position: relative;
  background-attachment: scroll; /* Cambiado de fixed a scroll */
}

#hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: rgb(255,255,255);
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(37,37,37,1) 100%);
}

#hero .container {
  padding-top: 72px;
  position: relative;
  z-index: 2;
}

#hero .video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#hero .video:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

#hero .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 42px;
  font-weight: 100;
  line-height: 56px;
  max-width: 800px;
  color: var(--color-tertiary);
  text-shadow: 1px 1px 10px rgba(0,0,0,.3);
}
@media (max-width: 991px) {
  #hero h1 {
  margin: 50px auto 10px auto;
  }
}
#hero h2 {
  font-family: var(--font-default);
  color: var(--color-light);
  margin-bottom: 50px;
  font-size: 18px;
  text-shadow: 1px 1px 10px rgba(0,0,0,.3);
  background: rgba(40, 56, 48, 0.6);
align-items: center;
justify-content: center;
width: auto;
max-width: 500px;
padding: 0.5rem 1rem;
margin: 0 auto 50px auto;
}

.btn-get-started {
  font-family: var(--font-default);
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 3px;
  display: inline-block;
  padding: 15px 30px 15px 30px;
  border-radius: .5rem;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: var(--color-white);
  background: var(--color-primary);
  text-transform: uppercase;
}

.btn-get-started:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

@media (max-width: 991px) {
  #hero {
    /* height: 100vh; */
    text-align: center;
  }
}

@media (max-width: 768px) {
  #hero .container {
    padding: 0 1.75rem;
  }
  #hero h1 {
    font-size: 25px;
    line-height: 1.3;
  }

  #hero h2 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

/* Media query específica para iOS */
@supports (-webkit-touch-callout: none) {
  #hero {
    background-size: cover;
  }
}












/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}



















/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--color-light);
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-primary-dark);
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background-color: var(--color-tertiary);
}

#footer .footer-top {
  padding: 60px 0 60px 0;
  background: var(--color-primary);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-dark);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-default);
  color: var(--color-default);
}

#footer .footer-top h4 {
  font-size: 9px;
  font-weight: bold;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--color-default);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-primary-dark);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: .5rem;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--color-primary-dark);
  color: var(--color-primary-dark);
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--color-primary-dark);
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
  .breadcrumbs {
    margin-top: 60px;
  }
}


.logo-footer {
  height: 100px;
  width: auto;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 998; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

.modal .btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  margin: 0 0 0 -50px;
  width: 100px;
  background: var(--color-primary-dark);
  color: #fff;
  display: flex;
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: auto;
  max-height: 85vh;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.modal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.modal .close:hover,
.modal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}




/*MY STYLES*/
#proyectos {
  background-color: var(--color-secondary);
  height: 720px;
  display: flex;
  align-items: center;
  color: #FFF;
  position: relative;
}
#proyectos .tercera {
  width: 400px;
  margin-bottom: 25px;
}
#proyectos h4,
#proyectos h5 {
  color: var(--color-tertiary);
}
#proyectos .deco-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
}

#map-1 {
  position: relative;
}
#map-1 .container-hotspots{
  position: relative;
}
#map-1 .container {
  display: none;
}
#map-1 .container .overmap-content{
  background-color: var(--color-light);
  padding:  25px 0;
  box-shadow: var(--regular-shadow);
}
#map-1 .container .overmap-content .sqare{
  padding: 75px 25px 25px 25px;
  border: 1px solid var(--color-primary)
}
#map-1 .container .overmap-content p {
  color: var(--color-default);
  margin-bottom: 10px;
}
#map-1 .tooltip-btn {
  position: absolute;
  z-index: 2;
}







#map-2 {
  position: relative;
}

#titulo-parque-campeones {
  position: absolute;
  top: 60px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
#map-2 .container-hotspots{
  position: relative;
}
#map-2 .container {
  display: none;
}
#map-2 .container .overmap-content{
  background-color: var(--color-light);
  padding:  25px 0;
  box-shadow: var(--regular-shadow);
}
#map-2 .container .overmap-content .sqare{
  padding: 75px 25px 25px 25px;
  border: 1px solid var(--color-primary)
}
#map-2 .container .overmap-content p {
  color: var(--color-default);
  margin-bottom: 10px;
}


#map-2 .tooltip-btn {
  position: absolute;
  z-index: 2;
}







#ubicacion {
  background-color: var(--color-primary);
  color: #FFF;
  height: 720px;
  display: flex;
  align-items: center;
  position: relative;
}
#ubicacion h1 {
  color: var(--color-tertiary);
  margin-bottom: 25px;
}
#ubicacion .ubicacion-map {
  width: auto;
  height: 550px;
}
#ubicacion .deco-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}
#ubicacion .deco-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  rotate: 180deg;
}


#masterplan {
  background-color: var(--color-primary);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

  padding-top: 100px;
  padding-bottom: 100px;
}
#masterplan::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(62,75,68, 0.5);
}

#jugadores {
  background-color: var(--color-secondary);
  position: relative;
  color: var(--color-tertiary);
}
#jugadores .deco-titulo {
  height: 100px;
  width: auto;
}
#jugadores .jugadores-item img{
  width: 80px;
}
#jugadores .jugadores-item p {
  font-size: 16px;
}
#jugadores .deco-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}
#jugadores .deco-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  rotate: 180deg;
}




#galeria {
  background-color: var(--color-secondary);
}
.horizontal-swiper .swiper-slide img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  box-shadow: var(--regular-shadow);
}

.horizontal-swiper .swiper-button-prev,
.horizontal-swiper .swiper-button-next {
  background-color: var(--color-tertiary);
  color: var(--color-primary);
  padding: 20px;
  border-radius: .5rem
}
.horizontal-swiper .swiper-button-prev {
  left: 75px;
}
.horizontal-swiper .swiper-button-next {
  right: 75px;
}
.horizontal-swiper .swiper-button-next:after,
.horizontal-swiper .swiper-button-prev:after {
  font-size: 16px;
}
.horizontal-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-tertiary);
}


.form-container {
  background-color: var(--color-light);
  box-shadow: var(--regular-shadow);
  padding: 25px;
}
.form-container form {
  border: 1px solid var(--color-primary);
  padding: 25px;
}
.custom-margin-bottom {
  margin-bottom: 100px;
}

.contact-container {
  color: #FFF;
}
.contact-container h1 {
  color: var(--color-tertiary);
  margin-bottom: 25px;
}



.contact-items-hover .contact-items {
  padding: 50px 25px;
  border: 1px solid transparent;
  transition: .3s;
}
.contact-items-hover:hover .contact-items {
  border: 1px solid var(--color-tertiary);
  transition: .3s;
}
.contact-items-hover .contact-items i{
  color: var(--color-light);
  font-size: 40px;
  transition: .3s;
}
.contact-items-hover:hover .contact-items i{
  color: var(--color-tertiary);
  transition: .3s;
}
.contact-items-hover .contact-items h4{
  color: var(--color-light) !important;
  font-weight: 100 !important;
  transition: .3s;
}
.contact-items-hover:hover .contact-items h4{
  color: var(--color-tertiary) !important;
  transition: .3s;
}



#map {
  width: 100%;
  height: 500px;

}


.sponsors {
  display: block;
width: 80%;
  height: auto;
}

#laguna {
  background-color: var(--color-secondary);
  position: relative;
  color: var(--color-tertiary);
}



.marker-position {
  position: absolute;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 30px;
}

.img-marker {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--color-primary);
  border: none;
  background: #FFF;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  -webkit-animation: pulse 1.5s infinite;
}





@media only screen and (max-width: 768px) {
  .form-container {
    padding: 15px;
  }
  .form-container form {
    padding: 30px 20px;
  }
  .contact-items-hover .contact-items {
    padding: 25px 10px;
    border: 1px solid transparent;
    transition: .3s;
  }
  #proyectos {
    height: auto;
  }
  #map-1 .container .overmap-content .sqare {
    padding: 25px;
  }
  .deco-left, .deco-right {
    display: none;
  }
  #map-1 {
    height: auto;
  }
  #map-1 .container {
    display: block;
    position: relative;
    left: unset;
    transform: unset;
    z-index: unset;
    top: unset;
    background-color: var(--color-light);
  }
  #map-1 .container .overmap-content {
  box-shadow: none;
  }
  #map-2 .container .overmap-content .sqare {
    padding: 25px;
  }
  .deco-left, .deco-right {
    display: none;
  }
  #map-2 {
    height: auto;
  }
  #map-2 .container {
    display: block;
    position: relative;
    left: unset;
    transform: unset;
    z-index: unset;
    top: unset;
    background-color: var(--color-light);
  }
  #map-2 .container .overmap-content {
  box-shadow: none;
  }
  #ubicacion .ubicacion-map {
    width: 100%;
    height: auto;
  }
  #ubicacion {
    height: auto;
  }
  .horizontal-swiper .swiper-slide img {
    height: 400px;
  }
  .logo-footer {
    height: auto;
    width: 80%;
  }
  #jugadores .deco-titulo {
    height: 60px;
  }
  #deco-menu {
    opacity: .2;
  }
  #proyectos .tercera {
    width: 300px;
    margin-bottom: 25px;
  }
  .navbar-mobile ul {
    z-index: 999;
  }
  #titulo-parque-campeones {
    display: none;
  }
  .sponsors {
    height: auto;
    width: 80%;
  }
   .marker-position {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }

   .img-marker {
    display: block;
    width: 21px;
    height: 20px;
    border-radius: 10px;
    font-size: 10px;
  }


  .horizontal-swiper .swiper-button-prev,
  .horizontal-swiper .swiper-button-next {
    background-color: var(--color-tertiary);
    color: var(--color-primary);
    padding: 20px;
    border-radius: .5rem
  }
  .horizontal-swiper .swiper-button-prev {
    left: 25px;
  }
  .horizontal-swiper .swiper-button-next {
    right: 25px;
  }
  .horizontal-swiper .swiper-button-next:after,
  .horizontal-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
  .horizontal-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-tertiary);
  }

  #masterplan a {
    width: 100%;
  }


}
#clgo-wsp .ldkwsp-collapsed-height {
  right: 0!important;
  left: auto!important;
}
@media only screen and (max-width: 500px) {
  #clgo-wsp .ldkwsp-collapsed-height {
    bottom: 50px !important;
  }
}

.fixed-verde{
  font-family: var(--font-default);
  color: var(--color-light);
  background: var(--color-primary);
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.5rem 1rem;
  top: auto;
  bottom: 0;
  height: 50px;
  display: none;
}
.header-scrolled .fixed-verde{
  display: flex;
}
.fixed-verde p{
  font-family: var(--font-default);
  color: var(--color-light);
  font-size: 18px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .fixed-verde{
    height: 60px;
  }
  .fixed-verde p{
    font-size: 15px;
  }
}