html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'GoodVibrations';
    src: url("resources/Fonts/GoodVibrations Script.ttf");
}

body {
    margin: 0;
    align-items: center;
    justify-content: center;
}

#principal {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#bgVideo {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}

.capa {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}

header {
    position: relative;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    padding: 10px;
}

.menuToggle {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    padding-right: 30px;

    position: relative;
    z-index: 10002;
}

.logoHeader {
    display: flex;
    padding-left: 50px;
}

.logoHeader img {
    height: clamp(60px, 8vw, 100px);
    width: auto;
}


@media (max-width:768px) {
    header {
        background-color: rgba(0, 0, 0, 0.615);
    }

    .menuToggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 10001;
        padding-right: 0;

        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    nav ul li {
        padding: 20px 0;
    }
}

.menuToggle {
    transition: transform 0.3s ease;
    color: rgb(214, 189, 0);
}

.menuToggle.active {
    transform: rotate(180deg);
}

nav {
    padding-right: 80px;
}

nav a {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    padding: 10px 25px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: rgb(214, 189, 0);
    transition: width 0.3s;

}

nav a:hover {
    color: rgba(214, 189, 0);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: rgb(214, 189, 0);
    text-shadow: 0 0 8px rgba(214, 189, 0, 0.5);
}

nav a.active::after {
    width: 100%;
}

.soundButton {
    position: absolute;
    top: 120px;
    right: 30px;
    z-index: 5;
    opacity: 0.8;

    width: 20px;
    height: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(214, 189, 0);
    border-radius: 50%;

    color: rgb(214, 189, 0);
    font-size: 22px;

    cursor: pointer;
    transition: 0.3s;
}

.soundButton:hover {
    transform: scale(1.1);
    background: rgb(214, 189, 0);
    color: black;
}

.scrollIndicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.banner {
    position: relative;
}

.contenedorBanner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: brillo 3s infinite linear;
    opacity: 0.6;
}

@keyframes brillo {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.banner img {
    width: 100%;
}

#nosotros {
    position: relative;
    overflow: hidden;
    background-image: url(resources/Img/Bg1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    padding: 0;
    margin: 0;
}

.contenedorNosotros {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.contenedorNosotros h1 {
    color: rgb(255, 255, 255);
    font-family: 'GoodVibrations';
    text-align: center;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 100;
}

.contenedorNosotros p {
    color: rgba(255, 255, 255, 0.795);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: justify;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 100;
    padding: 0px 10px 30px;
    margin: 0;
}

.slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
}

.sliderTrack {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 25vw, 300px);
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(214, 189, 0, 0.529);
    border-radius: 20px;
    padding: 15px;
    color: white;
    backdrop-filter: blur(10px);
    flex: 0 0 auto;
    transition: 0.3s;
}

@media (max-width:768px) {

    .card {
        width: 40vw;
        margin: 0 1.4vw;
    }
}

.card img {
    width: 100%;
    border-radius: 50%;
    border: solid 2px rgba(214, 189, 0, 0.529);
    object-fit: cover;
    margin-bottom: 15px;
}

.card h2 {
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
    text-align: center;
    font-size: 100%;
}

.card p {
    opacity: 0.7;
    text-align: center;
    font-size: 100%;
}

/* Botones */

.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgb(214, 189, 0);
    color: rgb(214, 189, 0);

    font-size: clamp(18px, 2vw, 28px);

    width: clamp(40px, 6vw, 60px);
    height: clamp(40px, 6vw, 60px);

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

#galeria {
    background: black;
    padding: 40px 20px;
    text-align: center;
}

#galeria h1 {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(28px, 4vw, 50px);
}

.gridGaleria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gridGaleria img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gridGaleria img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 10px 20px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            rgba(214, 189, 0, 0.8),
            transparent);

    box-shadow: 0 0 10px rgba(214, 189, 0, 0.6);
}

footer ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer h1,
footer ul {
    opacity: 0.8;
}

.iconElem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 12.5px;
    margin-left: 12.5px;
}

.iconElem p {
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: clamp(8px, 1.4vw, 12px);
    ;
}

.icon {
    font-size: clamp(18px, 2vw, 24px);
    color: rgb(0, 0, 0);
    transition: 0.3s;
}

.iconElem:hover .icon {
    color: rgb(214, 189, 0);
}

.iconElem:hover p {
    opacity: 1;
    color: rgb(214, 189, 0);
}

@media (max-width: 768px) {
    footer ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .iconElem {
        margin: 10px;
    }
}

/* PÁGINA CLASES */

.bodyClases {
    background-image: url(resources/Img/Bg1.png);
    margin: 0;
    align-items: center;
    justify-content: center;
}

#clases {
    position: relative;
    overflow: visible;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.contenedorClases {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.contenedorClases p {
    color: rgba(255, 255, 255, 0.795);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: justify;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 100;
    padding: 0px 15px 0px;
    margin: 50px 0px;
}

.bloqueKids,
.bloqueAdultos,
.bloqueProfesional {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bloqueKids h1,
.bloqueAdultos h1,
.bloqueProfesional h1 {
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    font-family: 'GoodVibrations';
    text-align: center;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 100;
    padding: 0px 15px 0px;
}

.bloqueKids p,
.bloqueAdultos p,
.bloqueProfesional p {
    color: rgba(255, 255, 255, 0.795);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 100;
    padding: 0px 15px 0px;
}

.niveles {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-content: center;
    margin: 30px 0px;
}

.cardClases {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(170px, 25vw, 350px);
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(214, 189, 0, 0.529);
    border-radius: 20px;
    padding: 10px;
    color: white;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.cardClases h1 {
    margin-bottom: 10px;
    color: rgb(214, 189, 0);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: clamp(18px, 2vw, 50px);
}

.cardClases p {
    color: #ccc;
    text-align: center;
    font-size: clamp(10px, 1vw, 16px);
    margin: 5px;
}

.cardClases .precioClases {
    color: rgb(214, 189, 0);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: bold;
    font-family: 'GoodVibrations';
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(214, 189, 0, 0.4);
}

@media (max-width: 768px) {
    .cardClases {
        width: 100%;
        max-width: 350px;
    }
}

/* CTA */
.cta {
    text-align: center;
    margin-top: 50px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff3c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #ff1f1f;
}

/*PÁGINA SERVICIOS*/

.bodyServicios {
    background-image: url(resources/Img/Bg1.png);
    margin: 0;
    align-items: center;
    justify-content: center;
}

#servicios {
    position: relative;
    overflow: visible;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.portafolio {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portafolio img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;

    margin-bottom: 40px;
}

.portafolio img.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsappBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;

    background: #25D366;
    color: white;

    border-radius: 50px;
    padding: 10px 15px;

    font-size: 16px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;

    transition: 0.3s;
}

.whatsappBtn ion-icon {
    font-size: 28px;
}

.textoWhatsapp {
    margin-right: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.whatsappBtn:hover {
    transform: scale(1.1);
}

/*DIVAS*/

.bodyDivas {
    margin: 0;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#bgVideoDivas {
    position: fixed;
    top: 0;
    left: 0;

    height: 100vh;
    width: 100vw;
    object-fit: cover;
    pointer-events: none;
    z-index: -2;

    filter: brightness(0.8);
}

.capaDivas {
    position: fixed;
    top: 0;
    left: 0;

    height: 100vh;
    width: 100vw;
    background: rgba(5, 0, 47, 0.75);
    z-index: -1;
}

.bannerDivas {
    position: relative;
    overflow: hidden;
}

.contenedorBannerDivas {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.bannerDivas::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: brillo 3s infinite linear;
    opacity: 0.6;
}

@keyframes brillo {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.bannerDivas img {
    width: 100%;
}

#infoDivas {
    position: relative;
    overflow: visible;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    margin: 0;
}

.contenedorInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.contenedorInfo h1 {
    color: rgba(255, 255, 255, 0.795);
    font-family: 'GoodVibrations';
    text-align: center;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 100;
    padding: 0px 15px 0px;
    margin: 50px 0px;
}

.contenedorInfo p {
    color: rgba(255, 255, 255, 0.795);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: justify;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 100;
    padding: 0px 15px 0px;
    margin: 0;
}

.aficheDivas {
    display: block;
    margin: 40px auto;

    width: clamp(280px, 60vw, 600px);
    max-width: 90%;

    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.boleteria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.boleteria h1 {
    margin-top: 50px;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    font-family: 'GoodVibrations';
    text-align: center;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 100;
    padding: 0px 15px 0px;
}

.boleteria p {
    color: rgba(255, 255, 255, 0.795);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 100;
    padding: 0px 15px 0px;
}

.boletas {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-content: center;
    margin: 30px 0px;
}

.cardBoletas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(70px, 25vw, 250px);
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(214, 189, 0, 0.529);
    border-radius: 100px;
    padding: 10px;
    color: white;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.boleteria .cardBoletas h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: rgb(214, 189, 0);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: clamp(18px, 2vw, 50px);
}

.cardBoletas p {
    color: #ccc;
    text-align: center;
    font-size: clamp(10px, 1vw, 16px);
    margin: 5px;
}

.cardBoletas .precioBoletas {
    color: rgb(214, 189, 0);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: bold;
    font-family: 'GoodVibrations';
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(214, 189, 0, 0.4);
}

@media (max-width: 768px) {
    .cardBoletas {
        width: 100%;
        max-width: 350px;
    }
}

.cardBoletas:hover {
    transform: scale(1.05);
    border-color: rgb(214, 189, 0);
    box-shadow: 0 0 20px rgba(214, 189, 0, 0.4);
}