@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;
    background-color: black;
    scrollbar-width: none;
}

.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;
    padding: 1rem;
}

.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: 600;
    font-size: 22px;
}

.texto-resultado-normal {
    font-weight: 200;
    font-size: 20px;
}

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

.main-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    background: linear-gradient(180deg, black 0%, #4D2C17 40%, #D87C2B 100%);
}

.img-sessoes-resultado {
    z-index: 1;
    position: relative;
    cursor: pointer;
    width: 100%;
    object-fit: contain;
}

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

.btn_medidas_comunidade {
    background: linear-gradient(145deg, #3c3c3c, #2b2b2b);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    padding: 0.7rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.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%;
    box-sizing: border-box;
    padding: 0.4rem;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 4.5rem;
    min-height: auto;
    overflow: hidden;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.hidden {
    display: none;
}

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

.espaco {
    margin-bottom: 10rem;
}

.info-img {
    height: 48px;
}

.texto-info {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.div-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.div-info img{
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.div-info-medidas {
    display: flex;
}

.info-oficial {
    color: blue;
}

.info-compartilhada {
    color: red;
}

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

@media(max-width: 380px) {
    .div-info-medidas {
        flex-direction: column;
    }

    .texto-info {
        margin: 0;
    }

    .div-info {
        align-items: center;
    }
}