body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #090909;
    background-image: url(img/bg.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

h1 {
    text-align: center;
}

#products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 300px;
    height: fit-content;
    background-color: #FFF;
}
.product {
    text-align: center;
}

.product .descricao {
    text-align: left;
    border: solid 1px #0056b3;
    border-radius: 10px;
    padding: 18px;
}
.product.hightlight {
    width: 720px;
}

.product h2 {
    margin-top: 0;
    font-weight: 100;
}

.product img {
    width: auto;
    height: 200px;
    margin-bottom: 10px;
}

.product.hightlight img {
    width: auto;
    height: 450px;
}

.product a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.product a:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: white;
}

header {
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}
header h1 {
    margin: 0;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 10px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}
nav ul li a:hover {
    text-decoration: underline;
}
.menu-container {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}
.menu {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 40%;
    padding: 20px;
    text-align: center;
}
section>h2 {
    color: #FFF;
    font-family: 'Ubuntu', sans-serif;
}
section>h2:hover {
    text-decoration: underline;
}
.menu h2 {
    color: #FFF;
    margin-bottom: 20px;
}
.menu ul {
    list-style: none;
    padding: 0;
}
.menu ul li {
    margin: 10px 0;
}
.menu ul li a {
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
    transition: color 0.3s;
}
.menu ul li a:hover {
    color: #0056b3;
}
.section {
    display: flex;
}
.multiple .section:not(.subsection-content) {
    color: white;
    flex-direction: column;
}
.section-title, .product {
    color: black;
}
.subsection-content {
    color: black;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#perfumes_femininos-container, #perfumes_masculinos-container{
    flex-direction: row;
    overflow-x: 0 !important;
}
#destaques-container {
    overflow-x: scroll;
    justify-content: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
footer a {
    color: white;
}
footer a:hover {
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .menu {
        width: 80%; /* Reduz a largura do menu em telas menores */
    }
    .section {
        display: block;
    }
    
    #destaques-container {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: 0;
    }
    .product:not(.hightlight) img {
        width: 100%;
        height: auto;
    }
    .product:not(.hightlight) {
        min-width: 80%;
        height: fit-content;
    }
}