* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --negro: #000000;
    --blanco: #ffffff;
    --rojo: #EA4826;
}
body,
html {
    font-family: "Manrope", sans-serif;
    height: 100%;
}
h1, h2, h3, p, li, a{
    color: var(--negro);
}
.FontDidot{
    font-family: 'Didot';
}
.FontMovix {
    font-family: 'Movix' !important;
    font-size: 45px;
    color: var(--negro);
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--negro);
    z-index: 9999;
    /*transition: all 1s ease-out;*/
}
.header {
    width: 100%;
    padding: 80px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
}
.nav ul {
    display: flex;
    gap: 20px;
}
.nav ul li{
    list-style: none;
    margin: 0 20px;
}
.nav a {
    text-decoration: none;
    font-weight: bold;
}
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.logo {
    width: 42rem;
    height: auto;
    opacity: 1;
    margin-bottom: 80px;
}
.dateSocial{
    position: absolute;
    bottom: 200px;
}
.date {
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--negro);
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 80px 0 -160px;
}
.social-links a {
    text-decoration: none;
    font-size: 1.5rem;
}
.social-links a img{
    padding: 22px;
}
.social-links a svg{
    padding: 18px;
}
.social-links .x svg{
    padding: 0;
}
.social-links a svg path{
    transition: fill 0.3s ease;
}
.social-links a:hover svg path {
    fill: #FF0000;
}
.scroll-indicator {
    right: 30px;
    position: absolute;
    bottom: 20px;
    font-size: 4.5rem;
    animation: bounce 2s infinite;
    text-decoration: blink;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/*----TEXTO ANIMADO--------------------*/
/*-------------------------------------*/
.animateText{
    background-color: var(--negro);
    padding: 100px 160px;
}
.animateText .reveal-type{
    font-size: 50px;
}

/*----FONDO ANIMADO--------------------*/
/*-------------------------------------*/
.background-image {
    position: relative;
    left: 0;
    width: 100%;
    height: 50vh;
    background: url(../img/banner/img-1.gif);
    background-size: 100%;
    background-position: center;
    z-index: -1;
    opacity: 0.9;
}
.image-two {
    position: relative;
    left: 0;
    width: 100%;
    height: 50vh;
    background: url(../img/banner/img-2.gif);
    background-size: 50%;
    background-position: center;
    z-index: -1;
    opacity: 0.9;
}

/*----MARQUEE--------------------------*/
/*-------------------------------------*/
marquee{
    font-size: 20px;
    letter-spacing: 16px;
    padding: 40px 0;
}

/*----TABLA----------------------------*/
/*-------------------------------------*/
.table-container {
    width: 90%;
    margin: 20px auto 0;
    border-bottom: 1px solid var(--negro);
}
.table-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--negro);
}
.table-header span{
    font-weight: bold;
}
.header-item {
    flex: 1;
    text-align: center;
}
.table-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--negro);
    align-items: center;
}
.table-link{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    padding: 20px 0;
    transition: all .3s;
}
.table-link:hover{
    background-color: var(--negro);
    color: var(--blanco);
    padding: 20px;
}
.table-link.red:hover {
    background-color: #EC2227;
    color: var(--blanco);
    padding: 20px;
}
.row-item {
    flex: 1;
    text-align: center;
    font-size: 28px;
}
.row-item .textSmall{
    color: var(--negro);
    font-size: 16px;
    transition: all .3s;
}
.table-link.red:hover > .row-item .textSmall{
    color: var(--blanco);
}
.row-item small{
    font-family: 'Didot';
    font-style: italic;
}
.table-link:hover>.row-item .FontMovix {
    color: var(--blanco);
}
.plus-sign {
    flex: 0 0 30px;
    font-size: 5.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: rotate(45deg);
}
.table-link:hover>.plus-sign {
    transform: rotate(0deg);
}
/*----GIF--------------------------*/
/*-------------------------------------*/
.gif{
    display: flex;
    flex-wrap: wrap;
}
.gif img{
    width: 33.33%;
}
/*----CARROUSEL --------------------------*/
/*-------------------------------------*/
.swiper {
    min-width: 100%;
    height: auto;
}
.swiper2{
    height: auto;
}
.swiper1 .swiper-slide {
    background-color: var(--negro);
    padding: 80px;
    height: auto;
    display: flex;
    align-items: center;
}
.swiper2 .swiper-slide {
    background-color: var(--rojo);
    padding: 80px;
    height: auto;
    display: flex;
    align-items: center;
}
.carousel-box {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}
.slide-text h2{
    font-family: 'Didot';
    font-size: 60px;
    margin-bottom: 30px;
    color: var(--blanco);
}
.slide-text h2, p{
    color: var(--blanco);
}
.slide-text a{
    color: var(--blanco);
    margin: 16px 0;
    display: flex;
    text-decoration: none;
    font-family: 'Didot';
    font-style: italic;
    font-size: 18px;
    align-items: center;
    transition: all .3s;
}
.slide-text a:hover{
    color: var(--rojo);
}
.slide-text a svg {
    padding: 18px 0;
    margin-left: -16px;
}
.slide-text a svg path {
    transition: fill 0.3s ease;
    fill: var(--blanco);
}
.slide-text a:hover svg path {
    fill: #FF0000 !important;
}
.linkInsta{
    color: var(--negro) !important;
}
.linkInsta svg path {
    transition: fill 0.3s ease;
    fill: var(--negro) !important;
}
a.linkInsta:hover{
    color: var(--blanco) !important;
}
a.linkInsta:hover > svg path {
    fill: var(--blanco) !important;
}
.slide-image {
    margin: 0 40px 0;
    max-width: 365px;
    height: fit-content;
}
.slide-text {
    max-width: 600px;
    margin-left: 20px;
}
.slide-dots {
    margin-top: 10px;
}
.dot {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: var(--rojo);
    border-radius: 50%;
    margin: 40px -2px;
}
.Black{
    color: var(--negro) !important;
}
.DotBlack {
    background-color: var(--negro);
}
.prev {
    left: 60px;
}
.next {
    right: 60px;
}
.next svg{
    position: absolute;
    top: -150px;
    width: 150px;
}
.prev svg {
    position: absolute;
    top: 134px;
    width: 150px;
    rotate: 180deg;
}
.swiper-button-next:after {
    content: none;
}
.swiper-button-prev2:after {
    content: none;
}
/*----PATROCINADORES --------------------------*/
/*-------------------------------------*/
.aliados{
    text-align: center;
    color: var(--negro);
    font-size: 40px;
    font-family: 'Didot';
    margin-bottom: 40px;
}
.patrocinadores{
    padding: 100px 0;
}
.patrocinadores img{
    width: 100%;
}
.patrocinadores .logos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.patrocinadores .logos hr {
    background: var(--negro);
    height: 300px;
    margin: 80px 50px;
}
.patrocinadores .logos a{
    display: block;
}
.patrocinadores .logos a img{
    width: 210px;
}
.allLogos{
    display: flex;
    width: 760px;
    flex-wrap: wrap;
}
.allLogos img{
    width: 190px !important;
}
/*----FORMULARIO --------------------------*/
/*-------------------------------------*/
form{
    background-color: var(--rojo);
    min-width: 100%;
}
form .formBox{
    width: 1000px;
    margin: auto;
    display: block;
    padding: 100px 20px;
}
form .formBox h3{
    text-align: center;
    font-size: 5rem;
}
form .formBox div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 100px;
}
form .formBox div .input {
    padding: 28px 25px;
    font-size: 24px;
    border: 3px solid var(--negro);
    border-radius: 65px;
    outline: none;
    background-color: #fff;
    color: #000;
    width: 290px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}
.input-full {
    flex: 1 1 100%;
    max-width: 600px;
}
form .formBox div .submit-button{
    cursor: pointer;
    background-color: var(--rojo);
    transition: all .3s;
}
form .formBox div .submit-button:hover{
    background-color: var(--negro);
    color: var(--rojo);
}
/*----SUBSCRIBIRSE --------------------------*/
/*-------------------------------------*/
footer{
    background-color: var(--negro);
}
.subscribe-section{
    width: 1000px;
    margin: auto;
    display: block;
    padding: 100px 20px;
    text-align-last: center;
}
.subscribe-form{
    display: flex;
    background-color: var(--negro);
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.email-input{
    padding: 28px 25px;
    font-size: 24px;
    border: 2px solid var(--blanco);
    border-radius: 65px;
    outline: none;
    background-color: var(--negro);
    color: #000;
    width: 600px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}
.subscribe-button{
    padding: 28px 25px;
    font-size: 24px;
    border: 2px solid var(--blanco);
    border-radius: 65px;
    outline: none;
    width: 290px;
    color: var(--negro);
    background-color: var(--blanco);
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    transition: all .3s;
}
.subscribe-button:hover{
    background-color: var(--rojo);
    border: 2px solid var(--rojo);
}
.logo-container .logo{
    width: 300px;
    margin: 50px 0;
}
.legals{
    font-size: 18px;
    color: var(--blanco);
    text-decoration: none;
}
.textoLegales{
    width: 100%;
    padding: 300px 100px 100px;
}
.textoLegales h1 {
    margin-bottom: 16px;
}
.textoLegales p{
    color: var(--negro);
    margin-bottom: 16px;
}
.textoLegales ul, li {
    margin-bottom: 16px;
}
@media (max-width: 1024px){
    .header {
        justify-content: center;
    }
    .animateText {
        padding: 100px 80px;
    }
    .row-item {
        font-size: 24px;
    }
    .plus-sign {
        font-size: 4.5rem;
    }
    .background-image {
        height: 20vh;
        background-size: 120% !important;
    }
    .patrocinadores {
        padding: 100px 80px;
    }
    .next svg{
        top: 180px;
    }
    form .formBox {
        width: 100%;
        padding: 100px 80px;
    }
    .input-full {
        max-width: fit-content;
    }
    .subscribe-section{
        width: 100%;
    }
    .email-input{
        width: fit-content;
    }
    .logos div{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .hrDos{
        display: none;
    }
    .allLogos {
        width: 100%;
        justify-content: center;
    }
    .patrocinadores .logos hr {
        height: auto;
        width: 100%;
        margin: 20px;
    }
    .hrDos {
        display: block;
    }
}
@media (max-width: 768px) {
    .logo {
        width: 38rem;
    }
    .date {
        font-size: 1.8rem;
    }
    .animateText {
        padding: 100px 50px;
    }
    .animateText .reveal-type {
        font-size: 40px;
    }
    .table-header {
        display: none;
        /* Oculta el encabezado en móviles */
    }
    .table-row {
        display: block;
    }
    .table-link {
        display: block;
        overflow: hidden;
    }
    .row-item {
        display: block;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
    }
    .row-item:before {
        content: attr(data-label);
        /* Muestra el encabezado antes del contenido */
        font-weight: bold;
        margin-right: 10px;
    }
    .plus-sign {
        align-self: flex-end;
        margin-top: 10px;
        rotate: 45deg;
    }
    .FontMovix{
        font-size: 35px;
        text-align: center;
        max-width: 100%;
    }
    .slide-text {
        max-width: 100%;
    }
    .slide-image {
        margin: 0 auto 0;
        width: 240px;
        height: auto !important;
        display: block;
    }
    .carousel-box{
        display: block;
    }
    .slide-text h2{
        margin: -80px 0 50px;
    }
    .next{
        top: 73%;
    }
    .patrocinadores {
        padding: 100px 20px;
    }
    .swiper2 .slide-text h2 {
        margin: 0 0 30px 0;
    }
    .next svg {
        top: 60px;
    }
    form .formBox h3 {
        font-size: 3rem;
    }
    form .formBox div .input{
        width: 100%;
    }
    .input-full{
        max-width: 100%;
    }
    .email-input{
        width: 100%;
    }
    .subscribe-button{
        width: 100%;
    }
    .subscribe-section {
        padding: 100px 80px;
    }
    .textoLegales {
        padding: 200px 24px 100px;
    }
    .image-two{
        background-position-x: center !important;
    }
}
@media (max-width: 430px){
    .nav ul li {
        margin: 0 8px;
    }
    .logo {
        width: 85%;
    }
    .social-links {
        margin: 20px 0 -100px;
    }
    .dateSocial {
        bottom: 180px;
    }
    .date {
        font-size: 1.5rem;
        font-weight: bold;
    }.scroll-indicator {
        font-size: 3rem;
    }
    .animateText .reveal-type {
        font-size: 30px;
    }
    .FontMovix {
        font-size: 24px;
    }
    .row-item {
        font-size: 18px;
    }
    .plus-sign {
        font-size: 30px !important;
    }
    .gif img {
        width: 100%;
    }
    .background-image {
        height: 26vh;
        background-size: 200% !important;
    }
    .next{
        top: 78%;
        right: 0;
        font-size: 50px;
    }
    .next svg {
        top: 60px;
        right: 0;
    }
    .swiper .swiper-slide {
        padding: 80px 20px;
    }
    .input{
        width: 100%;
    }
    form .formBox h3 {
        font-size: 2rem;
    }
    form .formBox{
        padding: 100px 20px;
    }
    .subscribe-section {
        padding: 100px 20px;
    }
    .allLogos img {
        width: 170px !important;
    }
    .patrocinadores .logos a img {
        width: 161px;
    }
}