/* loop_infinito.css */
.loop-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: -1.5rem; /* Puxa para perto do vídeo */
    margin-bottom: 2rem;
    color: #888;
    font-size: 0.9rem;
    width: 100%;
    max-width: 800px;
}

.loop-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 4px;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Quando marcado, fica amarelo */
.loop-container input[type="checkbox"]:checked {
    background-color: #ffd700;
    border-color: #ffd700;
}

/* O símbolo de check ("V") */
.loop-container input[type="checkbox"]:checked::after {
    content: '✔';
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.loop-container label {
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none; /* Evita que o texto seja selecionado sem querer */
}

.loop-container label:hover {
    color: #ffd700;
}

/* Efeito de desfoque no inglês durante os 10 segundos */
body.blur-active .text-en {
    filter: blur(6px);
    opacity: 0.3;
    transition: all 0.4s ease;
    pointer-events: none; /* Impede o clique enquanto estiver desfocado */
    user-select: none; /* Impede que o usuário selecione o texto para tentar ler */
}