@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&family=Outfit:wght@100..900&display=swap');

/* Reseta o estilo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit';
}

/* Estilos gerais */
body {
    background-image: url(imgwebs/backgroundpc.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

header {
    text-align: center;
    padding: 2rem;
    background-color: #000235;
    color: #fff;
    width: 100%;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cab{
    background-color: #000235;
    height: 102px;
}

.logo-imagem {
    width: 100px;
    height: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    
}
.container-logo{
    display: flex;
    align-items: center;
    cursor: pointer; 
}

#log{
    width: 150px;
    height: 100px;
    margin-left: -32px;
    margin-top: -9px;
}

.head1 {
    margin-top: -75px;

}

.head2 {
    margin-top: -10px;

}

/* Seção FAQ */
.faq, .contact, .feedback {
    width: 80%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #000235;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq h2, .contact h2, .feedback h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8E5AFF;;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #8E5AFF;
}

.faq-item p {
    margin: 0.5rem 0 1rem;
}

/* Formulários de contato e feedback */
label {
    display: block;
    margin: 0.5rem 0 0.2rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: #8E5AFF;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #4a3a6b;
}

.contact {
    color: white;
}

.feedback {
    color: white;
}

p {
    color: white;
}