/* Estilos gerais */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o body tenha no mínimo a altura da janela */
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    width: 100%;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 20px;
    text-align: center;
    flex: 1; /* Faz com que o conteúdo ocupe o espaço restante */
}

.banner {
    background-color: #e1e1e1;
    padding: 5px;
}

/* Subir a seção de serviços */
.services-overview {
    margin-top: -20px; /* Subir um pouco a seção */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    margin-top: auto;
}

/* WhatsApp Link - Botão Fixo */
.whatsapp-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
