@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Electrolize&family=Rock+Salt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rampart+One&display=swap');


    .overlay-content, .overlay{
        display: none;
    }

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
    font-size: 20px;
}

body{
    background-color: #ffffff;
}

.cuadricula{
    background-image: url(../src/fondo7.jpg); 
}



.titulo_seccion{
    text-align: center;
    margin: 75px;
    font-size: 75px;
    letter-spacing: 10px;
    position: relative;
    display: flex;
    color: #fff;
    background: linear-gradient(90deg, #f35925, #bae713, #f35925);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: cindy 5s linear infinite;
    justify-content: center;
}

@keyframes cindy {
  to {
    background-position: 200% center;
  }
}




/*Anuncios*/
header {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px;
    font-weight: bold;
    background-color: #ffffff00;
    color: rgb(3, 3, 3);
}

.anuncios {
    display: inline-block;
    padding-left: 100%;
    animation: javier 15s linear infinite;
}

@keyframes javier {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}



/*Barra de navegación*/
.nav_prin{
    background-color:rgb(0, 0, 0);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 85px;
    padding: 5px 10%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.nav_prin a{
    text-decoration: none;  
}

.nav_prin .logo{
    cursor: pointer;
    margin-right: auto;
}

.nav_prin .logo img{
    height: 70px;
    width: auto;
    transition: all 0.3s;
}

.nav_prin .logo img:hover{
    transform: scale(1.2);
}

.nav_prin .nav_enlaces{
    list-style: none;
}

.nav_prin .nav_enlaces li{
    display: inline-block;
    padding: 0 20px;    
}

.nav_prin .nav_enlaces a{
    font-size: 700;
    color: #eceff1; 
}

.nav_prin .nav_enlaces a:hover{
    color: #bae713;
}

.menu {
    display:none;
}

.nav_prin .btn button, .nav_prin .menu button{
    margin-left: 20px;
    font-weight: 700;
    color: #000000;
    padding: 9px 25px;
    background: #bae713;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease, background-color 0.3s, color 0.3s;
}

.nav_prin .btn button:hover, .nav_prin .menu button:hover{
    background-color: #e2f1f8;
    color: #bae713;
    transform: scale(1.1);
}

/*Index*/
.portada {
    width: 100vw;
    height: 80vh;
    margin: 0;
    position: relative;
    animation: cambiofondo 15s infinite;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 60%, black 100%), url('../src/portada1.png');
}

@keyframes cambiofondo {
  0%   { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 60%, black 100%), url('../src/portada1.png'); }
  25%  { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 60%, black 100%), url('../src/portada2.jpg'); }
  50%  { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 60%, black 100%), url('../src/portada3.jpg'); }
  75%  { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 60%, black 100%), url('../src/portada4.jpg'); }
  100% { background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 60%, black 100%), url('../src/portada1.png'); }
}


.copa_510{
    width: 200px;
    height:200px;
    margin: auto;
    background-image: url(../src/Logo\ Copa\ 510\ Blanco.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    bottom: 40px;
    left: 45vw;
    z-index: 50;
}

.banner{
    width: 100vw;
    margin: auto;
    position: relative;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    margin-top: -1px;


}

.banner .requisitos{
    width: 90%;
    margin: auto;
    max-width: 1300px;
    display: grid;
    grid-template-areas: "primero primero segundo tercero" 
                         "cuarto quinto quinto tercero"
                         "sexto sexto septimo septimo";
    gap: 30px;
    padding: 60px;
}

.primero{
    grid-area: primero;
    background: rgba(0, 0, 0, 0.8);
}

.segundo{
    grid-area: segundo;
    background: rgba(165, 164, 164, 0.465);
}

.tercero{
    grid-area: tercero;
    background: rgba(208, 208, 208, 0.468);
}

.cuarto{
    grid-area: cuarto;
    background: rgba(111, 111, 111, 0.442);
}

.quinto{
    grid-area: quinto;
    background: rgba(75, 75, 75, 0.415);
}

.sexto{
    grid-area: sexto;
    background: rgba(223, 223, 223, 0.419);
}

.septimo{
    grid-area: septimo;
    background: rgba(82, 82, 82, 0.8);
}

.primero, .segundo, .tercero, .cuarto, .quinto, .sexto, .septimo, .octavo{
    padding: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

.requisitos,
.requisitos a,
.requisitos p,
.requisitos ul,
.requisitos li,
.requisitos del {
    color: rgb(252, 240, 240);
    font-family: "Electrolize";
    font-size: 25px;
}

.requisitos h4{
    text-align: center;
    font-size: 40px;
    color: #bae713;
    font-family: "Rock salt";
}

.requisitos h5{
    font-size: 30px;
    color: #f35925;
    margin-bottom: 20px;
}

#waze, .pausa{
    color: #75920a !important;
}

.promo{
    width: 100vw;
    background: linear-gradient(to right, #bae713 10%, #f35925 100%);
    height: 800px;
    padding: 50px;
    display: grid;
    grid-template-areas:"uno dos";
    grid-template-columns: 2fr 2fr;
    align-items: center;
    
}

#promo_img{
    background: linear-gradient(to left, rgba(0, 0, 0, 0.879), rgba(0, 0, 0, 0)),
    url('../src/listo.jpg') no-repeat center;
    background-size: cover;
    height: 700px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    border: solid 2px #ffffff;
    border-right: 2px solid rgb(0, 0, 0);
    grid-area: uno;
}

#promo_img h3{
    color: #ffffff;
    font-family: "Orbitron";
    font-size: 125px;
    grid-area: dos;
}

#promo_img h3 span{
    color: #bae713;
    font-family: "Orbitron";
    font-size: 125px;
    grid-area: dos;
}

#promo_info{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 2px solid #ffffff;
    border-left: 2px solid rgba(0, 0, 0, 0);
}

#promo_info a{
    font-family: "Orbitron";
    text-decoration: none;
    font-size: 30px;
    color: #000000;
    padding: 9px 25px;
    background: #bae713;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease, background-color 0.3s, color 0.3s;
}

.informativo{
    width: 60vw;
    max-width: 1000px;
    position: relative;
    border: 2px solid #00000000;
    margin: auto;
    height: 700px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.informativo p{
    font-size: 30px;
    text-align: center;
}

.informativo p:last-child{
    font-size: 25px;
    text-align: center;
}


.informativo h5{
    font-size: 40px;
    letter-spacing: 15px;
    color: #f35925;
    font-family: "Electrolize";
    text-align: center;
    margin-top: 20px;
    margin-bottom: 100px;

}

/*Contacto*/
.fijo{
    position: fixed;
    top: 100px;
    left: 50px;
    width: 300px;
    z-index: 50;
    background-color: #000000e2;
    border: 2px solid rgb(0, 0, 0);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    animation: expandir .4s ease-out forwards;
}

@keyframes expandir{
    from{
        height: 0;
        line-height: 0;
    }
    to{
        height: 180px;
        line-height: 1;
    }
}

.fijo p{
    color: white;
    text-align: center;
}

.fijo a{
    color: #f35925;
    text-align: center;
}

.contactos{
    width: 100vw;
    height: fit-content;
}

.pop_up{
    display: none;
}

.desc_jovenes{
    text-align: center;
    width: 60vw;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 100px;
    font-size: 25px;
}

.iba{
    display: grid;
    width: 60%;
    max-width: 1000px;
    height: 500px;
    width: 100vw;
    margin: auto;
    grid-template-areas: "img7 iba1 img8 tit_iba"
                        "iba2 img9 iba3 tit_iba";
    grid-template-columns: 1fr 1fr 1fr 2fr;
    margin-bottom: 100px;
}

.tit_iba{
    grid-area: tit_iba;
    color: #000000;
    font-size: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border-radius: 8px;
    background-color: #2536f328 !important;
}

.img7{
    grid-area: img7;
    background-image: url(../src/epico1.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.img8{
    grid-area: img8;
    background-image: url(../src/epico2.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.img9{
    grid-area: img9;
    background-image: url(../src/epico3.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.iba1{
    grid-area: iba1;
    margin: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.iba2{
    grid-area: iba2;
    margin: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.iba3{
    grid-area: iba3;
    margin: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.tit_iba, .iba1, .iba2, .iba3{
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    border: 1px solid rgba(255, 255, 255, 0.47);
}

.iba a, .iba a:visited{
    color: #2c25f3;
}







.epico{
    display: grid;
    width: 60%;
    max-width: 1000px;
    height: 500px;
    width: 100vw;
    margin: auto;
    grid-template-areas: "tit_epico img1 epico1 img2"
                        "tit_epico epico2 img3 epico3";
    grid-template-columns: 2fr 1fr 1fr 1fr;
    margin-bottom: 85px;
}

.tit_epico{
    grid-area: tit_epico;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border-radius: 8px;
    gap: 20px;
    background-color: #b9e7131b !important;
}

.tit_epico img, .tit_atemporal img{
    height: 150px;
}

.tit_epico p, .tit_atemporal p{
    font-size: 20px;
    color: #00000098;
}



.img1{
    grid-area: img1;
    background-image: url(../src/epico1.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.img2{
    grid-area: img2;
    background-image: url(../src/epico2.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.img3{
    grid-area: img3;
    background-image: url(../src/epico3.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.epico1{
    grid-area: epico1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.epico2{
    grid-area: epico2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.epico3{
    grid-area: epico3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.tit_epico, .epico1, .epico2, .epico3{
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    border: 1px solid rgba(255, 255, 255, 0.47);
}

.epico a, .epico a:visited{
    color: #bae713;
}

.atemporal{
    display: grid;
    width: 60%;
    max-width: 1000px;
    height: 500px;
    width: 100vw;
    margin: auto;
    grid-template-areas: "img4 atemp1 img6 tit_atemporal"
                        "atemp2 img5 atemp3 tit_atemporal";
    grid-template-columns: 1fr 1fr 1fr 2fr;
    margin-bottom: 100px;
}

.tit_atemporal{
    grid-area: tit_atemporal;
    color: #000000;
    font-size: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    border-radius: 8px;
    background-color: #f3582529 !important;
}

.img4{
    grid-area: img4;
    background-image: url(../src/atemp1.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.img5{
    grid-area: img5;
    background-image: url(../src/atemp2.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.img6{
    grid-area: img6;
    background-image: url(../src/atemp3.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    border-radius: 8px;
}

.atemp1{
    grid-area: atemp1;
    margin: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.atemp2{
    grid-area: atemp2;
    margin: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.atemp3{
    grid-area: atemp3;
    margin: 2px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    gap: 30px;
    border-radius: 8px;
}

.tit_atemporal, .atemp1, .atemp2, .atemp3{
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    border: 1px solid rgba(255, 255, 255, 0.47);
}

.atemporal a, .atemporal a:visited{
    color: #f35925;
}
















/*Reglamento*/

.justificacion{
    color: rgb(0, 0, 0);
    text-align: center;
    justify-content: center;
    width: 60vw;
    max-width: 1000px;
    margin: auto;
    font-size: 20px;
    margin-bottom: 100px;
}

.justificacion a, .justificacion a:visited{
    font-size: 20px;
    color: #f35925;
}


.reglamento h4{
    text-align: center;
    font-size: 30px;
    margin-top: 60px;
    color: #f35925;

}

.reglamento ul li{
    margin: 15px;
    font-size: 20px;
}

.reglamento {
    position: relative;
    width: 60vw;
    max-width: 1000px;
    background-color: #f9f9f980;
    margin: auto;
    margin-bottom: 200px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-radius: 8px;
    z-index: 50;
}

.reglamento::before,
.reglamento::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 40px;
    background: rgba(224, 224, 89, 0.5);
    top: -10px;
    z-index: 75;
}

.reglamento::before {
    left: -10px;
    transform: rotate(-30deg);
}

.reglamento::after {
    right: -10px;
    transform: rotate(30deg);
}

.tape_abajo_izquierda,
.tape_abajo_derecha{
    content: "";
    position: absolute;
    width: 120px;
    height: 40px;
    background: rgba(224, 224, 89, 0.5);
    bottom: -10px;
    z-index: 75;
}

.tape_abajo_izquierda{
    left: -10px;
    transform: rotate(20deg);
}

.tape_abajo_derecha{
    right: -10px;
    transform: rotate(-30deg);
}

details {
    padding: 20px;
    width: 60%;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 20px;
    height: fit-content;
    text-align: center;
    border-radius: 8px;
    background: #f9f9f980;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

details:last-child{
    margin-bottom: 50px;
}

.faq summary{
    border-bottom: 1px solid #bae713;
}


summary {
    list-style: none;
    position: relative;
    cursor: pointer;
    padding-right: 1.5em;
}

summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(90deg);
  content: "X";
}


/*Pre Inscripción*/
.cont_advertencia{
    width: 60vw;
    max-width: 1000px;
    height: 800px;
    margin: auto;
    background-image: url(../src/albitro2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
}


.advertencia{
    margin: auto;
    padding: 60px;
    align-items: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(218, 218, 218, 0.8);
    backdrop-filter: blur(9.2px);
    -webkit-backdrop-filter: blur(9.2px);
    border: 1px solid rgb(232, 224, 224);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.advertencia li{
    margin-bottom: 10px;
    font-size: 25px;
}

.advertencia a{
    font-size: 25px;
    color: #335c00;
}

.advertencia #vamos{
    width: 80%;
    margin-top: 40px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    color: #000000;
    padding: 18px 50px;
    background: #bae713;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease, background-color 0.3s, color 0.3s;
}

/*Inscripción*/
.form h3{
    text-align: right;
    font-size: 30px;
    color: #b0b0b0;
    margin: 10px;
}

.cont_nophone{
    display: none;
}

.form{
    width: 50vw;
    padding: 30px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    border-radius: 8px;
    background-color: #b9e7131f;
    border-radius: 8px;
}

.form .controls{
    width: 100%;
    background-color: #ffffff00;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    border: solid 2px #bae713;
}

.form p{
    height: 40px;
    text-align: center;
}

.form a{
    text-decoration: none;
    color: blue;

}

.form a:hover{
    text-decoration: underline;
}

.form .botons{
    width: 100%;
    padding: 12px;
    margin: 15px 0;
}

.form .registrar{
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    background-color: #bae713;
}

.form input, .form textarea, .form select{
    margin-bottom: 20px;
}

label span{
    color: rgba(0, 0, 0, 0.597);
}

/*Resultados*/
.resultados_wall{
    background-image: url(../src/wallabispa.avif);

}

.justificacion2{
    color: rgb(0, 0, 0);
    text-align: center;
    justify-content: center;
    width: 60vw;
    max-width: 1000px;
    margin: auto;
    font-size: 25px;
    margin-bottom: 100px;
}

.tabla_resultados, .tabla_resultados2, .tabla_resultados3{
    width: 50vw;
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: rgba(201, 201, 201, 0.149);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.1px);
    -webkit-backdrop-filter: blur(3.1px);
    border: 1px solid #bae713;
    border-radius: 8px;
    padding: 20px;
}

.tabla_resultados .encabezado{
    border-bottom: 1px solid #bae713;
}

.tabla_resultados2{
    border: 1px solid #f35925;}
.tabla_resultados2 .encabezado{
    border-bottom: 1px solid #f35925;   
}

.tabla_resultados3{
    border: 1px solid #f325f3;}
.tabla_resultados3 .encabezado{
    border-bottom: 1px solid #f325f3;}

.tabla_resultados h5, .tabla_resultados2 h5, .tabla_resultados3 h5{
    text-align: center;
    padding: 20px;
    font-size: 40px;
    color: rgb(0, 0, 0);
}

.tabla_resultados table{
    color: rgb(0, 0, 0);
}

table tr .rojo{
    color: red;
}

/*Footer*/
footer{
    border-top: 2px solid #bae713;
    padding: 20px;
    background-color: #d2d2d2;
    width: 100%;
    height: 200px;
    display: block;
    text-align: center;
}

footer img{
    height: 75px;
}

footer a, footer a:visited{
    color: black;
}

/*Teléfono*/
@media screen and (max-width: 800px){
    .nav_enlaces, .btn {
        display: none;
    }
    .menu {
        display: inherit;
    }

.overlay-content, .overlay{
        display: flex;
        margin: auto;
    }

.nav_prin a{
    text-decoration: none; 
}

.nav_prin .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0, .8);
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.nav_prin .overlay .overlay-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}

.nav_prin .overlay a{
    padding: 15px;
    font-size: 20px;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    color: #bae713;
}

.nav_prin .overlay a:hover{
    color: #bae713;
}

.nav_prin .overlay .close{
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 65px;
}

/*Index*/
.portada{
    height: 90vh;
}

.copa_510{
    left: 30vw;
}

.banner{
    height: fit-content;
}
.banner .requisitos{
    grid-template-areas: "primero primero"
                         "segundo tercero"
                         "quinto quinto"
                         "cuarto sexto"
                         "septimo septimo";
    gap: 20px;
    width: 100%;
    padding: 20px;
}

.primero, .segundo, .tercero, .cuarto, .quinto, .sexto, .septimo, .octavo{
    padding: 10px;
}

.requisitos,
.requisitos a,
.requisitos p,
.requisitos ul,
.requisitos li,
.requisitos del {
    font-size: 15px;
}

.requisitos h4{
    font-size: 20px;
}

.requisitos h5{
    font-size: 20px;
}

.promo{
    height: fit-content;
    grid-template-areas: "uno" "dos";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 20px;
}

#promo_img{
    height: 350px;
    border: solid 2px #ffffff;
    border-right: 2px solid rgb(255, 255, 255);
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.879), rgba(0, 0, 0, 0)),
    url('../src/listo.jpg') no-repeat center;
}

#promo_img h3, #promo_img h3 span{
    font-size: 75px;
}

#promo_info{
    border-left: 2px solid rgb(255, 255, 255);
    border-top: 2px solid rgba(0, 0, 0, 0)

}

#promo_info a{
    font-size: 25px;
}

.informativo{
    width: 80vw;
    height: fit-content;
}
.informativo p, .informativo p:last-child{
    font-size: 20px;
}

.informativo h5{
    letter-spacing: 5px;
    font-size: 30px;
}

/*Contacto*/

.fijo{
    display: none;
}
.pop_up{
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    width: 75vw;
    font-size: 20px;
    margin-bottom: 50px;
    margin-top: -50px;
    background-color: #000000c6;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 8px;
    padding: 10px;
    color: white;
    animation: expandir .4s ease-out forwards;
}

@keyframes expandir{
    from{
        height: 0;
        line-height: 0;
    }
    to{
        height: 180px;
        line-height: 1;
    }
}


.pop_up a{
    color: #f35925;
}

.contactos div div a{
    font-size: 15px;
}

.fijo{
    top: 100px;
    left: 10px;
    width: 150px;
    padding: 5px;
}

@keyframes expandir{
    from{
        height: 0;
        line-height: 0;
    }
    to{
        height: 100px;
        line-height: 1;
    }
}

.fijo p, .fijo a{
    font-size: 10px;
}

.titulo_seccion{
    width: 100vw;
    font-size: 40px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 75px;
}

.desc_jovenes{
    width: 90vw;
    margin-bottom: 75px;
    font-size: 20px;
}

.iba{
    width: 100vw;
    font-size: 20px;
    margin-bottom: 75px;
    grid-template-areas: "tit_iba tit_iba"
                        "iba1 img7"
                        "img8 iba2"
                        "iba3 img9";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    height: fit-content;
}


.epico{
    width: 100vw;
    font-size: 20px;
    margin-bottom: 75px;
    grid-template-areas: "tit_epico tit_epico"
                        "epico1 img1"
                        "img2 epico2"
                        "epico3 img3";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    height: fit-content;
}

.epico .tit_epico, .atemporal .tit_atemporal{
    flex-direction: row;
    gap: 5px;
    padding: 10px;
}

.tit_epico p, .tit_atemporal p{
    font-size: 15px;
}


.atemporal{
    width: 100vw;
    font-size: 20px;
    margin-bottom: 75px;
    grid-template-areas: "tit_atemporal tit_atemporal"
                        "img4 atemp1"
                        "atemp2 img5"
                        "img6 atemp3";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    height: fit-content;
}

/*Reglamento*/
.justificacion{
    width: 90vw;
    font-size: 20px;
}

.justificacion a, .justificacion a:visited{
    font-size: 20px;
}

.reglamento h4{
    text-align: center;
    font-size: 25px;
    margin-top: 40px;
    color: #f35925;
}

.reglamento ul li{
    margin: 10px;
    font-size: 15px;
}

.reglamento{
    width: 90vw;
    margin-bottom: 75px;
    padding: 20px;
}

.reglamento::before,
.reglamento::after {
    width: 60px;
    height: 20px;
}

.tape_abajo_izquierda,
.tape_abajo_derecha{
    width: 60px;
    height: 20px;
}

details{
    width: 90vw;
}

/*Pre Inscripción*/
.cont_advertencia{
    width: 90vw;
    height: fit-content;
    margin-bottom: 200px;
}

.advertencia{
    padding: 30px;
}

.advertencia li{
    font-size: 20px;
}

.advertencia a{
    font-size: 20px;
}

.advertencia #vamos{
    width: 90%;
}

/*Inscripción*/
.cont_nophone{
    display: flex;
}

.cont_nophone{
    width: 60vw;
    height: fit-content;
    margin: auto;
    display: flex;
    margin-top: 250px;
    margin-bottom: 250px;
}


.no_phone{
    margin: auto;
    padding: 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(218, 218, 218, 0.8);
    backdrop-filter: blur(9.2px);
    -webkit-backdrop-filter: blur(9.2px);
    border: 1px solid rgb(232, 224, 224);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.no_phone li{
    list-style: none;
    text-align: center;
}

.form{
    display: none;
}

/*Resultados*/
.justificacion2{
    width: 90vw;
    font-size: 20px;
    margin-bottom: 50px;
}

.tabla_resultados, .tabla_resultados2, .tabla_resultados3{
    width: 90vw;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px;
}

.tabla_resultados h5, .tabla_resultados2 h5, .tabla_resultados3 h5{
    padding: 10px;
    font-size: 25px;
}

table tr, th{
    font-size: 15px;
    padding: 2px;
}

/*Footer*/

footer{
    height: fit-content;
}
footer img{
    height: 40px;
}

footer p, footer a{
    font-size: 15px;
}





}
@media screen and (max-height:450px) {
    .nav_prin .overlay a{
        font-size: 20px;
    }
    .nav_prin .overlay .close{
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}







