@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    position: fixed;
    z-index: 9999;
    display: block;
    color: #fff;
    -webkit-box-shadow: 0px 7px 5px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 7px 5px -3px rgba(0,0,0,0.75);
    box-shadow: 0px 7px 5px -3px rgba(0,0,0,0.75);
}

#header-mov-btn {
    display: none;
}

#header-cont {
    width: 100%;
    height: 100px;
    display: block;
    background-color: #15133b;
}

#header-cont div{
 float: left;
}
#header-logo {
    width: 20%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.headerYokai {
    width: 120px;
    margin-left: 22px;
}

#header-opc {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: end;
}

#nav-menu ul {
    height: 100px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin-right: 45px;
}
#nav-menu ul li {
    font-size: 15pt;
}

#nav-menu ul li a {
    color: #fff;
}
    #nav-menu ul li a:hover {
        color: #f699a4;
    }

#header-line {
    display: block;
    width: 100%;
    height: 8px;
    background-color: #a56b9e;
    background-repeat: repeat;
    background-size: contain;
    background-position: left;
}

#header-mob-menu {
    background-color: #15133b;
    display: none;
    width: 100%;
    height: auto;
    padding-top: 25px;
    padding-bottom: 12px;
}

#header-mob-menu div {
    width: 100%;
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        #header-mob-menu div a {
            color: #fff;
            font-size: 16pt;
        }
        #header-mob-menu div a:hover {
            color: #f699a4;
        }

#page {
    padding-top: 108px;
}

#content-items {
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;  
}

.item {
    float: left;
    height: 550px;
}

#banner-1 {
    position: relative;
    grid-area:  2 / 2 / 3 / 4;;
    background-color: #f699a4;
    background-image: url(../images/banner-principal.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    /*display: flex;
    align-items: start;*/
    justify-content: center;
    overflow: hidden;
    height: 550px;
}
    #banner-1 video {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: fill;
    }

#item-1 {
    background-color: #ff812d;
    background-image: url(../images/bg-body-10.webp);
    grid-area: 1 / 3 / 2 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
    #item-1 img {
        width: 100%;
    }
#item-2 {
    position: relative;
    grid-area: 1 / 2 / 2 / 3;
    background-color: darkcyan;
    background-image: url(../images/COSPLAY-banner.jpg);
    background-size: cover;
}
    #item-2 .cosplayHead {
        width: 80%;
        max-width: 420px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 990;
    }
    #item-2 .cosplayTit {
        width: 60%;
        max-width: 320px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 990;
    }
    .cosplay-btn {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 999;
        background-color: #ffebe6;
        padding: 8px;
        background-image: url(../images/bg-body-10.webp);
        border: 2px solid #000;
    }
        .cosplay-btn div {
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 4px;
        }
            .cosplay-btn div img {
                width: 38px;
            }
            .cosplay-btn div h4 a {
                font-size: 14pt;
                font-weight: 800;
                color: #000;
            }
            .cosplay-btn div h4 a:hover {
                color: #d77165;
            }
#item-3 {
    grid-area: 2 / 1 / 3 / 2;
    background-color: darkslateblue;
}
    #item-3 iframe {
        width: 100%;
        height: inherit;
    }
#item-4 {
    position: relative;
    grid-area: 1 / 1 / 2 / 2;
    background-color: #d77165;
    /*background-image: url(../images/invitados/invitado-1.jpg);
    background-size: cover;*/
    min-width: 600px;
    overflow: hidden !important;
}

#contacto-tit {
    width: 680px;
}

#video-publicidad {
    width: 460px;    
    height: auto;
    border: 4px solid #000;
}
    #video-publicidad source {
        width: 100%;
    }

#bg-japon {
    width: 680px;
    margin-top: 45px;
    margin-bottom: 10px;
}

#content-contacto {
    width: 100%;
    height: auto;
    background-color: #fff;
    background-image: url(../images/bg-body-10.webp);
    padding-bottom: 25px;
}
#contacto-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 25px;
    gap: 68px;
}
    #contacto-logos img {
        width: 220px;
    }
.contacto-info {
    width: 100%;
    text-align: center;
}
    .contacto-info img {
        margin: 0 auto;
        display: block;
    }
#contacto-siguenos {
    width: 100%;
}
     #contacto-siguenos h1 {
        width: fit-content;
        background-color: #ffcd00;
        border: 2px solid #000;
        margin: 0 auto;
        padding: 10px;

     }
#contacto-redes {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 28pt;
    margin-top: 25px;
}
    #contacto-redes img {
        width: 56px;
    }
#footerCinta {
    width: 100%;
    height: 600px;
    background-image: url(/assets/images/cinta2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat:  no-repeat;
}

#cintilloFinal {
    width: 100%;
    height: auto;
}
    #cintilloFinal img {
        width: 100%;
    }

#disclaimer {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
    #disclaimer p {
        color: #000;
        font-size: 14pt;
    }
    #disclaimer p a {
        color: #a56b9e;
    }

/*SLIDER*/
slider-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden !important;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 550px;
}
.slider img {
    width: 100%;
    flex: 0 0 100%;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(165, 107, 158, 0.5);
    color: #ff007a;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev { left: 10px; }
.next { right: 10px; }


/* PAGINAS */
#page-interna {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #fff;
    background-image: url(../images/bg-body-10.webp);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 200px;
}
#interna-cont {
    width: 980px;
    height: auto;
    min-height: 110px;
    background-color: #fff;
    border: 4px solid black;
    border-radius: 8px;
    margin-top: 150px;
    padding: 12px;
    z-index: 70;
}

.form-mascot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    z-index: 60;
}
    #politicas-cont ul { 
        margin-top: 25px;
        
    }
    #politicas-cont ul li { 
        margin-bottom: 12px;  
        margin-left: 25px;
    }
        #politicas-cont ul li span { 
            color: #a56b9e;
            font-weight: 600;
        }
.politicas-descarga {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 6px;
}
    .politicas-descarga img {
        width: 38px;
    }
    .politicas-descarga p a {
        color: #a56b9e;
        font-weight: 600;
    }
        .politicas-descarga p a:hover {
            color: #15133b;
        }

/* FORMS */
#form-header, #pie-bases {
    width: 100%;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}
    #form-header h1 {
        font-size: 23pt;
    }
     #form-header h2, #pie-bases h2 {
        font-size: 15pt;
        font-weight: 500;
        color: #ff007a;
     }
        #form-header h2 a, #pie-bases h2 a {
            color: #ff007a;
        }
            #form-header h2 a:hover, #pie-bases h2 a:hover {
                color: #15133b;
            }
#form-bases {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    /*text-align: center;*/
}
    #form-bases h3 {
        font-size: 14pt;
        font-weight: 500;
    }
    #form-bases h3 a{
        color: #15133b;
    }
    #form-bases h3 a:hover{
        color: #f699a4;
    }
.form-cont {
    width: 100%;
     height: auto;
    padding: 12px;
}
.form-row, .mob-form-row {
    display: flex;
}
.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 10px 5px;
}
label {
    color: #a56b9e;
    font-weight: 600;
    font-size: 14pt;
}
input {
    font-size: 14pt;
    padding: 5px;
}
select {
    font-size: 14pt;
    padding: 6px;
    background-color: #fff;
    border: 1px solid gray;
    border-radius: 2px;
}
#form-captcha {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 6px;
}
#btn-enviar {
    padding: 8px 15px;
    background-color: #f699a4;
    border-radius: 8px;
    cursor: pointer;
    border: 0px;
    box-shadow: none;
}
    #btn-enviar:hover {
        background-color: #ff007a;
        color: #fff;
    }
#politicas-form {
    width: 100%;
    text-align: center;
    padding-top: 8px;
}
    #politicas-form h4 {
        font-size: 11pt;
        font-weight: 500;
    }
        #politicas-form h4 a {
            color: #15133b;
        }
            #politicas-form h4 a:hover {
                color: #f699a4;
            }
#form-loading {
    width: 100%;
    height: 600px;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
}
#form-loading img {
    width: 280px;
}
#form-success, #form-error {
    width: 100%;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 25px;
    display: none;
}
    #form-success h3, #form-error h3 {
        color: #f699a4;
    }
        #form-success h3 span {
            color: #a56b9e;
        }

@media only screen and (min-device-width: 1200px) and (max-device-width: 1600px) {
    .item {
        height: 300px;
    }
    #banner-1 {
        height: 300px;
    }
    #item-2 .cosplayHead {
        width: 70%;   
    }
    #item-4 {
        min-width: 450px;
    }
    .cosplay-btn {
        padding: 2px;
        
    }
    #item-2 .cosplayTit {
        width: 35%;
        max-width: 320px;
    }
    .cosplay-btn div img {
        width: 26px;
    }
    .cosplay-btn div h4 a {
        font-size: 10pt;
    }
    .slider {
        height: 300px;
    }
    #contacto-tit {
        width: 550px;
    }
    #video-publicidad {
        width: 400px;    
    }
    #bg-japon {
        width: 500px;
        margin-top: 35px;
        margin-bottom: 8px;
    }
    #contacto-siguenos h1 {
        font-size: 14pt;
     }
     #contacto-redes img {
        width: 50px;
    }
}

@media only screen and (min-device-width: 900px) and (max-device-width: 1199px) {
    #content-items {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr); 
    }
    
    .item {
        height: 550px;
    }
    
    #banner-1 {
        grid-area:  1 / 1 / 2 / 3;
        height: 550px;
    }
    
    #item-1 {
        grid-area:  2 / 2 / 3 / 3;
    }
    #item-2 {
        grid-area:  2 / 1 / 3 / 2;
    }
    #item-3 {
        grid-area:  3 / 2 / 4 / 3;
    }
    #item-4 {
        grid-area:  3 / 1 / 4 / 2;
        min-width: 600px;
    }
}

@media only screen and (max-width: 900px) {
    #header-opc {
        display: none;
    }
    #header-mov-btn {
        display: flex;
        width: 80%;
        height: 100px;
        align-items: center;
        justify-content: end;
    }  
        #header-mov-btn img {
            width: 64px;
            margin-right: 28px;
            cursor: pointer;
        }
    #content-items {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr); 
    }
    
    .item {
        height: 300px;
    }
    
    #banner-1 {
        grid-area: 1 / 1 / 2 / 3;
        height: 300px;
    }
    
    #item-1 {
        grid-area: 1 / 3 / 2 / 4; 
    }
    #item-2 {
        grid-area: 2 / 1 / 3 / 2;
    }
    #item-2 .cosplayTit {
        width: 50%;
        max-width: 400px;
        top: 25px;
        left: 5px;
    }
    .cosplay-btn {
        width: 100%;
        padding: 8px;
    }
        .cosplay-btn div img {
            width: 28px;
        }
            .cosplay-btn div h4 a {
                font-size: 12pt;
            }
    #item-3 {
        grid-area: 2 / 2 / 3 / 3;
    }
    #item-4 {
        grid-area: 2 / 3 / 3 / 4;
        min-width: 200px;
    }
    .slider {
        height: 300px;
    }
    .txt-largo {
        width: 100%;
    }
}

@media only screen and (max-width: 680px) {
    #content-items {
        grid-template-columns: unset;
        grid-template-rows: unset;
        grid-column-gap: unset;
        grid-row-gap: unset; 
        position: relative;
        width: 100%;
    }

    #banner-1 {
        display: block;
        height: 200px;
    }
    
    .slider {
        height: 360px;
    }
    
    .item {
        float: left;
        height: 360px;
    }
    
    #banner-1 {
        grid-area: unset;
    }
    
    #item-1 {
        grid-area: unset;
    }
    #item-2 {
        grid-area: unset;
        background-size: cover;
    }
        #item-2 .cosplayTit {
            width: 40%;
            max-width: 140px;
            position: absolute;
            bottom: 0;
            z-index: 999;
        }
        .cosplay-btn div img {
            width: 28px;
        }
        .cosplay-btn div h4 a {
            font-size: 12pt;
        }
    #item-3 {
        grid-area: unset;
    }
    #item-4 {
        grid-area: unset;
        min-width: unset;
    }


    #contacto-tit {
        width: 100%;
    }
    #video-publicidad {
        width: 95%;    
        margin-top: 25px;
    }
    #txt-lugar {
        width: 100%;
    }
    #bg-japon {
        width: 85%;
        margin-top: 45px;
        margin-bottom: 10px;
    }
    #txt-entrada {
        width: 100%;
    }
    #content-contacto {
        padding-bottom: 12px;
    }
    #contacto-logos {
        margin-top: 30px;
        margin-bottom: 15px;
        gap: 15px;
    }
        #contacto-logos img {
            width: 165px;
        }
    #contacto-siguenos {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    #contacto-siguenos h1 {
        font-size: 14pt;
        padding: 8px;
     }
    #contacto-redes {
        font-size: 28pt;
        margin-top: 20px;
    }
        #contacto-redes img {
            width: 48px;
        }
    
    #disclaimer {
        text-align: center;
    }
        #disclaimer p {
            font-size: 12pt;
        }
    
    /* PAGES */
    #page-interna {
       padding-bottom: 180px;
    }
    #interna-cont {
        width: 98%;
        margin-top: 150px;
    }
    .form-mascot {
        width: 250px;
    }
    #form-header h1 {
        font-size: 18pt;
    }
     #form-header h2 {
        font-size: 16pt;
    }
    .form-row {
        display: flex;
    }
    .input-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin: 10px 5px;
    }
    label {
        font-size: 12pt;
    }
    input {
        font-size: 12pt;
        padding: 3px;
    }
    
    #btn-form {
        padding-top: 8px;
        padding-bottom: 4px;
    }
    .mob-form-row {
        display: block;
    }
    
}