/*
 * Capa de Seleção de Idioma
 * Fiel ao design real da Maria (Figma node 102:201 "TELA BLOQUEIO")
 * Sem senha - só idioma.
 */

:root {
    --color-rosa-marsala: #783d49;
    --color-bege-claro: #fbfbf0;
    --color-rosa-palido: #e8cbce;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

.cover-body {
    font-family: 'Crimson Text', serif;
    background-color: var(--color-rosa-marsala);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.cover-container {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.cover-monogram {
    margin-bottom: 48px;
}

.cover-monogram img {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.cover-language-title {
    /* Kapakana - fonte real do Figma (80px/1920px de largura), disponível no Google Fonts */
    font-family: 'Kapakana', serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    font-size: 32px;
    color: var(--color-bege-claro);
    margin-bottom: 32px;
    line-height: 1.3;
}

.cover-language-select {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.lang-option {
    background: none;
    border: none;
    color: var(--color-bege-claro);
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 10px 8px;
    opacity: 0.75;
    transition: opacity 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.lang-option:hover {
    opacity: 1;
    border-bottom-color: var(--color-bege-claro);
}

.lang-divider {
    color: var(--color-bege-claro);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 600px) {
    .cover-monogram img {
        max-width: 220px;
    }

    .cover-language-title {
        font-size: 22px;
    }

    .lang-option {
        font-size: 15px;
    }
}
