@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

body{
    height: 100vh;
    margin: 0;
    font-family: "Poppins", serif;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    overflow-y: hidden;
}

a{
    text-decoration: none;
}

header{
    background-color: #262626;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

main{
    overflow: auto;
    scrollbar-width: none;
    flex: 1;
    background: black;
    background-size: cover;
}

.logo-empresa{
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.icone-notificacao{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icone-usuario{
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.div-header-icones{
    display: flex;
    align-items: center;
}

.div-btn-busca{
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(../img/fundoCabecalho.jpg);
    background-size: cover;
    color: white;
}

.div-marca-img{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.img-marca{
    width: 110px;
    height: 110px;
    align-self: flex-end;
}

.div-infos{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.img-infos{
    width: 48px;
    object-fit: contain;
}

.container-infos{
    display: flex;
    background-color: #949494cc;
    justify-content: center;
    gap: 1rem;
    padding: 0.2rem;
}

.texto-resultado{
    margin: 0;
    font-weight: 500;
}

.texto-resultado-normal{
    font-weight: 300;
}

.container-resultados{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-section{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.img-sessoes-resultado{
    height: 140px;
    z-index: 1;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.card{
    position: relative;
    width: 100%;
    max-width: 387px;
}

.texto-informacoes{
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    color: black;
}

h1{
    margin: 0;
}

.detalhes-peca {
    background-color: #fff;
    position: absolute;
    top: 50%;  
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-top: 4rem;
    min-height: auto;  
    overflow: hidden; 
    max-height: 0; 
}

.hidden{
    display: none;
}

.show {
    display: flex;
    flex-direction: column;
    max-height: 500px;
}

.espaco{
    margin-bottom: 10rem;
}

.info-img{
    height: 70px;
}

.texto-info{
    font-weight: 400;
}

.div-info{
    display: flex;
}

.info-oficial{
    color: blue;
}

.info-compartilhada{
    color: red;
}

.container-info{
    display: flex;
    justify-content: space-between;
}

.div-estrelas {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(..//img/botao.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 400px;
    min-width: 100px;
    height: 130px;
}

.form-avaliacao{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.btn-enviar{
    background: none;
    border: none;
    outline: none;
    background-image: url(../img/btnEnviar.png);
    background-size: cover;
}

.titulo-avaliacao{
    color: white;
    font-size: 2rem;
    font-weight: 500;
    width: 400px;
    margin: 0;
}

#textoComentario{
    width: 400px; 
    height: 150px; 
    resize: none; 
    overflow-y: auto;
    font-family: "Poppins", serif;
    padding: 0.2rem;
    margin-top: 1rem;
    outline: none;
    font-size: 1.2rem;
}

#textoComentario::placeholder {
    color: black; 
    font-family: "Poppins", serif; 
    font-size: 1.2rem;
    opacity: 1;
}

.fa-star {
    color: grey; /* Cor padrão das estrelas */
    font-size: 3.5rem;
    cursor: pointer; /* Indica que é clicável */
    transition: color 0.3s ease-in-out; /* Suaviza a mudança de cor */
}

.fa-star.ativo {
    color: #FBCE00; /* Cor da estrela ativa */
}

.icone-enviar{
    width: 120px;
    height: 120px;
}

.img-logo{
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.img-v8{
    width: 100%;
    object-fit: cover;
    object-position: left;
}

.btn-principal{
    width: 100%;
}