/* Reset de estilos básicos */
* {
    margin: 5px;
    padding: 5px;
    box-sizing: border-box;
}

/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

header {
    background-color: #333;
    text-align: center;
}

header h1 {
    color: #fff;
    margin: 10px;
}

.banner {
    background-color: #333;
    color: #fff;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-left;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.whatsapp-button img {
    width: 200px;
    height: 50px;
    margin-right: 10px;
}

.carousel {
    position: relative;
    width: 99%;
    overflow: hidden;
    margin-top: 20px;
}

.carousel img {
    display: block;
    width: 99%;
    height: auto;
}

footer {
    background-color: #333;
    text-align: center;
}

footer p {
    color: #fff;
    margin: 0;
}
