@import url('https://fonts.googleapis.com/css2?family=Anton&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body{
    padding: 0;
    margin: 0;
    background-color: #141414;
}



h1,h2 {
    font-family: "Anton", serif;
    font-weight: 100;
}
h1 {
    color: #DDD6C5;
}

p, h3, button, li, a, h4{
    font-family: "Raleway", sans-serif;
    color: #f1f1f1;
    text-decoration: none;
}

nav {
    padding: 20px 0 20px;
    margin-top: 0px;
    display: flex;
    position: fixed;
    justify-content: space-around;
    align-items: center;
    background-color:rgba(19, 19, 19, 0.821);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 70px 80px rgba(19, 19, 19, 0.959);
    width: 100%;
    z-index: 3;
}

.btn-gradient-action-mobile{
    display: none;
}

nav img {
    width: 200px;
}

nav .hamburger {
   display: none;
}

.container-nav-options{
    display: flex;
    gap: 60px;
}

.container-nav-options li{
    list-style: none;
    font-size: 1.1rem;
}

nav ul a li:hover {
    color: rgb(201, 172, 99);
    transition: all 0.5s;
}

nav ul a li:active {
    color: rgb(196, 148, 29);
}

.container-nav-options a {
    text-decoration: none;
    font-weight: 400;
    color: rgb(240, 240, 240);
}

.btn-gradient-action {
    background: linear-gradient(30deg, #655732, #b88f28, #edb90e, #ea7148 );
    border: none;
    padding: 10px 30px 10px;
    border-radius: 15px;
    font-size: 1rem;
    color: #f1f1f1;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  header {
    background: url(./img/nueva-imagen-header-explosion-perfil.webp) no-repeat center center;
    background-size: cover;
    mask-image: linear-gradient(black 60%, transparent);
  }
  header .container-header-title-btn{
    padding: 50px 50px 50px 120px;
  }
  header .container-header-title-btn h1{
    font-size: 5rem;
    text-transform: uppercase;
    width: 40%;
    line-height: 1;
    margin-top: 270px;
  }
  header .container-header-title-btn h1 span {
    background: linear-gradient(90deg, #943900, #ffd43a);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 6s ease infinite;
  }
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  header .container-header-title-btn .form-header-btn img{
    width: 17%;
    margin-top: 0;
  }
  header .container-header-title-btn .form-header-btn {
    background: linear-gradient(30deg, #946B00,  #ffe17f);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.5rem;
    width: auto;
    color: #f1f1f1;
    cursor: pointer;
    padding: 10px 30px 10px 30px;
    transition: transform 0.2s;
    animation: gradientAnimation 5s ease infinite;
    margin-top: -30px;
    margin-bottom: 250px;
  }

  header .container-header-title-btn .form-header-btn-outlined {
    background: transparent;
    padding: 10px 30px 10px 30px;
    font-weight: 600;
    border: solid 2px #946B00;
    border-radius: 15px;
    font-size: 1rem;
  }

  /*container gallery-up-down y about*/

  .gallery-container {
            perspective: 800px;
            overflow: hidden;
            margin-top: 2rem;
            height: 600px;
            max-height: 60vh;
            mask-image: linear-gradient(black 60%, transparent);
        }
        .gallery-track {
            display: flex;
            flex-direction: column;
            width: 100%;
            animation: scrollVertical 40s linear infinite;
            transform-style: preserve-3d;
            will-change: transform;
        }
        .gallery-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollVertical {
            from { transform: translateY(0); }
            to { transform: translateY(-100%); }
        }

        .gallery-item {
            height: 280px;
            margin-bottom: 2rem;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            will-change: transform;
        }


        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.5rem;
            filter: grayscale(100%);
            transition: filter 0.7s ease; 
        }
        .gallery-item:hover img {
          filter: grayscale(0%);
      }

        .right-column {
            margin-left: 2rem;
        }

        .main-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 2rem;
            overflow: hidden;
            max-width: 100%;
        }

        .columns-container{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
        }

        .container-about {
          margin-top: 170px;
          margin-bottom: 170px;
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 50px;
        }

        .container-about .container-about_section-info-btn h1 {
          font-size: 2.5rem;
        }
        .container-about .container-about_section-info-btn p {
          font-size: 1.5rem;
        }

        .container-about .container-about_section-info-btn {
          width: 30%;
        }

        .boton-gradient-relleno {
          display: inline-block;
          padding: 0px 30px;
          font-size: 1.2rem;
          font-weight: bold;
          text-align: center;
          background: none;
          text-decoration: none;
          border: 2px solid #ffe100;
          border-radius: 20px;
          color: #ffffff;
          position: relative;
          overflow: hidden;
          transition: color 0.3s ease;
          display: flex;
          align-items: center;
          gap: 10px;
        }
        
        .boton-gradient-relleno::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: linear-gradient(to right, #cbb044, #f2b610); 
          opacity: 0; 
          transition: opacity 0.3s ease;
          z-index: -1;
        }
        
        .boton-gradient-relleno:hover {
          color: white; 
          border-color: transparent; 
        }
        
        .boton-gradient-relleno:hover::before {
          opacity: 1; 
        }
        .boton-gradient-relleno span {
          font-size: 50px;
        }

/* Carousel-servicios */

.container-servicios h1 {
  margin-left: 130px;
  margin-top: 250px;
}

.container-servicios {
  margin-bottom: 100px;
}

.container-cards-servicios{
    display: flex;
    justify-content:flex-start;
    align-items: left;
    margin-top: 80px;
    overflow-x: auto;
    gap: 25px;
    -webkit-overflow-scrolling: touch;
    width: 89.2%;
    mask-image: linear-gradient(to right, black 90%, transparent);
    padding-left: 130px;
    scroll-behavior: smooth;
}

.container-cards-servicios::-webkit-scrollbar{
  display: none;
}

.container-cards-servicios {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.card-servicios{
  height: 700px;   
  width: 27%;
  border-radius: 30px;
  margin-bottom: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: transform 0.3s ease-in-out;
}

.card-servicios:hover{
  transform: scale(1.02);
  cursor: pointer;
}

.card-servicios h4, h2 {
  margin-left: 30px;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  text-shadow: rgba(0, 0, 0, 0.767);
}
.card-servicios h2 {
  font-size: 1.6rem;
  margin-top: -15px;
  font-weight: 900;
}
.card-servicios h4 {
  font-weight: 600;
}

.back-1{
  background: url(./img/hombre-gritando-rojo.webp) no-repeat center center;
  background-size: cover;
}

.back-2 {
  background: url(./img/padre-hijo-vikingos.webp) no-repeat center center;
  background-size: cover;
}

.back-3 {
  background: url(./img/hombre-compromiso.webp) no-repeat center center;
  background-size: cover;
}

.back-4 {
  background: url(./img/hombres-peleando.webp) no-repeat center center;
  background-size: cover;
}

.back-5 {
  background: url(./img/fogata-hombre.webp) no-repeat center center;
  background-size: cover;
}

.back-6 {
  background: url(./img/comunidad-online.webp) no-repeat center center;
  background-size: cover;
}

.back-7 {
  background: url(./img/congreso.jpg) no-repeat center center;
  background-size: cover;
}

/* about-back-sect */

.back-about-1{
  background: url(./img/about/webp/Manuel-Lerida.webp) no-repeat center center;
  background-size: cover;
}

.back-about-2 {
  background: url(./img/about/webp/oscar.webp) no-repeat center center;
  background-size: cover;
}

.back-about-3 {
  background: url(./img/about/webp/Yako.webp) no-repeat center center;
  background-size: cover;
}

.back-about-4 {
  background: url(./img/about/webp/Manuel-Asensio.webp) no-repeat center center;
  background-size: cover;
}



.container-btn-carousel-servicios .btn-carousel-servicios{
  padding: 10px;
  background-color: #282828;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.5s;
}
.container-btn-carousel-servicios .btn-carousel-servicios:hover{
  background-color: #463a10;
}
.container-btn-carousel-servicios .arw-left {
  margin-right: 10px;
}
.container-btn-carousel-servicios .btn-carousel-servicios img {
  width: 60%;
}

.container-btn-carousel-servicios {
  margin-left: 9%;
  margin-top: 20px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #141414e3;
  backdrop-filter: blur(15px);
  margin: 15% auto; 
  padding: 30px;
  width: 80%; 
  border-radius: 30px;
  position: relative;
}

.close-button {
  color: #eaeaea;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#modal-subTitle{
  color: #ffffff;
  font-weight: 300;
  margin-bottom: -15px;
}

#modal-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  margin-left: 0;
}

#modal-info {
  color: #ffffff;
  line-height: 1.6;
}

/* container momentos */

.container-momentos {
  margin-top: 200px;
}
.container-momentos h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 70px;
}

.rows-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  padding-bottom: 100px;
}

.gallery-container-momentos {
  perspective: 800px;
  overflow: hidden;
  mask-image: linear-gradient(to right, black 60%, transparent 100%),
              linear-gradient(to left, black 60%, transparent 100%);
  mask-composite: intersect;
}

.gallery-track-momentos {
  display: flex;
  width: fit-content;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes scrollHorizontalLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); } 
}

@keyframes scrollHorizontalRight {
  0% { transform: translateX(0); } 
  100% { transform: translateX(-100%); }
}


.gallery-item-momentos {
  width: 600px;
  height: 300px;
  margin-right: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.gallery-item-momentos:last-child {
  margin-right: 0;
}

.gallery-item-momentos img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.gallery-item-momentos:hover img {
  filter: grayscale(0%);
}

.desc-down-gallery{
  font-size: 1.8rem;
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 120px;
}



/* Header hero promo día del hombre
  header{
    display: flex;
    justify-content: center;
    padding-top: 120px;
    margin-left: 7%;
    margin-right: 7%;
  }
  header h1{
    font-size: 7rem;
    line-height: 0.5rem;
  }
  #inter{
    font-size: 5rem;
  }
  header h2 {
    font-size: 5.7rem;
    margin-top: -70px;
    color: #ffffff;
    background: linear-gradient(90deg, #946B00, #d5aa0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 6s ease infinite;
  }
  header p{
    font-size: 1.3rem;
    margin-top: -90px;
    width: 75%;
  }
  
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  header img {
    width: 500px;
  }
  header form input{
    border: solid #ffffff 0.5px;
    padding: 10px 0 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    width: 35%;
    border-radius: 15px;
    background-color: transparent;
  }
  header form input[type="text"]:focus, 
  header form input[type="tel"]:focus {
    border-color: #946B00;
    color: #ffffff;
    outline: none;
}
.txt-email-form-header {
  margin-bottom: 10px;
}

  header .container-btns{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
  }
  

.container-banner {
  margin-top: 120px;
  background: url(./img/forest-2.webp) no-repeat center center fixed;
  background-size: cover;
  width: 83%;
  border-radius: 20px;
  padding: 20px;
  margin-left: 7%;
  margin-right: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container-banner h2 {
  color: #FFF9CA;
  font-size: 3rem;
  line-height: 0;
}
.container-banner h3 {
  color: #fff8c1;
  font-size: 2rem;
  line-height: 2rem;
  margin-top: -10px;
  text-align: center;
}


  .banner-btn-without {
    background: none;
    border: none;
    font-weight: 800;
    font-size: 1.3rem;
    color: #f1f1f1;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    gap: 5px;
  }

  .banner-btn-without:hover{
    color: #e8cb6c;
    transition: all 0.5s;
    cursor: pointer;
  }

  .banner-btn-without span {
    font-size: 2.7rem;
    font-weight: 500;
  }

  .container-box-data-event{
    margin-top: 120px;
    border: solid 1px #BA9B66;
    color: #BA9B66;
    border-radius: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 7%;
    margin-right: 7%;
    padding-bottom: 70px;
  }
  .container-box-data-event img {
    width: 50px;
    margin-top: 60px;
  }
  .container-box-data-event h1 {
    color: #BA9B66;
    font-size: 7rem;
  }
  .container-box-data-event h3 {
    color: #BA9B66;
    font-size: 1.7rem;
    margin-top: -100px;
  }
*/
/*
  .container-community{
    background: url(./img/hexagonos-comunidad.webp) no-repeat center center;
    background-size: 90%;
    margin-top: -330px;
    padding-top: 550px;
    padding-bottom: 550px;
    margin-bottom: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .container-community h1{
    font-size: 4rem;
    line-height: 4rem;
    text-align: center;
  }
  .container-community p {
    font-size: 1.7rem;
    margin-top: -40px;
  }
  .container-community .btn-without-none {
    background: none;
    margin-top: 20px;
    font-size: 1rem;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container-community .btn-without-none img {
    width: 20%;
  }

  .img-hombre-hex{
    width: 10%;
    position: absolute;
  }
  .img-hx-1{
    top: 420px;
    left: 350px;
    animation: float 6s ease-in-out infinite;
  }
  .img-hx-2{
    top: 420px;
    right: 220px;
    animation: float 7s ease-in-out infinite;
  }
  .img-hx-3{
    top: 105px;
    right: 520px;
    animation: float 8s ease-in-out infinite;
  }
  .img-hx-4{
    bottom: 700px;
    left: 160px;
    animation: float 5s ease-in-out infinite;
  }
  .img-hx-5{
    bottom: 500px;
    right: 160px;
    animation: float 6s ease-in-out infinite;
  }
  .img-hx-6{
    bottom: 400px;
    left: 430px;
    animation: float 8s ease-in-out infinite;
  }
  .img-hx-7{
    bottom: 200px;
    right: 500px;
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0% {
      transform: translateY(0); /* Posición inicial */
  /*  }
    50% {
      transform: translateY(-15px); /* Mueve la imagen hacia arriba */
  /*  }
    100% {
      transform: translateY(0); /* Vuelve a la posición inicial */
  /*  }
  }
*/

/*
  .nosotros-section{
    text-align: center;
    margin-top: -60px;
    margin-bottom: 200px;
    margin-left: 16%;
    margin-right: 16%;
  }
  .nosotros-section h1 {
    font-size: 4rem;
  }
  .nosotros-section p {
    font-size: 1.7rem;
    margin-top: -30px;
    margin-bottom: 80px;
  }
  .nosotros-section .container-nostros-img-txt {
    display: flex;
    justify-content: space-around;
    text-align: left;
    gap: 50px;
  }
  .nosotros-section .container-nostros-img-txt img {
    width: 100%;
  }
  .nosotros-section .container-nostros-img-txt h4 {
    font-size: 2rem;
  }
  .nosotros-section .container-nostros-img-txt p {
    font-size: 1.2rem;
  }
  .section-flex-reverse {
    flex-direction: row-reverse;
  }
*/

/*
  .container-proximos-eventos {
    margin-top: 150px;
    margin-left: 7%;
    margin-right: 7%;
  }
  .container-events{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .container-proximos-eventos h1{
    text-align: center;
    font-size: 3rem;
  }
  .container-txt-events h1{
    text-align: left;
    line-height: 0;
  }
  #inter-2{
    font-size: 2rem;
  }
  .container-txt-events h3 {
  text-align: left;
  font-size: 2rem;
  line-height: 1.6rem;
  margin-bottom: 10px;
  color: #fffaee;
  width: 70%;
  }
  .container-txt-events{
    flex-basis: 60%;
  }
  .container-cards-events {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-top: 80px;
    gap: 20px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 60%;
    mask-image: linear-gradient( to right, black 70%, transparent);
  }
  .container-cards-events::-webkit-scrollbar{
    height: 10px;
  }
  .container-cards-events::-webkit-scrollbar-track{
    background: #282828;
    border-radius: 20px;
  }
  .container-cards-events::-webkit-scrollbar-thumb{
      background: linear-gradient(-45deg, #e4ad0a 0%, #6c5101 100% );
      border-radius: 20px;
  }

  .container-cards-events::-webkit-scrollbar-button{
      display: none;
  } 
    

  .card-event{
    background-color: #FFF9CA;
    padding: 15px;
    border-radius: 20px;
    width: 80%;
    height: 170px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .card-event p{
    color: black;
  }


  .container-actividades {
    margin-top: 150px;
    margin-bottom: 200px;
  }
  .container-actividades .sub-title-activ{
    text-align: center;
    font-size: 2rem;
    margin-top: -30px;
  }
  .container-actividades .box-actividades{
    display: flex;
    justify-content: center;
    margin-top: 150px;
    align-items: center;
    gap: 100px;
    margin-bottom: 50px;
  }
  .container-actividades img {
    width: 400px;
  }
  .container-txt-actividades h3 {
    font-size: 2rem;
    font-weight: 900;
  }
    */

  footer {
    background: url(./img/hex-black-form.webp) no-repeat center top;
    margin-left: 7%;
    margin-right: 7%;
    padding-top: 40px;
    padding-bottom: 10px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  footer form input{
    border: solid #ffffff 0.5px;
    padding: 10px 30px 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    border-radius: 15px;
    width: 100%;
    margin-top: 10px;
    background-color: transparent;
  }
  footer form input[type="text"]:focus, 
  footer form input[type="email"]:focus {
    border-color: #946B00;
    color: #ffffff;
    outline: none;
}
  .form-col {
    display: flex;
    gap: 10px;
  }
  footer form input[type="date"] {
    color: #727272;
  }
  footer form textarea {
    border: solid #ffffff 0.5px;
    color: #ffffff;
    margin-top: 10px;
    border-radius: 15px;
    width: 96%;
    padding: 10px;
    background-color: transparent;
  } 
  .btn-form {
    background: linear-gradient(30deg, #946B00,  #edc440);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    width: auto;
    color: #f1f1f1;
    cursor: pointer;
    padding: 10px 30px 10px 30px;
    transition: transform 0.2s;
    animation: gradientAnimation 5s ease infinite;
  }
  .btn-form img {
    width: 15%;
  }
  form input[type="checkbox"] {
    width:auto;
  }
  form .container-consentimiento {
    display: flex;
    align-items: center;
  }
  form .container-consentimiento p{
    margin: 0;
    width: auto;
    font-size: 1rem;
  }

  .data-presencial {
    margin-left: 0;
    margin-right: 0;
  }
  .data-presencial h1 {
    font-size: 6rem;
  }
  .data-presencial h3 {
    margin-top: -80px;
    line-height: 1.4rem;
  }

.container-cards-price{
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 150px;
  margin-top: 50px;
}

.card-price {
  max-width: 300px;
  max-height: 700px;
  height: 700px;
  padding: 40px;
  color: white;
  background: linear-gradient(#141414, #141414) padding-box,
  linear-gradient(145deg, transparent 35%,#655732, #b88f28, #edb90e, #f7e333 ) border-box;
  border: 2px solid transparent;
  border-radius: 18px;
  display: flex;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  transform-origin: right bottom;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.container-price-txt{
  position: absolute;
  bottom: 60px;
}
.container-price-txt .linea-horizontal{
  width: 300px;
  max-width: 300px;

}

.card-price .p-precio{
  margin-top: -15px;
}

.container-btn-price{
  display: flex;
}

.btn-pagar{
  position: absolute;
  bottom: 0px;
  left: 100px;
}
.container-btn-price .btn-pagar-doble-1{
  width: auto;
  position: absolute;
  bottom: 0;
  left: 83px;
}
.container-btn-price .btn-pagar-doble-2{
  width: auto;
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 160px;
}
.card-price .main-content ul {
  text-wrap: balance;
  list-style: none;
  margin-left: -20px;
}
.card-price .main-content ul li{
  margin-bottom: 15px;
}

.card-price .main-content hr {
  margin-bottom: 50px;
}

.card-price .main-content h2{
  font-size: 3rem;
  margin-top: 20px;
  line-height: 0;
  text-align: left;
}

.card-price:hover {
  transform: translateY(10px);
}


#cont-confirmationTooltip{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.container-confirmation-form .confirmation-tooltip {
  background-color: #282828cc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:  0 44px 68px rgba(0, 0, 0, 0.616);
  align-items: center;
  padding: 30px;
  width: auto;
  height: auto;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 30px;
  z-index: 4;
  opacity: 0; 
  transform: translateY(0px);
  animation: slide-up 0.7s ease-out forwards; 
}

@keyframes slide-up {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(140px);
    opacity: 1;
  }
}

#cont-confirmationTooltip.show {
  visibility: visible;
  opacity: 1;
} 

.confirmation-tooltip #closeBtn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.3rem;
  position: absolute;
  top: 20px;
  right: 30px;
}
.confirmation-tooltip #closeBtn:hover{
  color: #fbc566;
}

.confirmation-tooltip .container-pago h1{
  font-size: 3.4rem;
  line-height: 0.5;
}
.gradient-donar{
  background: linear-gradient(90deg, #f8c952, #b88f28, #ad6026);
  width: 100%;
}



.container-confirmation-form .confirmation-tooltip p {
  margin-top: -20px;
}

.loading {
  width: 324px;
  height: 124px;
}

.loading svg {
  display: block;
  width: 100%;
  height: 100%;
}

.circle {
  transform: rotate(0deg);
  transform-origin: center;
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  animation: circle_4 2s ease-in-out forwards;
}

.check {
  stroke-dasharray: 45;
  stroke-dashoffset: 45;
  animation: check_4 0.2s 2s ease-in-out forwards;
}

@keyframes circle_4 {
  0% {
    stroke-dashoffset: 380;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes check_4 {
  0% {
    stroke-dashoffset: 45;
  }
  100% {
    stroke-dashoffset: 90;
  }
}

#sendingMessage{
  display: none;
  color: rgb(112, 183, 77);
}
.container-box-txt-final{
  margin-top: 150px;
  margin-bottom: 150px;
  font-size: 1.5rem;
  background: url(./img/fire-last-back.webp) no-repeat center center;
  background-size: cover;
  mask-image: linear-gradient(black 50%, transparent);
  padding-bottom: 180px;
}
.container-box-txt-final p {
  margin-left: 10%;
  margin-right: 10%;
}


@media screen and (max-width: 1024px) {

    nav {
        padding: 20px 0 20px;
        right: 0;
        justify-content: center;
    }
    
    nav img {
        width: 20%;   
        margin-right: 30px;
    }

    header img {
        display: none;
      }
      header p{
        font-size: 1.3rem;
        width: 100%;
      }
      .btn-gradient-action {
        background: linear-gradient(30deg, #946B00, #b88f28, #ad8e26);
        border: none;
        padding: 10px 30px 10px;
        border-radius: 15px;
        font-size: 1rem;
    }
    .container-nav-options{
        gap: 20px;
    }
    .container-box-data-event{
      margin-left: 50px;
      margin-right: 50px;
      padding-left: 10px;
      padding-right: 10px;
    }
    .container-box-data-event h1 {
      font-size: 4rem;
    }
    .container-box-data-event h3 {
      font-size: 1.3rem;
      margin-top: -50px;
    }
    .container-box-data-event img {
      width: 40px;
      margin-top: 40px;
    }

    .container-community {
      background-size: 140%;
    }
    .img-hx-1{
      top: 290px;
      left: 150px;
    }
    .img-hx-2{
      top: 420px;
      right: 120px;
    }
    .img-hx-3{
      top: 175px;
      right: 220px;
    }
    .img-hx-4{
      bottom: 500px;
      left: 60px;
    }
    .img-hx-5{
      bottom: 500px;
      right: 60px;
    }
    .img-hx-6{
      bottom: 300px;
      left: 430px;
    }
    .img-hx-7{
      bottom: 200px;
      right: 500px;
    }

    .nosotros-section {
      margin-left: 50px;
      margin-right: 50px;
    }
    .nosotros-section h1 {
      font-size: 4rem;
    }
    .nosotros-section p {
      font-size: 1.7rem;
      margin-top: -30px;
      margin-bottom: 80px;
    }
    .nosotros-section .container-nostros-img-txt {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      text-align: left;
      gap: 20px;
    }
    .nosotros-section .container-nostros-img-txt img {
      width: 100%;
    }
    .nosotros-section .container-nostros-img-txt h4 {
      font-size: 2rem;
    }
    .nosotros-section .container-nostros-img-txt p {
      font-size: 1.2rem;
    }


    .container-proximos-eventos {
      margin-left: 3%;
      margin-right: 3%;
    }
  
    .container-txt-events h1{
      text-align: left;
      
      line-height: 0;
    }

    .container-txt-events h3 {
    width: 100%;
    }
    #event-19-nov{
      line-height: 0;
      font-size: 1.5rem;
    }
    .container-txt-events{
      flex-basis: 60%;
    }
    .container-cards-events {
      display: flex;
      justify-content: left;
      align-items: left;
      margin-top: 120px;
      gap: 20px;
      overflow-x: scroll;
      -webkit-overflow-scrolling: touch;
      width: 60%;
      mask-image: linear-gradient( to right, black 70%, transparent);
    }
  
    .card-event{
      width: 60%;
      height: auto;
    }

    .container-actividades img {
      width: 300px;
    }

    footer {
      background: url(./img/hex-black-form.webp) no-repeat center top;
      margin-left: 50px;
      margin-right: 50px;
      margin-top: 150px;
      padding-top: 40px;
      padding-bottom: 10px;
      background-size: 150%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .container-cards-events::-webkit-scrollbar{
      display: none;
    }
    .container-cards-events::-webkit-scrollbar-track{
      display: none;
    }
    .container-cards-events::-webkit-scrollbar-thumb{
      display: none;
    }


    .container-confirmation-form{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      position: fixed;
      width: 100%;
      left: 0;
    }
    
    .container-confirmation-form .confirmation-tooltip {
      background-color: #282828cc;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 74px 58px rgba(0, 0, 0, 0.702);
      align-items: center;
      padding: 40px;
      width: 300px;
      position: absolute;
      backdrop-filter: blur(15px);
      border-radius: 30px;
      z-index: 4;
      opacity: 0; 
      animation: slide-up 0.5s ease-out forwards; 
    }

    .container-cards-price{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
}


@media screen and (max-width: 768px) {

    #btn-nav-desk{
        display: none;
    }
    
    nav img {
        width: 60%;   
        margin-right: 30px;
    }
    nav{
        justify-content: space-around;
        margin-top: -10px;
    }
    .container-nav-options li {
      font-size: 1.5rem;
    }

    .btn-gradient-action-mobile{
        display: block;
        background: linear-gradient(30deg, #946B00, #b88f28, #ad8e26);
        border: none;
        padding: 10px 30px 10px;
        border-radius: 15px;
        font-size: 1.3rem;
        color: #f1f1f1;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s;
        background-size: 200% 200%;
        animation: gradientAnimation 5s ease infinite;   
    }


    .hamburger {
        cursor: pointer;
    }
    
    .hamburger input {
        display: none;
    }
    
    .hamburger svg {
        height: 3em;
        transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .line {
        fill: none;
        stroke: rgb(236, 236, 236);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 3;
        transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .line-top-bottom {
        stroke-dasharray: 12 63;
    }
    
    .hamburger input:checked + svg {
        transform: rotate(-45deg);
    }
    
    .hamburger input:checked + svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
    }
    

    #nav-options{
        flex-direction: column;
        position: absolute;
        top: 140px;
        left: 10px;
        background-color: rgba(21, 21, 21, 0.936);
        box-shadow: 0 70px 80px rgba(29, 29, 29, 0.535);
        width: 80%;
        border-radius: 20px;
        padding: 30px;
        opacity: 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        visibility: hidden;
        color: #f1f1f1;
        transition: opacity 0.3s ease;
        transform: translateY(-20px);
    }

    #nav-options.show{
        opacity: 1;
        visibility: visible; 
        transform: translateY(0);
    }
    #nav-options.close{
        opacity: 0; 
        visibility: hidden; 
        transform: translateY(-20px);
    }
    nav .hamburger{
        display: block;
    }

    /*

    header{
        padding-top: 150px;
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        margin-right: 0;
    }

    header h1{
        font-size: 3.5rem;
        line-height: 0.2rem;
      }
      #inter{
        font-size: 2rem;
        line-height: 0;
      }
      header h2 {
        font-size: 3rem;
        margin-top: -20px;
      }
      header p{
        font-size: 1.3rem;
        margin-top: -40px;
        width: 100%;
      }

      header form input{
        border: solid #ffffff 0.5px;
        padding: 10px 0 10px 20px;
        font-size: 1rem;
        width: 90%;
        margin-top: 10px;
        border-radius: 15px;
        background-color: transparent;
      }

      header .container-btns .form-header-btn {
        width: 150px;
        flex-direction: column;
      }

      header .container-btns .form-header-btn-outlined{
        font-size: 1rem;
      }

      .container-box-data-event{
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
      }
      .container-box-data-event img {
        width: 50px;
      }
      .container-box-data-event h1 {
        font-size: 6rem;
      }
      .container-box-data-event h3 {
        font-size: 1.4rem;
        margin-top: -100px;
      }

      .container-community h1{
        font-size: 2.5rem;
        line-height: 3rem;
      }
      .container-community p {
        font-size: 1.7rem;
        text-align: center;
        margin-top: -25px;
      }
      .container-community{
        background-size: 220%;
      }

      .img-hx-1{
        top: 500px;
        left: 50px;
      }
      .img-hx-2{
        top: 490px;
        right: 60px;
      }
      .img-hx-3{
        top: 510px;
        right: 160px;
      }
      .img-hx-4{
        bottom: 500px;
        left: 60px;
      }
      .img-hx-5{
        bottom: 500px;
        right: 60px;
      }
      .img-hx-6{
        bottom: 360px;
        left: 330px;
      }
      .img-hx-7{
        bottom: 400px;
        left: 100px;
      }
      .nosotros-section {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: -250px;
      }
      .nosotros-section h1 {
        font-size: 3rem;
      }
      .nosotros-section p {
        font-size: 1.5rem;
        margin-top: -30px;
        margin-bottom: 80px;
      }
      .container-events{
        flex-direction: column;
        gap: 40px;
      }
      .container-cards-events {
        margin-top: 0px;
        width: 100%;
      }
        
      .card-event{
        width: 75%;
      }

      .container-proximos-eventos {
        margin-left: 20px;
        margin-right: 20px;
      }
    
      .container-txt-events h3 {
      width: 100%;
      }
      .container-actividades .box-actividades{
        flex-direction: column;
      }
      .container-actividades .box-actividades img {
        width: 100%;
        margin-bottom: -50px;
      }

      */

      footer {
        background: url(./img/hex-black-form.webp) no-repeat center top;
        margin-left: 3%;
        margin-right: 3%;
        margin-top: 150px;
        padding-top: 40px;
        padding-bottom: 10px;
        background-size: 300%;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }
      footer .btn-form {
        width: 100%;
      }
      footer form input{
        border: solid #ffffff 0.5px;
        padding: 10px 0px 10px 15px;
        font-size: 1rem;
        color: #ffffff;
        border-radius: 15px;
        width: 96%;
        margin-top: 10px;
        background-color: transparent;
      }
      footer form input[type="text"]:focus, 
      footer form input[type="email"]:focus,
      footer form input[type="tel"]:focus {
        border-color: #946B00;
        color: #ffffff;
        outline: none;
    }
      .form-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      footer form input[type="date"] {
        color: #727272;
      }
      footer form textarea {
        border: solid #ffffff 0.5px;
        color: #ffffff;
        margin-top: 10px;
        border-radius: 15px;
        width: 95%;
        padding: 10px;
        background-color: transparent;
      } 
      .btn-form img {
        width: 12%;
      }
      .container-cards-events::-webkit-scrollbar{
        display: none;
      }
      .container-cards-events::-webkit-scrollbar-track{
        display: none;
      }
      .container-cards-events::-webkit-scrollbar-thumb{
        display: none;
      }
      .data-presencial h3 {
        margin-top: -90px;
        text-align: center;
      }
      header .container-btns {
        flex-direction: column;
        justify-content: center;
        width: 100%;
      }
      header .container-btns button {
        width: 100% !important;
      }
      header .container-btns a {
        width: 100%;
      }

      .banner-btn-without {
        justify-content: center;
      }

      .container-banner {
        margin-top: 120px;
        background-size: cover;
        width: 83%;
        border-radius: 20px;
        padding: 20px;
        margin-left: 3%;
        margin-right: 2%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }
      .container-banner h2 {
        color: #FFF9CA;
        font-size: 2.5rem;
        text-align: center;
        line-height: 2.2rem;
      }
      .container-banner h3 {
        font-size: 1.5rem;
        line-height: 1.4rem;
        margin-top: -10px;
        text-align: center;
      }
      
      
        .banner-btn-without {
          background: none;
          border: none;
          font-weight: 800;
          font-size: 1.3rem;
          color: #f1f1f1;
          display: flex;
          text-transform: uppercase;
          align-items: center;
          gap: 5px;
        }
      
        .banner-btn-without:hover{
          color: #e8cb6c;
          transition: all 0.5s;
          cursor: pointer;
        }
      
        .banner-btn-without span {
          font-size: 2.7rem;
          font-weight: 500;
        }

        #cont-confirmationTooltip{
          top: 35%;
        }

        header .container-header-title-btn{
          padding: 10px;
        }
        header .container-header-title-btn h1 {
          font-size: 3rem;
          margin-top: 170px;
          margin-bottom: 50px;
        }
        header .container-header-title-btn .form-header-btn img{
          width: 170%;
        }
        header .container-header-title-btn .form-header-btn {
          font-size: 1.8rem;
          padding: 10px 55px 10px 55px;
        }
        .container-about {
          flex-direction: column-reverse;
        }

        .container-about .container-about_section-info-btn {
          width: 90%;
        }

        .container-servicios h1 {
          margin-left: 30px;
        }

        .container-cards-servicios {
          padding-left: 30px;
        }

        .card-servicios{
          width: 70%;
          height: 600px;
        }
        .modal-content {
          top: 40px;
        }

        .gallery-item-momentos img {
          filter: grayscale(2%);
        }

        .container-box-txt-final{
          background: url(./img/fire-last-back.webp) no-repeat left top;
          mask-image: linear-gradient(black 83%, transparent);
        }
        

}