body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f172a;
    color: #e5e7eb;
    font-size: 18px; /* aumento do texto normal */
}

/* Cabeçalho com imagens e texto centralizado */
header {
    background-color: #020617;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* espaço entre imagens e texto */
}

.header-img {
    width: 120px; /* ajuste conforme necessário */
    height: auto;
    border-radius: 5px;
}

.left-img {
    order: 1; /* imagem esquerda */
}

.header-text {
    text-align: center;
    order: 2; /* título central */
}

.header-text h1 {
    margin: 0;
    font-size: 36px;
    color: #38bdf8;
}

.header-text h2 {
    margin-top: 10px;
    font-weight: normal;
    color: #cbd5f5;
}

.right-img {
    order: 3; /* imagem direita */
}

section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.card {
    background-color: #020617;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card h3 {
    color: #38bdf8;
}

footer {
    background-color: #020617;
    text-align: center;
    padding: 20px;
    color: #94a3b8;
}

/* Estilo do botão WhatsApp */
.whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
}

