
.header{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #000000;
    color: var(--gris_claro);

    .cookies {
        position: fixed;
        bottom: 0;
        left: calc(50% - 30%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 60%;
        height: auto;
        min-height: 300px;
        background-color: var(--seminegro);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 5;
        padding-top: 50px;

        .cookies_title {
            width: 80%;
            font-size: 1.2em;
            color: var(--rosa);
            text-transform: uppercase;
        }
        .cookies_linea{
            width: 80%;
            height: 5px;
            border-bottom: solid 1px var(--rosa);
        }
        .cookies_text {
            width: 80%;
            text-align: justify;
            font-size: .85em;
        }
    }

    .horario {
        position: absolute;
        top: 50px;
        left: 100px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 5;
        gap: 20px;
        font-size: .85em;
        .horario_content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }
        .horario_line {
            width: 1px;
            height: 50px;
            background-color: var(--gris);
        }
        .telefono{
            font-size: 2.3em;
            color: var(--rosa);
        }
        .apertura {
            font-size: 1.2em;
            color: var(--rosa);
        }
    }

    .slider {
        width: 100%;
        height: 100vh;
        z-index: 0;
        overflow: hidden;
    }

    .imagen {
        display: none;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }

    .cuerpo_superior {
        position: absolute;
        top: 40%;
        z-index: 3;
        width: 70%;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 30px;
        .logo {
            width: 250px;
        }

        .titulo_principal {
            font-size: 1.2em;
            font-weight: lighter;
            color: var(--gris_claro);
        }
        .titulo_secundario {
            width: 300px;
            color: var(--gris);
            font-size: 1.8em;

        }
    }

    .linea_slider {
        position: absolute;
        display: flex;
        flex-direction: row;
        align-items: center;
        bottom: 80px;
        right: 100px;
        width: 400px;
        height: 90px;
        z-index: 2;
        overflow-x: hidden;
        gap: 10px;
        .contenedor_linea {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            border-bottom: solid 1px var(--gris);
            .item_linea {
                width: calc(90% / 5);
                border-bottom: solid 1px var(--rosa);
                overflow: hidden;
                display: none;
            }
        }
        .linea_indicador {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            width: 50px;
            height: 80px;
            .indicador {
                font-size: 1.5em;
            }
            .rosa {
                color: var(--rosa);
            }
        }
    }
}

/*DISPOSITIVOS MÓVILES */
@media screen and (max-width: 990px) {
    .header{
        .cookies {
            left: calc(50% - 225px);
            width: 450px;
        }
        .horario {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            .horario_line {
                width: 200px;
                height: 1px;
                background-color: var(--gris);
            }
        }

    }
}

/* REDES SOCIALES */

.redes_sociales {
    position: absolute;
    top: 30px;
    right: 20px;
    color: var(--blanco);
    width: 50px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 6;
    gap: 20px;
    .redes_tittle{
        font-size: .8em;
        transform: rotate(90deg);
        width: 150px;
    }
    .circle {
        width: 30px;
        height: 30px;
        cursor: pointer;
        background-color: var(--semiblanco);
        border-radius: 50%;
    }
    .circle:hover {
        background-color: var(--rosa);
    }
}


/* ANIMACIÓN */

/*aparece slider */
@keyframes aparece {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    20% { opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.fade {
    animation-name: aparece;
    animation-duration: 8s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

/*barra slider */

@keyframes transform {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

.anima_slider {
    animation-name: transform;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes up_cookies {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.mostrar_cookies {
    animation-name: up_cookies;
    animation-duration: 2s;
    animation-fill-mode: both;
}

