* {
    margin: 0;
    box-sizing: border-box;
}

:root {
    --amarillo: #FFD300;
    --negro: #141414;
    --blanco: #FFFFFF;
    --radius: 14px;
    --gap: 18px;
    --max-w: 1200px;
    --shadow: 0 10px 30px rgba(20, 20, 20, 0.35);
    --muted: rgba(255, 255, 255, 0.85);
    --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));

    --bg: #000000ad;
    --card: #0b1220cc;
    --accent: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --muted: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.04);
    --radius: 18px;
    --glass-border: rgba(255, 255, 255, 0.06);
}

.galeria-container {
    margin: 0;
    color: var(--muted);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 10px 0 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    transition: all 0.5s ease;
}

header.scrolled {
    width: 100%;
    padding: 0;
    border-radius: 0;
}

header.scrolled .header-container {
    width: 100%;
    padding: 10px 60px;
    background-color: #ffffff;
    border-bottom: 2px solid #FFD300;
}

header.scrolled img {
    width: 30%;
}

.img-logo,
.header-contact {
    width: 100%;
}

.img-logo {
    display: flex;
    align-items: start;
    justify-content: start;
}

.header-contact {
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: end;
}

.img-logo img {
    width: 40%;
}

.header-contact a {
    color: #141414;
    background-color: #FFD300;
    padding: 10px 30px 10px 30px;
    border: 1px solid #141414;
    text-decoration: none;
    transition: ease-in-out .3s;
    font-weight: 400;
    font-size: 1.2em;
}

.header-contact a:hover {
    background-color: #141414;
    color: #FFD300;
    border: 1px solid #FFD300;
}





.hero {
    width: 100%;
    height: 90vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-color: #000000c2;
}

.hero-content h1 {
    font-family: "Oxanium";
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    color: #FFD300;
    font-size: 5.5em;
}

.hero-content h2 {
    font-family: "Oxanium";
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    color: #FFD300;
    font-size: 5em;
}

.hero-content h3 {
    color: #ffffff;
    text-align: center;
    font-family: "Outfit";
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2em;
}

.hero-content .hero-buttons {
    padding-top: 100px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.hero-buttons a {
    background-color: #FFD300;
    padding: 10px 30px 10px 30px;
    color: #141414;
    font-weight: 300;
    font-family: "Outfit";
    text-decoration: none;
    font-size: 1.5em;
    border: 1px solid #141414;
    text-transform: uppercase;
    transition: ease-in-out .3s;
}

.hero-buttons a:hover {
    background-color: #141414;
    color: #FFD300;
    border: 1px solid #FFD300;
}




.about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 0 100px 0;
    background-color: #141414;
}

.features {
    display: flex;
}

.about-container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-desc {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    flex-direction: column;
}

.about-desc h2 {
    color: #FFD300;
    font-size: 2.6em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Oxanium";
}

.about-desc p {
    font-family: "Outfit";
    color: #ffffff;
    font-size: 1.2em;
}

.time,
.profesores {
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
}

.features img {
    width: 80%;
    border-radius: 3px;
}

.features p {
    font-family: "Outfit";
    background-color: #141414;
    padding: 10px 30px 10px 30px;
    position: relative;
    top: -40px;
    color: #FFD300;
    font-size: 1.2em;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    width: 80%;
    gap: 30px;
    padding-top: 70px;
    align-items: center;
}

.content-card {
    background-color: #FFD300;
    padding: 20px;
    display: flex;
    gap: 10px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content-card img {
    width: 40%;
}

.content-card h4 {
    font-family: "Oxanium";
    font-weight: 400;
    font-size: 1.2em;
}

.content-card p {
    font-family: "Outfit";
    font-weight: 300;
    text-align: center;
}




.testimonial {
    background-color: #000000d0;
    padding: 100px 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testomonial-container {
    width: 80%;
}

.testimonial h2 {
    margin: 0;
    font-family: 'Oxanium', serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 3em;
    line-height: 1.05;
    color: #FFD300;
}

.testimonial .eyebrow {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.6px;
    color: var(--muted);
}

.testimonial p.lead {
    margin: 6px 0 0 0;
    color: rgba(230, 238, 248, 0.84);
    font-family: "Outfit";
    font-size: 1.2em;
    font-weight: 300;
    text-transform: uppercase;
}

.testimonial .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.testimonial .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 5px;
    font-family: "Outfit";
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: transform .45s cubic-bezier(.2, .9, .2, 1), box-shadow .45s;
    backdrop-filter: blur(6px) saturate(120%);
}

.testimonial .card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.7);
}

.testimonial .quote {
    font-size: 1em;
    line-height: 1.5;
    color: var(--muted);
    margin: 6px 0 16px 0;
    min-height: 88px;
}

.testimonial .meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.testimonial .avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    display: grid;
    place-items: center;
}

.testimonial .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.testimonial .meta .name {
    font-weight: 600;
    color: #fff;
}

.testimonial .meta .role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6)
}

.testimonial .rating {
    margin-left: auto;
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
}

.testimonial .star {
    width: 16px;
    height: 16px;
    display: inline-block
}

.testimonial .card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    background: var(--accent);
    opacity: 0.07;
    transform: rotate(25deg);
    filter: blur(18px);
    pointer-events: none;
}

.testimonial .qmark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

.swiper-wrapper {
    padding: 50px 0;
}

.swiper-slide {
    margin: 0 80px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    background: #FFD300;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.swiper-button-prev i,
.swiper-button-next i {
    color: #141414;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #FFD300;
    transform: scale(1.1);
}






.inscription {
    display: flex;
    align-items: center;
    background-color: #141414;
    justify-content: center;
    flex-direction: column;
}

.inscription-container {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0 100px 0;
    flex-direction: column;
}

.inscription-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inscription-image {
    width: 100%;
}

.inscription-image img {
    width: 90%;
    mask-image: linear-gradient(black 80%, transparent);
}

.inscription-desc h2 {
    font-family: "Oxanium";
    text-transform: uppercase;
    font-size: 3em;
    color: #FFD300;
    font-weight: 500;
}

.inscription-desc p {
    font-family: "Outfit";
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    color: #ffffff;
    font-size: 1.2em;
}

.inscription-times {
    display: flex;
    padding-top: 100px;
    gap: 30px;
    width: 50%;
    flex-direction: column;
}

.inscription-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.inscription-card img {
    width: 30%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
}

.inscription-card p {
    padding: 30px 80px 30px 80px;
    background-color: #ffffff;
    font-family: "Outfit";
    font-weight: 400;
    position: relative;
    top: -20px;
    font-size: 1.2em;
    border-radius: 3px;
    cursor: pointer;
    width: 50%;
    transition: ease-in-out .3s;
    text-transform: uppercase
}

.inscription-card:hover p {
    background-color: #FFD300;
}

.inscription-ubi {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.inscription-ubi h3 {
    font-family: "Oxanium";
    font-size: 2.9em;
    color: #FFD300;
    text-transform: uppercase;
}

.inscription-ubi p {
    color: #ffffff;
    font-size: 1.3em;
    font-family: "Outfit";
    text-transform: uppercase;
    text-align: center;
}

.inscription-ubi a {
    background-color: #141414;
    color: #FFD300;
    border: 1px solid #FFD300;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    font-family: "Outfit";
    text-transform: uppercase;
    margin-top: 30px;
}


.action {
    background-color: #FFD300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0 70px 0;
}

.action-container {
    background-color: #FFD300;
    display: flex;
    width: 80%;
    align-items: center;
    justify-content: center;
}

.action-title {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.action-title h3 {
    font-family: "Oxanium";
    text-transform: uppercase;
    font-weight: 500;
    font-size: 5em;
}

.action-title p {
    font-family: "Outfit";
    text-transform: uppercase;
    font-size: 1.2em;
}

.action-buttons {
    padding-top: 30px;
}

.action-buttons a {
    text-decoration: none;
    color: #FFD300;
    background-color: #141414;
    font-family: "Outfit";
    font-size: 1.2em;
    border: 1px solid #141414;
    text-transform: uppercase;
    transition: ease-in-out .3s;
    padding: 10px 40px 10px 40px;
}

.action-buttons a:hover {
    background-color: #FFD300;
    color: #141414;
}

.action-img {
    display: flex;
    width: 60%;
    align-items: end;
    justify-content: end;
}

.video {
    margin-top: 50px;
}

.video video {
    border-radius: 10px;
    object-fit: cover;
    height: 80vh;
}



.contact {
    background-color: #000000c0;
    display: flex;
    padding: 100px 0 100px 0;
    align-items: center;
    justify-content: center;
}

.contact-container {
    width: 80%;
    display: flex;
    background-color: #141414;
}

.wrap {
    min-height: 100%;
}

.card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 100px;
}

.banner {
    width: 90%;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

form {
    display: grid;
    gap: 1rem;
    width: 100%;
    font-family: "Outfit";
}

.form-title {
    padding-bottom: 60px;
}

.form-title p {
    color: #ffffff;
    font-family: "Outfit";
    text-align: justify;
}

.form-title h3 {
    color: #FFD300;
    font-family: "Oxanium";
    text-align: center;
    font-size: 3em;
    text-transform: uppercase;
    font-weight: 400;
}

.grid {
    display: grid;
    gap: 1rem;
}

label {
    display: block;
    font-weight: 200;
    font-family: "Outfit";
    margin-bottom: .35rem;
    color: #ffffff;
}

.field {
    position: relative;
}

input,
textarea,
select {
    width: 100%;
    color: #ffffff;
    border: 1px solid #FFD300;
    background-color: #141414;
    border-radius: 2px;
    padding: .95rem 1rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s, transform .05s ease;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #FFD300;
    font-family: "Outfit";
}

input:focus,
textarea:focus {
    border-color: 1px solid #FFD300;
}

.hint {
    margin-top: .35rem;
    font-size: .85rem;
    color: var(--muted);
}

.actions {
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: .25rem;
}

.btn {
    border: none;
    cursor: pointer;
    font-family: "Outfit";
    text-transform: uppercase;
    color: #141414;
    font-weight: 300;
    width: 100%;
    font-size: 1.1em;
    padding: .9rem 1.15rem;
    background-color: #FFD300;
    border: 1px solid #FFD300;
    border-radius: 1px;
    transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.required {
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.status {
    font-size: .95rem;
}

.note {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--muted);
}

.dot {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}




footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
    background-color: #ffffff;
}

.footer-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.footer-img {
    width: 30%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.footer-sotial a {
    text-decoration: none;
    background-color: #141414;
    color: #FFD300;
    padding: 10px;
    border-radius: 3px;
    font-size: 1.4em;
}

.footer-img img {
    width: 100%;
}

.footer-call {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
}

.footer-call h5 {
    font-family: "Oxanium";
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 600;
}

.acreditacion{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.acreditacion h4{
    font-family: "Oxanium";
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 600;
    color: #141414;
}
.acreditacion img{
    width: 100%;
    margin-top: 10px;
}
.footer-call a {
    background-color: #FFD300;
    color: #141414;
    text-decoration: none;
    border: 1px solid #141414;
    font-family: "Outfit";
    padding: 10px 30px 10px 30px;
}

.footer-maps h5 {
    font-family: "Oxanium";
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-maps iframe {
    width: 100%;
}

.derechos {
    background-color: #141414;
    width: 100%;
    padding: 10px 0;
}

.derechos p {
    color: #ffffff;
    text-align: center;
    font-family: "Outfit";
}

.derechos a {
    color: #FFD300;
    text-decoration: none;
}


.fondo {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
}


#contador-visitas {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-family: "Outfit";
    background-color: #FFD300;
    padding: 10px 30px 10px 30px;
    border: 1px solid;
}


.galeria {
    padding: 100px 0;
    background-color: #141414;
}

.galeria .container {
    width: 80%;
}

.galeria h2 {
    text-align: center;
    font-family: "Oxanium";
    color: #FFD300;
    text-transform: uppercase;
    font-size: 3em;
    font-weight: 400;
}

.galeria p {
    text-align: center;
    color: #FFFFFF;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Outfit";
}

.galeria .swiper {
    width: 100%;
}

.galeria .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.galeria .card {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: transform .35s cubic-bezier(.2, .9, .3, 1), box-shadow .25s;
    transform-origin: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0;
}

.galeria .card img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    transition: transform .6s ease;
}

.galeria .card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.galeria .card:hover img {
    transform: scale(1.07) rotate(.8deg);
}

.galeria .swiper-button-next,
.galeria .swiper-button-prev {
    color: #FFD300;
}

.galeria .swiper-pagination-bullet {
    background: #FFD300;
}

.galeriaSwiper .swiper-slide {
    margin: 10px !important;
}



@media screen and (max-width: 470px) {
    body {
        overflow-x: hidden;
    }

    header {
        display: none;
    }

    .hero {
        height: 60vh;
    }

    .hero-container {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content h2 {
        font-size: 1.5em;
    }

    .hero-buttons a {
        font-size: 0.9em;
    }

    

    .about-desc h2 {
        font-size: 1.9em;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .features {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .time,
    .profesores {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .features img {
        width: 100%;
    }

    .features p {
        font-size: 1em;
        top: -20px;
    }



    .inscription-desc h2 {
        font-size: 1.9em;
        text-align: center;
    }

    .inscription-desc p {
        font-size: 1em;
    }

    .inscription-times {
        flex-direction: column;
        width: 100%;
    }

    .inscription-card::before {
        content: none;
    }

    .inscription-card p {
        width: auto;
    }

    .inscription-card img {
        width: 100%;
    }

    .inscription-content {
        flex-direction: column;
    }


    .action-title {
        align-items: center;
        justify-content: center;
    }

    .action-title h3 {
        text-align: center;
        font-size: 2em;
    }

    .action-container {
        flex-direction: column;
    }

    .action-title p {
        text-align: center;
        font-size: 1em;
    }

    .action-buttons {
        display: flex;
        gap: 5px;
    }

    .action-buttons a {
        font-size: 0.9em;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .video video {
        border-radius: 10px;
        height: 80vh;
        object-fit: cover;
    }




    .contact-container {
        flex-direction: column;
        width: 90%;
        gap: 20px;
    }

    .form-title h3 {
        font-size: 2em;
    }

    .card {
        padding: 20px 10px 20px 10px;
    }

    .banner {
        width: 100%;
    }

    .form-title {
        padding-bottom: 30px;
    }

    .form-title p {
        font-size: 1em;
    }


    .footer-container {
        flex-direction: column;
        gap: 60px;
    }

    .footer-img {
        width: 100%;
    }

    .footer-call {
        align-items: start;
    }



    .testimonial h2 {
        font-size: 2em;
    }

    .testimonial p.lead {
        font-size: 1em;
    }

    .swiper-slide {
        margin: 0 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px;
        top: 250px !important;
    }

    .swiper-button-prev {
        left: 0 !important;
    }

    .swiper-button-next {
        right: 0 !important;
    }
}