/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonte principal */
body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #111;
}

/* Navbar */
header {
    background-color: #222;
    color: white;
    padding: 20px;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
}

header ul {
    list-style: none;
    display: flex;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

header ul li a:hover {
    color: #f39c12;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #2e2e2e, #222);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .btn-primary {
    background-color: #f39c12;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn-primary:hover {
    background-color: #e67e22;
}

/* Carrossel */
.carrossel {
    background: #111;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.carousel {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Seção Produtos */
.produtos {
    background: linear-gradient(135deg, #444, #333);
    padding: 50px 0;
    text-align: center;
}

.produtos h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.produtos-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.produto img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius
