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

body{
    background: #081229;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* MENU */

.menu{
    width: 100%;
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    color: white;
    font-size: 35px;
    font-weight: 700;
}

.logo span{
    color: #38bdf8;
}

nav{
    display: flex;
    gap: 35px;
}

nav a{
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover{
    color: #38bdf8;
}

/* TOPO */

.topo{
    padding: 120px 8%;
    text-align: center;
}

.texto-topo span{
    color: #38bdf8;
    letter-spacing: 3px;
    font-size: 14px;
}

.texto-topo h1{
    color: white;
    font-size: 75px;
    margin-top: 20px;
}

.texto-topo p{
    color: #cbd5e1;
    margin-top: 20px;
    font-size: 20px;
}

/* CORES */

.cores{
    padding: 0 8% 120px;

    display: flex;
    flex-direction: column;

    gap: 30px;
}

.linha-cores{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD COR */

.cor-card{
    flex: 1;
    min-width: 250px;

    height: 220px;

    border-radius: 35px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: end;

    transition: 0.4s;
}

.cor-card:hover{
    transform: translateY(-10px) scale(1.02);
}

/* CORES */

.vermelho{
    background: #ef4444;
}

.azul{
    background: #3b82f6;
}

.verde{
    background: #22c55e;
}

.amarelo{
    background: #eab308;
}

.rosa{
    background: #ec4899;
}

.roxo{
    background: #8b5cf6;
}

/* TEXTO */

.cor-card h2{
    color: white;
    font-size: 38px;
}

.cor-card p{
    color: white;
    margin-top: 10px;
    font-size: 18px;
}

/* DICAS */

.curiosidades{
    padding: 0 8% 120px;
}

.titulo{
    text-align: center;
}

.titulo h2{
    color: white;
    font-size: 50px;
}

.titulo p{
    color: #cbd5e1;
    margin-top: 10px;
}

/* CARDS */

.cards-dicas{
    margin-top: 60px;

    display: flex;
    justify-content: center;

    gap: 30px;
    flex-wrap: wrap;
}

.dica{
    width: 320px;

    background: #111c36;

    border-radius: 30px;

    padding: 40px;

    transition: 0.4s;
}

.dica:hover{
    transform: translateY(-10px);

    box-shadow:
    0 0 25px rgba(56,189,248,0.25);
}

.dica h3{
    color: white;
    font-size: 28px;
}

.dica p{
    color: #cbd5e1;
    margin-top: 15px;
    line-height: 1.7;
}

/* QUIZ */

.quiz{
    padding: 0 8% 120px;
}

.quiz-box{
    margin-top: 60px;

    display: flex;
    justify-content: center;
}

/* QUESTÃO */

.questao{
    width: 100%;
    max-width: 750px;

    background: #111c36;

    border-radius: 35px;

    padding: 45px;
}

.questao h3{
    color: white;
    font-size: 35px;
    line-height: 1.5;
}

.questao span{
    color: #38bdf8;
}

/* ALTERNATIVAS */

.alternativas{
    margin-top: 40px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.alternativa{
    background: #16213d;

    padding: 22px;

    border-radius: 18px;

    color: white;

    cursor: pointer;

    transition: 0.3s;

    border: 1px solid transparent;

    font-size: 18px;
}

.alternativa:hover{
    transform: translateX(10px);

    border: 1px solid #38bdf8;
}

.selecionada{
    background: #38bdf8;
}

/* BOTÃO */

.botao-verificar{
    margin-top: 35px;

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 18px;

    background: #38bdf8;

    color: white;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;
}

.botao-verificar:hover{
    transform: translateY(-5px);

    box-shadow:
    0 0 25px rgba(56,189,248,0.35);
}

/* RESULTADO */

.resultado{
    margin-top: 30px;

    text-align: center;

    font-size: 22px;

    font-weight: 600;
}

/* RESPONSIVO */

@media(max-width: 700px){

    nav{
        display: none;
    }

    .texto-topo h1{
        font-size: 45px;
    }

    .linha-cores{
        flex-direction: column;
    }

    .questao{
        padding: 30px;
    }

}