* {
    padding: 0;
    margin: 0;
    border: 0;
}

:root {
    --cor-azul-claro: #EEF7FD;
    /* Fundo muito claro */
    --cor-roxo: #794EFD;
    /* Roxo vibrante */
    --cor-lavanda: #A88BFB;
    /* Roxo mais suave */
    --cor-azul: #57BAFD;
    /* Azul vivo */
    --cor-pessego: #FBD1CC;
    /* Rosa/pêssego claro */
}

/* ❌ NÃO UTILIZADO — Header antigo removido do HTML
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: 0 2px 10px rgba(10px);
    z-index: 1000;
}
.home-nav-logoespan {
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-nav-logo {
    height: 120px;
    width: 120px;
}
#home-nav-span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cor-lavanda)
}
.home-nav-links a,
ul {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: var(--cor-azul);
    list-style-type: none;
    font-weight: bold;
    font-size: 1.5rem;
}
.home-nav-links a:hover {
    color: var(--cor-roxo);
}
*/

/* ❌ NÃO UTILIZADO — Bloco inteiro era descrição/HTML, não CSS
<header> ... </header>
*/

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 40px;
}

#home-section1 {
    background-image: url(/img/img-home-section1.jpg);
    background-size: cover;
    height: 100vh;
    text-align: center;
    justify-items: center;
}

.home-section1-elementos {
    position: relative;
    top: 30%;
    font-weight: bold;
    font-size: 25px;
}

#home-section1-button-principal {
    background: linear-gradient(90deg, var(--cor-roxo), var(--cor-azul), var(--cor-pessego));
    background-size: 200%;
    border: none;
    border-radius: 90px;
    padding: 20px 40px;
    margin-top: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: black;
    transition: all 0.4s ease;
    position: relative;
}

#home-section1-button-principal:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgb(121, 78, 253, 0.4);
}

/* --- FALE CONOSCO --- */
.fale-conosco-section1 {
    background-image: url(/img/img-fale-conosco2.jpg);
    background-size: cover;
    height: 100vh;
    text-align: center;
    justify-items: center;
}

.img-fale-conosco-formulario {
    background-color: #f6f6f6;
    background-size: cover;
    box-shadow: 0px 0px 22px 0px #000000;
    border-radius: 20px;
}

/* --- TESTE: Fundo --- */
#teste-section1 {
    background-image: url(/img/img-teste-fundo.jpg);
    background-size: cover;
    height: 100vh;
    text-align: center;
    justify-items: center;
}

/* ❌ NÃO UTILIZADO — Variáveis inexistentes no :root
.bg-mint-green {
    background-color: var(--cor-verde-feliz);
}
.bg-blue {
    background-color: var(--cor-azul-claro-fofo);
}
.bg-purple {
    background-color: var(--cor-azul-medio-neutro);
}
.bg-dark-purple {
    background-color: var(--cor-roxo-triste);
}
.bg-coral {
    background-color: var(--cor-salmao-rosado-muito-triste);
}
*/

.face-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
}

.btn-emojis {
    color: var(--cor-roxo);
    font-size: 1.5rem;
}

.top {
    padding-top: 300px;
}

.pergunta {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.pergunta label {
    margin-right: 8px;
}

.opcoes label {
    margin-right: 10px;
    display: inline-block;
}

.corpo {
    background-color: #f5f5f5;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.topo {
    align-self: flex-start;
    margin-top: 40px;
    padding: 10px;
}

/* --- HEADER NOVO (EM USO) --- */
.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    max-width: 100vw;
    padding: 0 77px;
    margin: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 1000;
}

.home-nav-logo {
    height: 30px;
}

.home-nav, .home-nav nav, .home-nav-links {
    display: flex;
    align-items: center;
}

.home-nav-links {
    min-width: fit-content;
    max-width: 700px;
    margin: 0;
    justify-content: space-between;
    gap: 15px;
}

.home-nav-links li {
    list-style: none;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.home-nav-links li a {
    padding: 5px;
    text-decoration: none;
    color: #000;
}

.home-nav-links li a:hover {
    font-weight: 800;
}

/* EXPLICAÇÃO DO FORM */
.explicacao-form{
    font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.explicacao-form ul li{
    list-style: none;
    font-weight: 500;
}

@media screen and (max-width:890px) {
    .container-header{
        padding-top: 20px;
        height: min-content;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 10px;
    }
    .titulo-principal {
        padding-top: 10px;
    }
    .home-nav-links {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
}

/* --- FORMULÁRIO --- */
.form-card {
    background: #ffffffd5;
    backdrop-filter: blur(6px);
    border: 1px solid #ececec;
}

.titulo-form {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #794EFD;
}

.input-estiloso {
    border-radius: 10px !important;
    border: 1px solid #d5d5d5 !important;
    transition: all 0.3s ease-in-out;
}

.input-estiloso:focus {
    border-color: #794EFD !important;
    box-shadow: 0 0 8px rgba(121, 78, 253, 0.3) !important;
}

.btn-gradiente {
    background: linear-gradient(90deg, #794EFD, #57BAFD, #FBD1CC);
    background-size: 200%;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    transition: 0.4s;
}

.btn-gradiente:hover {
    transform: scale(1.03);
    background-position: right;
    box-shadow: 0 0 12px rgba(121, 78, 253, 0.4);
}
