.menu {
    background-color: #fff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu li a {
    color: black;
    text-decoration: none;
}

.logo {
    margin-left: 20px;
}

.logo img {
    height: 100px;
    width: 100px;
}

.btn {
    padding: 10px 20px;
    background-color: #f2f2f2;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 20px;
}

.cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #f2f2f2;
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.cart-button i {
    margin-right: 5px;
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel .slide {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}

.carousel .slide.active {
    opacity: 1;
}


.carousel-controls {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-controls .botao {
    background-color: #e4f0ac;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    border-color: #ffffff;
}

.carousel-controls .botao.selected {
    background-color: #d1ff04;
}

.destaque {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.product-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.product {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.product img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    color: #888;
}

.footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
  }

  .social-media {
    margin-top: 10px;
  }

  .social-media a {
    display: inline-block;
    background-color: #738a0b;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
  }