/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgb(6, 2, 35);
    z-index: 1000;
}


/* CONTAINER DO VÍDEO EM TELA CHEIA */
.alert-video {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    opacity: 20%;
}

/* VÍDEO */
.alert-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DEGRADÊ SOBRE O VÍDEO */
.alert-video::after {
    content: '';
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 45%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0) 100%
    );

    pointer-events: none;
}


/* FUNDO ESCURO DO ALERTA */
#language-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* CAIXA CENTRAL DO ALERTA */
.language-box {
    background-color: transparent;
    max-width: 400px;
    width: 90%;
    justify-content: center;
    text-align: start;
    margin: 12rem 0 0 8rem;
    border-radius: 20px;
    padding: 45px 30px;
    background-color: rgb(8, 3, 48);
}

.logo {
    margin-bottom: 6px;
}

.logo img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.language-box h2 {
    margin-bottom: 10px;
    font-size: 32px;
    color: #ffffff;
}

.language-box p {
    font-size: 14px;
    color: #ebeaea;
    margin-bottom: 20px;
}

/* BOTÕES */
.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.language-buttons button {
    padding: 10px 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    background: #2d7eff;
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.language-buttons button:hover {
    background: #004fd8;
    transform: scale(1.05);
}

/* CONTEÚDO DO SITE */
#site-content {
    display: none;
    padding: 40px;
}




@media (max-width: 480px) {

.language-box{
    position: fixed;
    margin: 8rem 1.4rem !important;
}

.alert-video::after {
    display: none;
}
}