body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #3b4551;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

header {
    width: 100%;
    height: 100px;
    background-color: #2c333a;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    max-width: 150px;
    height: auto;
}

#carrossel {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 80%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translate(-50%, -50%);
}

/* Botões */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Menu */
nav {
    width: 100%;
    background-color: #343a40;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.menu-button {
    background-color: #C16E50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.menu-button:hover {
    background-color: #884a36;
}

/* Rodapé */
footer {
    width: 100%;
    height: 100px;
    background-color: #2c333a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contatos {
    display: flex;
    gap: 20px;
}

.contatos img {
    width: 30px;
    height: auto;
}

/* Responsivo */
@media (max-width: 768px) {
    .slide {
        width: 80%;
    }

    nav {
        flex-direction: column;
    }
}
