body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    text-align: center;
    padding: 20px;
}

header img {
    width: 300px;
    height: auto;
}

main {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333333;
    color: #ffffff;
}

@media (max-width: 768px) {
    header img {
        width: 150px;
        height: auto;
    }
}

.whatsapp-container {
    background-color: white;
    border-radius: 10px; /* Ajuste o valor para controlar o arredondamento */
    padding: 10px;
    margin: 2px;
    display: inline-block;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366; /* Verde WhatsApp */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #1DA1F2; /* Azul WhatsApp */
}

.whatsapp-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

iframe {
    width: 60%;
    height: 300px;
    margin: 20px auto;
}