/* -- CSS General -- */
* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #695AC8;
    margin: 0px 0;
    padding: 0px;
}

@font-face {
    font-family: 'Mulish';
    src: url(../fonts/Mulish/Mulish-Regular.otf) format(opentype);
    font-weight: 200 1000;
}

/* ----------- Menú - nav ------------- */

header {
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 32px;
    margin: 0px;
    width: 100%;
    min-width: 990px;
    height: 160px;
}

header .logo {
    max-width: 180px;
    min-height: 60px;
    margin: 0px;
    padding: 0px;
}

.menu-principal {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 32px;
    width: 100%;
    margin: 0px;
    background-color: #F7F7F7;
}

.menu-principal ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 32px;
}

.menu-principal ul li {
    display: inline-block;
    font-family: 'Atkinson Hyperlegible', Helvetica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: initial;
}

.menu-principal ul li a {
    color: #695AC8;
    text-decoration: none;
}

.menu-principal ul li a:hover {
    color: #32F5F5;
    text-decoration: none;
}

.menu-principal ul li a:active {
    color: #32F5F5;
    text-decoration: none;
}

.menu-principal-botones {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 24px;
}

/* Botón Iniciar sesión */
.btn-iniciar-sesion {
    background-color: #695AC8;
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
}

.btn-iniciar-sesion:hover {
    background-color: #32F5F5;
}

.btn-iniciar-sesion:focus {
    background-color: #12E3E3;
    color: #695AC8;
}

.btn-iniciar-sesion:active {
    background-color: #12E3E3;
    color: #695AC8;
}

/* Botón Registrarse */
.btn-registrarse {
    background-color: #32F5F5;
    color: #695AC8;
    text-decoration: none;
    transition: 0.3s;
}

.btn-registrarse:hover {
    background-color: #12E3E3;
    color: #FFFFFF;
}

.btn-registrarse:focus {
    background-color: #12E3E3;
    color: #FFFFFF;
}

.btn-registrarse:active {
    background-color: #12E3E3;
    color: #695AC8;
}

/* Buttons / Botones de Navegación */
button {
    border: none;
    border-radius: 15px;
    font-family: 'Atkinson Hyperlegible', Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: initial;
}

/* Botón Footer Seleccionar Idioma */
.btn-idioma {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
    background-color: transparent;
    border: 3px solid #FFFFFF;
    border-radius: 15px;
    color: #FFFFFF;
    outline: none;
    padding: 5%;
    transition: all .5s ease;
}

.btn-idioma p {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2em;
}

.btn-idioma:hover {
    color: #695AC8;
    background-color: #32F5F5;
}

/* Tamaños de botones */
.btn-s {
    border-radius: 15px;
    font-size: 20px;
    line-height: 20px;
    padding: 10px 16px;
}

.btn-m {
    border-radius: 20px;
    padding: 10px 24px;
}

.btn-l {
    border-radius: 20px;
    padding: 10px 24px;
}

/* Botón Demo */
.btn-demo {
    background-color: transparent;
    border: 3px solid #32F5F5;
    border-radius: 15px;
    color: #32F5F5;
    flex-grow: 1;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    outline: none;
    transition: all .5s ease;
}

.btn-demo:hover {
    color: #695AC8;
    background-color: #32F5F5;
}

/* Botón Reservar */
.btn-reservar {
    background-color: #32F5F5;
    color: #695AC8;
    flex-grow: 1;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    outline: none;
    transition: all .5s ease;
}

.btn-reservar:hover {
    color: #FFFFFF;
    background-color: #12E3E3;
}

/* Textos */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 700;
}

h1 {
    color: #32F5F5;
    font-size: 80px;
}

h2 {
    color: #695AC8;
    font-size: 72px;
}

h3 {
    color: #32F5F5;
    font-size: 67px;
    line-height: normal;
    text-align: center;
}

h4 {
    color: #32F5F5;
    font-size: 64px;
    font-style: normal;
    line-height: 1.5em;
}

h5 {
    color: #32F5F5;
    font-size: 45px;
}

p {
    color: #FFFFFF;
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
}

.p-morado {
    color: #695AC8;
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
}

/* Textos páginas moradas */
.white-txt {
    color: #FFFFFF;
}

.p-intro {
    font-family: 'Atkinson Hyperlegible', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 30px;
}

.jugadoresprecio {
    color: #FFFFFF;
    font-size: 24px;
}

.jugadoresprecio::before { 
    content: ''; 
    background: url('../img/jugadoresprecio.svg') no-repeat center center/cover; 
    position: absolute;
    top: 0px; 
    left: 0px; 
    width: 38px; 
    height: auto;
} 

/* footer */
footer {
    background-color: #695AC8;
    clear: both;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: normal;
    justify-content: space-evenly;
    padding: 4%;
}

.footer-contenedormenus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
}

footer nav ul {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

footer nav ul li {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    list-style: none;
    text-decoration: none;
}

.footerleft {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: flex-start;
    gap: 64px;
    margin-right: 5%;
    padding-right: 5%;
}

.menufooter {
    flex-flow: column;
    text-align: left;
    margin: 0;
    padding: 0;
}

.menufooter-empresa {
    flex-flow: column;
    text-align: left;
    margin: 0;
    padding: 0;
}

.footerright {
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 8px;
}

.rrss {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-evenly;
    gap: 16px;
}

.rrss img {
    width: 32px;
    max-width: 64px;
}

footer p {
    color: #FFFFFF;
    font-family: 'Mulish', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-align: left;
}
/* Fin Footer */
/* Fin Estilos Generales */

/* -- Index -- */
/* ----------  Portada  ------------   */
.portada {
    position: relative;
}

.imagenHalloween{
    width: 100%;
}

.portada .portada-col-izq-txt {
    display: flex;
    flex-direction: column;
    left: 0px;
    padding: 5%;
}

.letrahalloween{
    position: absolute;
    left:80px;
    top:50px;
    max-width: fit-content;
}

.portada-col-izq-txt > p {
    position: absolute;
    left: 5%;
    top: 300px;
    color: #FFF;
    font-family: "Atkinson Hyperlegible";
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.portada-col-izq-txt> .btn-reservar {
    position: absolute;
    left: 80px;
    top: 500px;
    width: 250px;
    height: 70px;
    border-radius: 15px;
    color: #695AC8;
    background-color: #32F5F5;
    font-family: "Atkinson Hyperlegible";
    font-size: 35px;
    border: none;
    font-weight: 700;
}

.portada-col-izq-txt> .btn-reservar:hover{
    background-color:#F7F8F8;
    color:#695AC8;
}

/* ----------Filtro de experiencias------------   */

.subfilter {
    font-family: "Atkinson Hyperlegible";
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #695AC8;
    text-align: center;
}

.fondoMorado {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    background-color: #695AC8;
}

.contentwhite {
    padding: 40px 100px;
    gap: 24px;
    border-radius: 50px;
    background: #F7F7F7;
    width: 1100px;
    height: auto;
    position: relative;
    top: -60px
}

.filter {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 20px;
    margin: 50px 0px;
}

.filter__item {
    list-style-type: none;
    font-family: "Atkinson Hyperlegible";
    font-size: 16px;
    font-style: italic;
    line-height: 10px;
    padding: 12px 40px;
    background-color: #695AC8;
    border-radius: 10px;
    color: #E9E9E9;
}

.filter__item:hover {
    cursor: pointer;
}

.filter__item:active {
    border-radius: 10px;
    background-color: #32F5F5;
    color: #695AC8;
}

.allimages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.cont-image {
    width: 340px;
    height: 370px;
    background-color: #695AC8;
    border-radius: 30px;
    overflow: hidden;
}

.allimages img {
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 248px;
    height: 208px;
    object-fit: cover;
    border-radius: 10px;
}

.titleimage {
    text-align: center;
    font-family: "Atkinson Hyperlegible";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    margin: 10px 0px 0px 0px;
    border-top: #FFF;
}

.subtitle {
    text-align: center;
    font-family: "Mulish";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 12px;

}

.contenttimeprice {
    background-color: #5a5194;
    font-size: 14px;
    text-align: center;
    color: #FFF;
    font-family: "Mulish";
    font-weight: 300;
    line-height: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.contenttimeprice>p {
    font-size: 12px;
    line-height: 1.2em;
}

hr {
    margin: 0px;
}

.cont-image .corazon {
    position: relative;
    width: 40px;
    height: 40px;
    left: 255px;
    top: 30px;
    margin: 0px;
}

.cargar {
    font-family: "Atkinson Hyperlegible";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    color: #695AC8;
}

/* -----------   Registro   ----------*/
.right-form>h2,
p {
    display: flex;
    justify-content: center;
    font-family: "Mulish";
}

.check>span {
    font-family: "Mulish";
    color: #979797;

    font-family: "Mulish";
    font-size: 14px;
}

.right-form>span {
    font-family: "Mulish";
}

.left-form {
    display: inline-block;
    overflow: hidden;
    float: left;
    background-size: cover;
    margin: 0;
    width: 48%;
}

.right-form {
    display: inline-block;
    width: 48%;
    height: 100%;
    float: left;
    background-color: white;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 2%;
}

.right-form form {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.right-form h2 {
    color: #695AC8;
    font-family: "Atkinson Hyperlegible";
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.right-form form>input {
    width: 100%;
    padding: 13px 8px;
    align-items: center;
    border-radius: 15px;
    border: 1px solid #E9E9E9;
    background: #F7F8F8;
    font-family: "Mulish";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.right-form form>label {
    width: 100%;
    font-family: "Atkinson Hyperlegible";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #695AC8;
    margin-top: 20px;
}

.check {
    width: 100%;
    margin: 20px 0px;
}

.right-form form>span {
    font-family: "Mulish";
    color: rgba(0, 0, 0, 0.44);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.right-form input[type=submit] {
    width: 100%;
    background-color: #32F5F5;
    font-family: "Atkinson Hyperlegible";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: #695AC8;
    padding: 16px 10px;
}

/* --- Login ----*/
.loginfondo {
    background-color: #695AC8;
    max-width: 100%;
    height: 650px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.login-form>form {
    padding: 50px 100px;
    background-color: #FFF;
    width: 400px;
    border-radius: 20px;

}

.login-form form>h2 {
    display: flex;
    justify-content: center;
    color: #695AC8;
    font-family: "Atkinson Hyperlegible";
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.login-form form>input {
    width: 100%;
    padding: 13px 0px 13px 7px;
    border-radius: 15px;
    border: 1px solid #E9E9E9;
    background: #F7F8F8;
    font-family: "Mulish";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.login-form form>label {
    width: 100%;
    font-family: "Atkinson Hyperlegible";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #695AC8;
    margin-top: 20px;

}

.login-form input[type=submit] {
    width: 100%;
    background-color: #32F5F5;
    font-family: "Atkinson Hyperlegible";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: #695AC8;
    padding: 16px 10px;
}

.login-form form>span {
    color: #979797;
    text-align: center;
    font-family: "Mulish";
    font-size: 16px;
    display: flex;
    justify-content: center;
}

.login-form form>.check {
    margin-top: 0px;
    display: flex;
    align-items: center;
}

/* ---Influencers ----*/

.influencers {
    width: 1300px;
    height: auto;
    margin: 0 auto;
    border-radius: 40px;
    background: #F7F8F8;
    margin-top: 10px;

    padding-top: 50px;
    padding-bottom: 50px;
}

.influencers>h3 {
    width: 1302px;
    color: #695AC8;
    text-align: center;
    font-family: "Atkinson Hyperlegible";
    font-size: 67px;
    font-style: normal;
    font-weight: 700;
    line-height: 2em;
}

.influencers .opiniones {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2%;
}

.textoinfluencers {
    width: 601px;
    color: #695AC8;
    font-family: "Atkinson Hyperlegible";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2em;
    display: block;
    margin-right: 2%;
}

.img-influencer-minielipse {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 90px;
    display: inline;
    margin-left: 0%
}

.tarjetas {
    margin-top: 70px;
    height: 697px;
    background: #695AC8;
    display: inline-flex;
    border-radius: 25px;
    display: flex;
    gap: 26px;
    justify-content: space-around;
    margin-bottom: 5%;
}

/* Carrusel experiencia */
.carrusel-fondoimgtxt {
    border-top: 3px solid #FFF;
    background: linear-gradient(180deg, rgba(50, 245, 245, 0.00) 2.6%, rgba(50, 245, 245, 0.60) 100%);
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    padding: 5%;
    
}

.carrusel-experiencia {
    display: flex;
    position: relative;
    align-items: center;
    height: 330px;
    width: 1072px;
    padding: 10%;
}

.carrusel-exp-testimonio {

    color: #695AC8;
    font-family: 'Atkinson Hyperlegible';
    font-size: 22px;
    line-height: 1.5em;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    position: relative;
    padding: 50px;
    margin-right: 50px;
    padding-left: 9%;
    flex-direction: column;
   
}

.carrusel-exp-img {

    margin-right: -90px;
    position: relative;
    z-index: 1;

}

.carrusel-exp-img2 {
    margin-right: -77px;
    display: flex;
    position: relative;
    z-index: 1;
    height: 300px;
    width: 300px;
    border: 13px solid #32F5F5;
    border-radius: 50%;
}

.carrusel-exp-img3 {

    margin-right: -77px;
    display: flex;
    position: relative;
    z-index: 1;
    height: 300px;
    width: 300px;
    border: 13px solid #32F5F5;
    border-radius: 50%;
}
p {
    font-family: 'Mulish';
    font-size: 22px;
    line-height: 1.5em;
    
}

/* Media Queries */

/* iPhone Pro 11 vertical */
@media (min-width: 400px) and (max-width: 834px),
screen and (orientation: portrait) {

    .footer-contenedormenus {
        flex-direction: column;
        align-items: stretch;
    }

    .footerleft {
        margin-right: 0;
        padding-right: 0;
        justify-content: center;
        gap: 16px;
    }

    .menufooter,
    .menufooter-empresa {
        margin-bottom: 16px;
    }

    .footerright {
        align-items: center;
    }

}

/* iPhone Pro 11 horizontal*/
@media (min-width: 835px) and (max-width: 1194px),
screen and (orientation: landscape) {

    .footer-contenedormenus {
        flex-direction: row;
    }

    .footerleft {
        gap: 32px;
        margin-right: 5%;
        padding-right: 5%;
        justify-content: flex-start;
    }

    .menufooter,
    .menufooter-empresa {
        margin-bottom: 0;
    }

    .footerright {
        align-items: stretch;
    }

}
