@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    color: #fff;
}

body {
    background-color: #010704;
}

.corpo {
    margin-left: 250px;
    padding: 20px 40px;
}

.corpo header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 40px 0;
}

.corpo header h1 {
    color: #BAFCE5;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.sidebar {
    height: 100vh;
    width: 250px;
    left: 0;
    top: 0;
    position: fixed;
    padding-top: 40px;
    background-color: #022015;
    border-right: 2px solid #05714B;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #BAFCE5;
    font-size: 1.1rem;
    padding: 15px 30px;
    display: block;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    background-color: #05714B;
    color: #fff;
}

section {
    padding: 40px;
    margin: 0 0 40px 0;
    border: 2px solid #05714B;
    border-radius: 20px;
}

section h2 {
    color: #BAFCE5;
    margin-bottom: 20px;
    border-bottom: 1px solid #05714B;
    padding-bottom: 10px;
}

section h3 {
    margin: 20px 0 10px 0;
    color: #4ade80;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

section ul {
    list-style-type: none;
    padding-left: 20px;
    margin: 0;
}

section ol {
    padding-left: 20px;
    margin: 0;
}

section ul li, section ol li {
    margin-bottom: 15px;
    line-height: 1.6;
}

span, code, strong, i {
    color: #BAFCE5;
}

.codigo pre {
    background-color: #00120b;
    border: 1px solid #05714B;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.stats-table th, .stats-table td {
    border: 1px solid #05714B;
    padding: 15px;
    text-align: center;
}

.stats-table th {
    background-color: #022015;
    color: #BAFCE5;
}

.pergunta {
    display: flex;
    flex-direction: row;
    border: 1px solid #BAFCE5;
    border-radius: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.perguntas-esquerda,
.perguntas-direita,
.respostas-esquerda,
.respostas-direita {
    width: 50%;
    padding: 30px;
}

.perguntas-direita {
    text-align: right;
}

.respostas-esquerda,
.respostas-direita {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pergunta input{
    display: none;
}

.pergunta label {
    cursor: pointer;
    background-color: #022015;
    padding: 15px 20px;
    border-radius: 10px;
    display: block;
    transition: 0.3s;
    border: 1px solid transparent;
}

.pergunta label:hover {
    background-color: #05714B;
}

.pergunta label:has(input[type="radio"]:checked) {
    background-color: #05714B;
    border: 1px solid #BAFCE5;
}

#form-feedback {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#form-feedback label {
    margin-top: 10px;
    color: #BAFCE5;
}

#form-feedback input, #form-feedback textarea {
    background-color: #00120b;
    border: 1px solid #05714B;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

#form-feedback input:focus, #form-feedback textarea:focus {
    border-color: #BAFCE5;
}

#form-feedback textarea {
    resize: vertical;
    min-height: 100px;
}

#form-feedback button {
    margin-top: 20px;
    background-color: #05714B;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#form-feedback button:hover {
    background-color: #BAFCE5;
    color: #010704;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #05714B;
}

footer h2 {
    color: #05714B;
    font-size: 1.2rem;
}

.pergunta p {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
}