body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #800020;
    color: white;
    padding: 15px;
    font-weight: bold;
}

.sidebar {
    background-color: pink;
    padding: 20px;
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 60px;
    left: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li a {
    display: block;
    color: white;
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
}

main {
    margin-left: 220px;
    padding: 20px;
}

.slideshow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid #800020;
    border-radius: 25px;
    padding: 20px;
}

.slide-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.produtos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.produto {
    border: 2px solid #800020;
    padding: 10px;
    width: 200px;
    text-align: center;
}

.produto img {
    width: 200px;
    height: 400px;
    object-fit: cover;
}

.whats {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: white;
    border: 2px solid #800020;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    color: #800020;
}
/* Estilos para o slideshow */
.slideshow {
    position: relative;
    width: 100%;
    height: 500px; /* Altura do slideshow */
    overflow: hidden;
}
.slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
}
.slideshow .slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 10px;
}
/* Estilos para o slideshow */
.slideshow {
    position: relative;
    width: 100%;
    height: 500px; /* Altura do slideshow */
    overflow: hidden;
}
.slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
}
.slideshow .slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 10px;
}
.slideshow .slide-btn#prev {
    left: 10px;
}

