*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background: linear-gradient(135deg,#0f9b6d,#34c38f);
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.card-login{
    width:90%;
    max-width:400px;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    text-align:center;
}

.logo{
    font-size:70px;
    margin-bottom:10px;
}

.titulo{
    font-size:28px;
    color:#0f9b6d;
    margin-bottom:10px;
    font-weight:bold;
}

.subtitulo{
    color:#666;
    margin-bottom:30px;
    font-size:15px;
}

.input{
    width:100%;
    height:50px;
    border:1px solid #ccc;
    border-radius:12px;
    padding:0 15px;
    font-size:18px;
    margin-bottom:20px;
}

.botao{
    width:100%;
    height:50px;
    border:none;
    border-radius:12px;
    background:#0f9b6d;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.botao:hover{
    background:#0c7c57;
}

.erro{
    background:#ffdede;
    color:#c0392b;
    padding:12px;
    border-radius:10px;
    margin-bottom:20px;
}



/* FORMULÁRIO */

body.form-body{
    background:#f3f7f5;
    display:block;
    padding:20px;
}

.container-form{
    width:100%;
    max-width:950px;
    margin:auto;
}

.topo{
    background:linear-gradient(135deg,#0f9b6d,#34c38f);
    padding:30px;
    border-radius:20px;
    color:white;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
	text-align:center;
}

.topo h1{
    font-size:30px;
    margin-bottom:10px;
}

.card{
    background:white;
    padding:25px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.card h2{
    font-size:20px;
    color:#0f9b6d;
    margin-bottom:20px;
}

.input-form,
.select-form,
.textarea-form{
    width:100%;
    border:1px solid #dcdcdc;
    border-radius:12px;
    padding:15px;
    font-size:16px;
}

.textarea-form{
    min-height:120px;
    resize:vertical;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.opcoes{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.opcao{
    background:#f5f5f5;
    border-radius:12px;
    padding:12px 15px;
    cursor:pointer;
    border:2px solid transparent;
    transition:0.3s;
}

.opcao:hover{
    border-color:#0f9b6d;
    background:#eefaf5;
}

.opcao input{
    margin-right:8px;
}

.nps{
    display:grid;
    grid-template-columns:repeat(11,1fr);
    gap:5px;
}

.nps label{
    background:#f5f5f5;
    padding:10px;
    border-radius:10px;
    text-align:center;
    cursor:pointer;
}

.botao-enviar{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    background:#0f9b6d;
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.botao-enviar:hover{
    background:#0c7c57;
}

.sucesso{
    background:#d4edda;
    color:#155724;
    padding:20px;
    border-radius:15px;
    text-align:center;
    margin-bottom:20px;
}

@media(max-width:700px){

    .grid-2{
        grid-template-columns:1fr;
    }

    .nps{
        grid-template-columns:repeat(4,1fr);
    }

}

/* QUESTÃO 9 */

.setores-desktop{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.setores-mobile{
    display:none;
}

@media(max-width:700px){

    .setores-desktop{
        display:none;
    }

    .setores-mobile{
        display:block;
    }

    .setores-mobile select{
        min-height:250px;
    }

}


/* RESPONSIVIDADE MOBILE */

.mobile-only{
    display:none;
}

.desktop-only{
    display:block;
}

@media(max-width:700px){

    .desktop-only{
        display:none;
    }

    .mobile-only{
        display:block;
    }

    .opcoes{
        flex-direction:column;
    }

    .opcao{
        width:100%;
    }

    .select-mobile{
        width:100%;
        border:1px solid #dcdcdc;
        border-radius:12px;
        padding:15px;
        font-size:16px;
        background:white;
    }

}

/* QUESTÃO 1 */

.grid-profissional{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:20px;
}

@media(max-width:700px){

    .grid-profissional{
        grid-template-columns:1fr;
    }

}

/* MENU */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.menu-card{
    background:white;
    border-radius:20px;
    padding:30px;
    text-decoration:none;
    color:#333;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
    text-align:center;
}

.menu-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

.menu-icone{
    font-size:60px;
    margin-bottom:15px;
}

.menu-titulo{
    font-size:22px;
    font-weight:bold;
    color:#0f9b6d;
    margin-bottom:10px;
}

.menu-texto{
    color:#666;
    font-size:15px;
}

@media(max-width:700px){

    .menu-grid{
        grid-template-columns:1fr;
    }

}