/* Estilos globais e fontes */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #6e3b98; /* Azul escuro/roxo, baseado na imagem */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 5px 0;
    font-size: 2.5em;
}

.phone-number {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

/* Seletor de Idioma */
#language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
}

#language-switcher button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 5px;
}

#language-switcher button.active {
    background-color: white;
    color: #6e3b98;
    font-weight: bold;
}

/* Área de Conteúdo (Serviços) */
#content {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    gap: 20px;
    /* Ajuste para 2 colunas em telas maiores */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
}

.service-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    color: #6e3b98; /* Um azul vibrante para o título */
    margin-top: 0;
}

.price {
    font-size: 1.4em;
    color: #28a745; /* Verde para destacar o preço */
    margin-top: 10px;
}

/* Footer e Botão WhatsApp */
/* Footer e Botão WhatsApp */
footer {
    /* MANTÉM: centraliza o texto e a cor de fundo */
    text-align: center; 
    padding: 20px 0;
    background-color: #333;
    color: white;
}

/* O parágrafo de copyright estava com margem, vamos zerar */
footer p {
    margin: 5px 0 0 0; /* Ajusta a margem superior para espaçamento adequado */
}

.whatsapp-button {
    /* MANTÉM: torna o link parecido com um botão e centraliza */
    display: inline-block;
    background-color: #25d366; 
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px; /* Adiciona um espaço abaixo do botão */
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}