@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&display=swap');

:root {
    --cor-de-fundo: #1E1E1E;
    --verde: #6FFF57;
    --branco: #FFFFFF;
    --botao-ativo: #3A375E;
    --botao-inativo: rgba(58, 55, 94, 0.5);
    --texto-fundo: rgba(58, 55, 94, 0.3);
    --transicao: 0.3s ease;
}

body {
    background-color: var(--cor-de-fundo);
    color: var(--branco);
    font-family: 'Chakra Petch', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column; 
    align-items: center;
    min-height: 100vh;
}

.conteudo-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    width: 100%; 
    padding: 0; 
}

.titulo-principal {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, var(--branco) 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    order: 1; 
}

.titulo-principal span {
    background: linear-gradient(180deg, var(--verde) 0%, #4ecb3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.botoes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 10px;
    order: 2; 
    margin-bottom: 2rem;
}

.botao {
    font-family: 'Chakra Petch', sans-serif;
    background-color: transparent; 
    color: var(--branco);
    border: none;
    border-bottom: 4px solid transparent;
    padding: 1.5em 1em;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transicao);
    text-align: center;
    outline: none;
    flex: 1;
    min-width: 120px;
}


.botao:hover {
    background-color: var(--botao-ativo);
    transform: translateY(-2px);
}


.botao.ativo {
    background-color: var(--botao-ativo);
    border-bottom: 4px solid var(--verde) !important; 
    color: var(--verde);
    font-weight: bold;
}

.botao:first-child {
    border-radius: 8px;
}
