@import url('https://fonts.cdnfonts.com/css/futura-now-headline');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::selection{
    color:  #51245b;
    background-color: #1ba8a3;
}
html, body{
    width: 100%;
    height: 100%;
}
#cursor{
    height: 130px;
    width: 130px;
    background-color: #1ba8a3;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%) scale(0);

}
:root{
    --font-family-1:  'Futura Now Headline', sans-serif;
    --color-1: #51245b;
    --color-2: #1ba8a3;
    --text-color: #242424;
    --weight: 800;
}

/* nav */

.nav{
    height: 100px;
    width: 100%;
    position: fixed;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 99;
}
.nav-part1{
    margin-top: -10px;
    display: block;
    height: 68px;
    overflow: hidden;
  
}
.nav-part1 a{
    text-decoration: none;
    color: #242424;
}
.nav-part1 h1{
    display: block;
}
.nav-part1 img{
    width: 3.5vw;
    margin-top: 10px;
    display: block;
}
.nav .nav-part2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    float: right;
}
#links{
    padding: 10px;
    display: flex;
    width: 100%;
}

.btnpago {
  text-decoration: none;
  padding-top: 10px;
}
.btnpago button{
  background-color: var(--color-1);
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  border: none;
  border-radius: 20px;
  font-family: var(--font-family-1);
  font-weight: var(--weight);
  position: absolute;
  left: -20%;
  top: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  transition: transform .3s ease;
}

.btnpago button:hover{
  transform: scale(1.1);
}
.btnpago button::after{
  position: absolute;
  content: "";
  width: 100%;
  border-radius: 20px;
  z-index: -1;
  height: 0;
  bottom: 0;
  clip-path: polygon(
    0% 74%,
    4% 75%,
    8% 76%,
    11% 77%,
    15% 78%,
    20% 78%,
    25% 77%,
    32% 77%,
    37% 75%,
    40% 74%,
    43% 74%,
    46% 73%,
    52% 72%,
    57% 72%,
    65% 74%,
    66% 75%,
    71% 78%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  background: var(--color-2);
  transition: 0.2s ease;
}
.btnpago button::before{
  position: absolute;
  content: "";
  top: 0;
  border-radius: 20px ;
  transform: rotate(180deg);
  width: 100%;
  height: 0;
  transition: 0.2s ease;
  /*   bottom:; */
  z-index: -1;
  clip-path: polygon(
    0% 74%,
    4% 75%,
    8% 76%,
    11% 77%,
    15% 78%,
    20% 78%,
    25% 77%,
    32% 77%,
    37% 75%,
    40% 74%,
    43% 74%,
    46% 73%,
    52% 72%,
    57% 72%,
    65% 74%,
    66% 75%,
    71% 78%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  background: var(--color-2);
}
.btnpago button:hover::after {
  clip-path: polygon(
    0 30%,
    9% 34%,
    7% 39%,
    11% 43%,
    13% 33%,
    17% 30%,
    24% 34%,
    25% 35%,
    30% 31%,
    30% 38%,
    39% 33%,
    35% 43%,
    43% 45%,
    55% 46%,
    65% 74%,
    67% 66%,
    81% 57%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  height: 80%;
}

.btnpago button:hover::before {
  clip-path: polygon(
    0 30%,
    9% 34%,
    7% 39%,
    11% 43%,
    13% 33%,
    17% 30%,
    24% 34%,
    25% 35%,
    30% 31%,
    30% 38%,
    39% 33%,
    35% 43%,
    43% 45%,
    55% 46%,
    65% 74%,
    67% 66%,
    81% 57%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  height: 80%;
}

.nav .nav-part2 #links .link{
text-transform: uppercase;
 text-decoration: none;
 list-style: none;
 color: #242424;
 font-family: var(--font-family-1);
 font-size: 14px;
 margin: 0 20px;
 font-weight: 500;
 position: relative;
}

#links .link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #242424;
    transition: width .3s ease-in-out;
}
#links .link:hover::after{
    width: 100%;
}
.dropdown-link{
position: relative;
width: auto;
}
.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
  z-index: 1000;
  border-radius: 5px;
  font-family: var(--font-family-1);
}
.dropdown-content a{
  background: none;
  transition: all .3s ease;
  border-radius: 5px;
}
.dropdown-content a:hover{
  background: rgba(81,36,91,.6);
  color: #fff !important;
  border-radius: 5px;
}

.icons{
    padding: 15px;
    border-radius: 50px;
    background: var(--color-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons_menu{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 20px;
    cursor: pointer;
    margin-left: 10px;
}
.bar1, .bar2, .bar3{
    width: 20px;
    height: 1px;
    background-color: #fff;
    transition: all .3s ease;
}
.icons_menu.change .bar1{
    transform: rotate(-45deg) translate(-5px, 6px);
}
.icons_menu.change .bar2 {
    opacity: 0;
}
.icons_menu.change .bar3{
    transform: rotate(45deg) translate(-5px,-6px);
}
.nav-part2 .icons ion-icon{
    font-size: 18px;
    margin: 0 20px;
    font-weight: 100;
    color: #fff;
    transform: scale(1.5);
    cursor: pointer;
}
.nav-part2 .icon_login {
  display: flex;

}

.nav h1{
    text-transform: uppercase;
    font-family: var(--font-family-1);
    font-weight: 800;
    line-height: 1.5vw;
    text-align: start;
}

/* menu hamburger */


.hamburguer{
    position: fixed;
    right: 0;
    text-align: end;
    padding: 0 1.5vw 0 5vw;
    display: none;
    overflow: hidden;
    animation: open-menu .3s ease-in-out forwards;
    z-index: 10;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}
.hamburguer{
    animation: close-menu .3s ease-in-out forwards;
}
@keyframes open-menu{
    0%{
        height: 0;
    }
    100%{
        height: 100%;
    }
   
}
@keyframes close-menu{
    100%{
        height: 100%;
    }
    0%{
        height: 0%;
    }
   
}




.hamburguer::before{
    content: '';
    background: #242424;
    position: absolute;
    display: flex;
    width: 100%;
    height: 100dvh;
    z-index: 1;
    top: 0;
    left: 0;
}
.hamburguer ul{
    position: relative;
    z-index: 99;
}
.hamburguer .items{
    list-style: none;

}
.hamburguer .items a{
    font-family: var(--font-family-1);
    text-decoration: none;
    color: #fff;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 3.5vw;
    font-weight: 700;
}

#torneoDropdownBtnMobile {
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-family-1);
}
#torneoDropdownContentMobile{
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  min-width: 160px;
  box-shadow:0 8px 16px rgba(0,0,0,0.2);
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
}
#torneoDropdownContentMobile a{
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #242424;
}
.hamburguer .items.push-down {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  transform: translateY(200px) !important; /* Adjust as needed for your dropdown height */
}

#page1{
    min-height: 100dvh;
    position: relative;
    width: 100%;
    padding: 0 1vw;
    padding-top: 20vh;
}
#page1 h1{
  font-family: 'Futura Now Headline', sans-serif;
    font-size: 15.5vw;
    text-transform: uppercase;
    line-height: 14vw;
    text-align:start;
    font-weight: 700;
    letter-spacing: -8px;

}
#video-container{
    height: 100vh;
    width: 100%;
    margin-top: 1vw;
    position: relative;
  
}
#video-container video{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    cursor: none;
}
#video-container #play{
    padding: 2vw 1.3vw;
    background-color: black;
    color: #fff;
    font-size: 1.5vw;
    font-weight: 600;
    position: fixed;
    text-transform: uppercase;
    font-family: var(--font-family-1);
    border-radius: 50%;
    opacity: 0;
    scale: 0;  
}

/* page2 */

#page2{
    height: 100dvh;
    width: 100%;
    position: relative;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    align-items: center;
    padding: 3vw 1vw;
    justify-content: space-between;
    z-index: 1;
}
.intro_page2{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.intro_page2 span{
    grid-column: span 1;
    font-family: var(--font-family-1);
    font-weight: 500;
}
.intro_page2 span:nth-child(2){
    text-align: right;
}
.space_line{
    grid-column: 1/-1;
    height: 1px;
    width: 100%;
    background: currentColor;
}

#page2 .elem{
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page2 .elem img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#page2 .elem::before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(28,28,28,.5) 0%, rgba(71,60,104,.5) 50%, rgba(27,168,163,.5) 100%);
    transition: all .3s ease-in-out;
    }

#page2 .elem:hover::before{
    opacity: 0;

}

.elem .dets{
    height: 60px;
    width: 80%;
    border-radius: 50px;
    position: absolute;
    background: #242424;
    z-index: 9; 
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.elem .dets {
    max-width: 400px;
}
/* .dets.dets_elements{
    padding: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}
.dets_elements a{
    border-radius: 5px;
    padding: 50px;
    background: #242424;
 
}

#page2 .elem .dets .dets_elements a img{
    width: 5em;
} */

#quick_link{
    text-decoration: none;
}
.submenu{
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    line-height: .9em;
    letter-spacing: 1px;
}
.submenu #point {
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: #fff;
}
.submenu .arrow{
    color: #fff;
}
.submenu #submenu_link{
    color: #fff;
    text-decoration: none;
    list-style: none;
    font-family: var(--font-family-1);
    font-weight: 600;
}

 .btn-inscription {
  grid-area: 1/2;
   width: 100%;
  padding: 15px 20px;
  background: var(--color-1);
  color: white;
  z-index: 1;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--font-family-1);
  font-weight: var(--weight);
  position: relative;
  display: flex;
  justify-content: center;
  transition: transform .3s ease;
}
 .btn-inscription:hover{
  transform: scale(1.1);
}
.btn-inscription::after{
  position: absolute;
  content: "";
  width: 100%;
  border-radius: 20px;
  z-index: -1;
  height: 0;
  bottom: 0;
  clip-path: polygon(
    0% 74%,
    4% 75%,
    8% 76%,
    11% 77%,
    15% 78%,
    20% 78%,
    25% 77%,
    32% 77%,
    37% 75%,
    40% 74%,
    43% 74%,
    46% 73%,
    52% 72%,
    57% 72%,
    65% 74%,
    66% 75%,
    71% 78%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  background: var(--color-2);
  transition: 0.2s ease;
}
.btn-inscription::before{
  position: absolute;
  content: "";
  top: 0;
  border-radius: 20px ;
  transform: rotate(180deg);
  width: 100%;
  height: 0;
  transition: 0.2s ease;
  /*   bottom:; */
  z-index: -1;
  clip-path: polygon(
    0% 74%,
    4% 75%,
    8% 76%,
    11% 77%,
    15% 78%,
    20% 78%,
    25% 77%,
    32% 77%,
    37% 75%,
    40% 74%,
    43% 74%,
    46% 73%,
    52% 72%,
    57% 72%,
    65% 74%,
    66% 75%,
    71% 78%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  background: var(--color-2);
}
.btn-inscription:hover::after {
  clip-path: polygon(
    0 30%,
    9% 34%,
    7% 39%,
    11% 43%,
    13% 33%,
    17% 30%,
    24% 34%,
    25% 35%,
    30% 31%,
    30% 38%,
    39% 33%,
    35% 43%,
    43% 45%,
    55% 46%,
    65% 74%,
    67% 66%,
    81% 57%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  height: 80%;
}

.btn-inscription:hover::before {
  clip-path: polygon(
    0 30%,
    9% 34%,
    7% 39%,
    11% 43%,
    13% 33%,
    17% 30%,
    24% 34%,
    25% 35%,
    30% 31%,
    30% 38%,
    39% 33%,
    35% 43%,
    43% 45%,
    55% 46%,
    65% 74%,
    67% 66%,
    81% 57%,
    75% 82%,
    81% 86%,
    83% 88%,
    88% 91%,
    90% 94%,
    94% 96%,
    98% 98%,
    100% 100%,
    82% 100%,
    0 100%
  );
  height: 80%;
}




/* page3 */

#page3{
    min-height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-top: 10vw;
}
.title-star-products{
    width: 100%;
    position: absolute;
    top: 2vw;
    left: 2vw;
    display: flex;
    justify-content: space-between;
}
.title-star-products h2{
    
    font-family: var(--font-family-1);
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 2.5vw;
    color: var(--text-color) !important;
}
.title-star-products p{
    width: 300px;
    position: relative;
    right: 5vw;
    font-family: var(--font-family-1);
    font-size: 16px;
}
.title-star-products p span{
    font-weight: 800;
    font-family: var(--font-family-1);
    color: var(--color-2);
}
.title-star-products dotlottie-player{
    position: relative;
    right: -7vw;
    top: -3vw;
}
.child{
    height: 55vh;
    width: 40vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-family-1);
}
.child img{
    height: 100%;
}
#child1{
    margin-bottom: 40px;
}
#child2{
    margin-bottom: 40px;
}
#child3{
    margin-bottom: 40px;
}
#child3 img{
    height: 70%;
    object-fit: cover;
}
#child4 img {
    height: 70%;
    object-fit: cover;
}

.child h3{
    font-family: var(--font-family-1);
    text-transform: uppercase;
    color: var(--text-color);
}
#backpack{
    position: relative;

}

#child1 .size-btn, #child2 .size-btn{
    padding: 5px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    margin-right: 10px;
    font-family: var(--font-family-1);
    border-radius: 10px;
    margin-top: 10px;
}
#child1 .size-btn.selected, #child2 .size-btn.selected {
    background-color: var(--color-1);
    color: #fff;
    border-color: #000;
}
.selector {
  z-index: 9;
}
.actions button{
    padding: 10px 10px 14px; 
    margin-top: 10px;
    border: none;
    background-color: var(--color-2);
    color: #fff;
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 10px;
    transition: all .3s ease-in-out;
}
.actions button:hover{
    background-color: var(--color-1);
    transform: scale(1.05);
}

/* LOGIN - ADMIN */
 #login-section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    height: 100vh;
 }
 #login-section .title_login{
    font-size: 5vw;
    font-family: var(--font-family-1);
    text-transform: uppercase;
    font-weight: 800;

 }
 #login-section #google-login{
    text-decoration: none;
    font-family: var(--font-family-1);
    padding: 20px 25px;
    border: none;
    border-radius: 20px;
    background-color: var(--color-2);
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    transition: all .3s ease-in-out;
    cursor: pointer;
 }
 #login-section #google-login:hover{
    background-color: var(--color-1);
    transform: scale(1.1);
 }

 #admin-section{
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 10vw;
    min-height: 100dvh;

 }
 #admin-section h1{
    font-family: var(--font-family-1);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 5vw;
    font-size: 5vw;
    text-align: center;
 }
 .panel-title{
    font-size: 2vw !important;
    padding-top: 2vw;
 }
 .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3vw;

 }
 #matchForm{
    max-width: 1200px;
    width: 100%;
    text-align: center;
 }
.items{
    padding-top: 20px;
}
.items label{
    font-family: var(--font-family-1);
    font-weight: 500;
    font-size: 20px;

}
.items select{
    width: 100%;
    font-family: var(--font-family-1);
    margin-top: 10px;
    padding: 3px;
}
.items select option{
    font-family: var(--font-family-1);
    text-align: center;
    font-size: 16px;
}
.items input{
    margin-top: 10px;
    padding: 5px;
    width: 100%;
    text-align: center;
    font-family: var(--font-family-1);
}
.buttons{
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
}
.buttons button{
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: var(--color-2);
    transition: all .3s ease-in-out;
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
.buttons button:hover{
    color: #fff;
    background-color: var(--color-1);
    transform: scale(1.05);
}

/* WHATSAPP BUTTON */

.wap-button{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
}
.wap-button a{
    text-decoration: none;
}
svg{
    position: absolute;
    top: -4000px;
    left: -4000px;
}
#gooey-button{
    padding: 1rem;
    font-size: 18px;
    font-weight: 500;
    border: none;
    color: #fff;
    filter: url("#gooey");
    position: relative;
    background-color: var(--color-1) ;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-family-1);
    text-transform: uppercase;
}
#gooey-button .text-efect{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-2);
    color: var(--text-color);
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
    transform-origin: center;
    transition: all cubic-bezier(.1,.5,.5,1) .4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-family-1);
    left: 0;
    padding-left: 30px;
    font-weight: 600;
    font-size: 20px;
}
#gooey-button:hover > .text-efect{
    clip-path:polygon(0 0, 100% 0, 100% 100%, 0% 100%);

}

#gooey-button:focus{
    outline: none;
}
#gooey-button .bubbles{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
#gooey-button .bubbles .bubble{
    background-color: var(--color-1);
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
}
#gooey-button .bubbles .bubble:nth-child(1){
    left: 83px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-1 3.02s infinite;
    animation: move-1 3.02s infinite;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
#gooey-button .bubbles .bubble:nth-child(2) {
    left: 39px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-2 3.04s infinite;
            animation: move-2 3.04s infinite;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  #gooey-button .bubbles .bubble:nth-child(3) {
    left: 75px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-3 3.06s infinite;
            animation: move-3 3.06s infinite;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  #gooey-button .bubbles .bubble:nth-child(4) {
    left: 33px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-4 3.08s infinite;
            animation: move-4 3.08s infinite;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  #gooey-button .bubbles .bubble:nth-child(5) {
    left: 18px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-5 3.1s infinite;
            animation: move-5 3.1s infinite;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  #gooey-button .bubbles .bubble:nth-child(6) {
    left: 89px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-6 3.12s infinite;
            animation: move-6 3.12s infinite;
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  #gooey-button .bubbles .bubble:nth-child(7) {
    left: 28px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-7 3.14s infinite;
            animation: move-7 3.14s infinite;
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  #gooey-button .bubbles .bubble:nth-child(8) {
    left: 35px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-8 3.16s infinite;
            animation: move-8 3.16s infinite;
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  #gooey-button .bubbles .bubble:nth-child(9) {
    left: 57px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-9 3.18s infinite;
            animation: move-9 3.18s infinite;
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  #gooey-button .bubbles .bubble:nth-child(10) {
    left: 82px;
    width: 25px;
    height: 25px;
    -webkit-animation: move-10 3.2s infinite;
            animation: move-10 3.2s infinite;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  @-webkit-keyframes move-1 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -102px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  
  @keyframes move-1 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -102px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-2 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -53px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-2 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -53px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-3 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -77px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-3 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -77px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-4 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -119px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-4 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -119px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-5 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -104px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-5 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -104px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-6 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -125px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-6 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -125px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-7 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -70px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-7 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -70px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-8 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -52px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-8 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -52px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-9 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -90px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-9 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -90px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @-webkit-keyframes move-10 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -71px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes move-10 {
    0% {
      transform: translate(0, 0);
    }
    99% {
      transform: translate(0, -71px);
    }
    100% {
      transform: translate(0, 0);
      opacity: 0;
    }
  }


  /* FOOTER */

  .footer {
   z-index: 1;
   display: grid;
   background: linear-gradient(90deg, rgba(66,66,66,1) 0%, rgba(81,36,91,1) 50%, rgba(27,168,163,1) 100%);
   position: relative;
   grid-area: footer;
   min-height: 12rem;
   border-radius: 100px 0 0 0 ;
   margin-top: 5em;
}
.container-footer{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 20px;
}
.container-footer .title-footer{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-1);
  color: #fff;
  text-transform: uppercase;
  font-size: 4.5em;
  font-weight: 700;
  width: 30vw;
  height: 10vw;
  position: relative;
  top: 0;
  left: 0px;
  line-height: 1em;
}
.container-footer h1,h2,h3,h4{
  font-family: var(--font-family-1);
  text-transform: uppercase;
  color: #fff;
}

.container-footer .space2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  align-items: center;
  justify-items: center;
  filter: grayscale(100%);
}
.container-footer .space2 h3{
  text-align: center;
  grid-column:  span 3 / span 3;
}

.container-footer .space2 img:nth-child(2){
  width: 50px;
  height: 50px;
  grid-row-start: 2;

}
.container-footer .space2 img:nth-child(3){
  width: 50px;
  height: 50px;
  grid-row-start:  2;
}
.container-footer .space2 img:nth-child(4){
  width: 50px;
  height: 50px;
  grid-row-start: 2;
}

.container-footer .space3{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}


.container-footer .space3 .social-media{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
}

.container-footer .space3 .social-media ion-icon{
  width: 40px;
  height: 40px;
  transition: all .3s ease-in-out;
  object-fit: cover;
  position: relative;
  z-index: 9;
  color: #fff;
}
.container-footer .space3 .social-media:hover ion-icon{
  transform: scale(1.2);
  color: #121212;
}

/* Cart Styles */

.cart-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    font-family: var(--font-family-1);
    top: -10px;
    right: 0px;
    background-color: var(--text-color);
    color: white;
    border-radius: 50%;
    padding: 0 6px 2px;
    font-size: 12px;
    font-weight: bold;
}

/* Cart Panel Styles */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family-1);
    color: var(--text-color);
}

.cart-panel.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--text-color);
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.cart-item-price {
    color: #666;
    font-weight: 500;
    margin: 5px 0;
    font-size: 14px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: none;
    border: 1px solid var(--text-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--text-color);
    color: white;
}

.delete-item {
    background: none;
    border: none;
    color: #b92b2b;
    cursor: pointer;
    padding: 5px;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f8f8f8;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.cart-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.continue-shopping,
.checkout-button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.continue-shopping {
    background-color: var(--text-color);
    color: #fff;
}

.checkout-button {
    background-color: var(--color-2);
    color: white;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.checkout-button:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-1);
  transition: width 0.3s ease;
  z-index: -1;
}
.checkout-button:hover:before{
  width: 100%;
}

.checkout-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.terms-checkbox {
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    #page1{
      min-height: 70vh;
       width: 100%;
       padding: 0 2vw;
       padding-top: 25vh; 
    }
    #page1 h1{
        font-size: 16vw;
        letter-spacing: -3px;
    }
   #video-container{
    height: 25vh;
    margin-top: 3vw;
   }
   #video-container video{
    height: 25vh;
   }
   #video-container #play{
    padding: 8vw 5.3vw;
    font-size: 5vw;
    top: 50%;
    left: 50%;
    position: absolute;
    opacity: 1;
    scale: 1;
    transform: translate(-50%,-50%);
   }
   #page2{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    flex-direction: column;
    padding: 5vw 3vw;
 
   }
   #page2 .elem{
    width: 100%;
    margin-bottom: 3.5vw;
   }

}

/* ESCUELA */

.principal_escuela{
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.principal_escuela h1 {
  font-family: var(--font-family-1);
  font-size: 3vw;
}



/* RESPONSIVE */

@media screen and (min-width: 1024px) and (max-width: 1280px){
  .nav h1{
    line-height: 2.5vw;
  }
  .nav-part1 img{
   margin-top: 0;
   width: 4.5vw;
  }
  .btnpago button{
    display: none;
  }
}
@media screen and (min-width: 500px) and (max-width: 800px){
  .nav h1{
    line-height: 2.5vw;
  }
  .nav-part1 img{
   margin-top: 0;
   width: 4.5vw;
  }
}
@media screen and (max-width: 500px){

  
  #links{
    display: none;
  }
  .nav h1{
    line-height: 5.4vw;
    padding-top: 20px;
    font-size: 24px;
  }
  .nav-part1 img{
   margin-top: 0;
   width: 13vw;
  }
  .hamburguer{
    overflow-y: auto;
    overflow-x: hidden;
  }
  .hamburguer::before{
    height: 100%;
  }
  .hamburguer ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:0.3em;
  }
  .hamburguer ul .items a{
    font-size: 40px;
    line-height: 2.5rem;
  }
  #play {
    display: none;
  }
  #video-container{
    height: 50vh;
  }
  #video-container video{
    height: 50vh;
  }
  #page2 {
    grid-template-columns: repeat(1, minmax(0px, 1fr));
  }
  .btn-inscription {
    grid-area: auto;
    text-align: center;
  }
  .btn-inscription:hover{
    transform: scale(1.02);
  }
  #page3 {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    justify-content: center;
    grid-row-gap: 20px;
    padding-top: 0;
  }

  #page3 .title-star-products{
    position: relative;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  #page3 .title-star-products h2{
    font-size: 7vw;
    line-height: 8vw;
    padding-bottom: 10px;
  }
  #page3 .title-star-products p{
    text-align: center;
    right: 0;
  }
  .child {
    width: 100%;
    margin-bottom: 0;
  }
  #child1{
    margin-bottom: 0;
  }
  #child2{
    margin-top: 5em;
    margin-bottom: 0;
  }
  #child3{
    margin-top: 5em;
    margin-bottom: 0;
  }
  #child4 img {
    height: 90%;
  }
  .footer{
    border-radius: 0;
    z-index: 1000;
  }
  .container-footer{
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
  }
  .container-footer .title-footer{
    width: 100%;
    font-size: 2.5em;
    display: inherit;
    text-align: center;
  }


}
@media screen and (max-width: 400px){
  .nav h1{
    line-height: 7vw;
    padding-top: 15px;
    font-size: 24px;
  }
  .nav-part1 img{
   margin-top: 0;
   width: 13vw;
  }
}

/* Push-down animation for hamburguer menu items when dropdown is open */
.hamburguer .items.push-down {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  transform: translateY(150px); /* Adjust as needed for your dropdown height */
}

/* Custom Alert */
.custom-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-1);
    color: white;
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    font-family: var(--font-family-1);
    font-size: 16px;
}

.custom-alert.show {
    transform: translateY(0);
}

/* Shipping Calculator */

.shipping-calculator {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin: 15px 0;
}

.shipping-calculator h4 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 16px;
}

.shipping-input {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.shipping-cost {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    font-weight: 500;
}

#shipping-amount {
    color: var(--principal-color);
    font-weight: bold;
}

.calculate-btn {
    width: 100%;
    padding: 8px 12px;
    margin: 10px 0;
    background-color: var(--color-2);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family-1);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background-color: var(--color-1);
    transform: scale(1.02);
}
.shipping-calculator p {
  text-align: center;
  font-style: italic;
}

/* CONTACT STYLE */

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
    font-family: var(--font-family-1);
}
.contact-form form{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 750px;
  width: 100%;
}
.contact-form form input, .contact-form form textarea{
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: var(--font-family-1);
  font-size: 16px;
}
.contact-form form input[type="text"], .contact-form form input[type="email"]{
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--text-color);
  transition: all .3s ease;
}

.contact-form form input[type="text"]:focus, .contact-form form input[type="email"]:focus{
  outline: none;
  border-bottom: 2px solid var(--color-2);
  width: 100%;
}

.contact-form form textarea{
  width: 100%;
  height: 200px;
  resize: none;
  border: 2px solid var(--text-color);
}
.contact-form form label{
  font-size: 18px;
}
.contact-form form button{
  padding: 10px 20px;
  border: none;
  background-color: var(--color-2);
  color: #fff;
  font-family: var(--font-family-1);
  font-weight: 600;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  margin-left: 10px;
  transition: all .3s ease-in-out;
}

/* RULES STYLE */

.reglamento{
  position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--font-family-1);
    font-size: 17px;
}
.reglamento h1{
  font-size: 4vw;
  font-weight: 700;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 20px;
  padding-top: 4vw
}
.reglamento h3{
  font-size: 1.5vw;
  margin-bottom: 10px;
}
.reglamento h1, h2, h3, h4 {
  color: var(--text-color)
}
.reglamento .indice1, .indice2, .indice3, .indice4, .indice5, .indice6, .indice7, .indice8, .indice9{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
  padding: 20px;
  max-width: 1250px;
  width: 100%;
}
.indice3 .shotout{
  text-align: center;
}
.reglamento h4{
  color: var(--color-2);
}
.indice li a { 
  text-decoration: none;
  color: var(--text-color);
}
.indice li a:hover{
 border-bottom: 2px solid var(--color-1);
  color: var(--color-1);
  font-weight: 500;
}

.indice7 .sub_7 ul{
  list-style: inside;
  list-style-type: circle;
  margin-left: 20px;
}
.welcome{
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 20px;
}