@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;
}

.img_galeria {
    width: 100%;
    aspect-ratio: 1 /1;
    border-radius: 6px;
}

main {
    overflow: auto;
    scrollbar-width: none;
    flex: 1;
    background: linear-gradient(180deg, black 0%, #4D2C17 40%, #D87C2B 100%);
    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;
}

.div-menu {
    position: relative;
    height: 160px;
    width: 100%;
}

h1 {
    margin: 0;
}

.botao {
    width: 100%;
    height: 100%;
    position: absolute;
}

.btn-foto {
    width: 90px;
    /* Mantém a largura em 50% do contêiner pai */
    height: 90px;
    /* Mantém a altura em 50% do contêiner pai */
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    /* Centraliza apenas na vertical */
}

.titulo-galeria {
    color: white;
    position: absolute;
    right: 30px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    font-size: 1.6rem;
}

.faixa-produto {
    color: white;
    position: absolute;
    right: 10px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    width: 90%;
    height: 40px;
    margin-left: 6rem;
}

.btn-adicionar {
    width: 72px;
    position: absolute;
    z-index: 1;
    bottom: -30px;
    right: 16px;
}

.div-midias {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    border-radius: 6px;
    box-sizing: border-box;
}

.img-produto {
    width: 100%;
    height: 100%;
    background-color: white;
    object-fit: contain;
}


h1 {
    color: white;
}