/* Configurações Globais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Cabeçalho */
.header {
    text-align: center;
    background-color: #0044cc;
    color: white;
    padding: 40px 20px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.header .btn-primary {
    background-color: #ffa500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header .btn-primary:hover {
    background-color: #cc8400;
}

/* Seção de Serviços */
.services {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.5rem;
    color: #0044cc;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #666;
}

.card:hover {
    transform: scale(1.05);
}

/* Seção de Consultoria */
.consulting {
    text-align: center;
    padding: 40px 20px;
    background-color: #e9f1ff;
}

.consulting h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0044cc;
}

.consulting p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.consulting .btn-secondary {
    background-color: #0044cc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.consulting .btn-secondary:hover {
    background-color: #003399;
}

/* Seção de Contato */
.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact input,
.contact textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact button {
    background-color: #0044cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #003399;
}

/* Rodapé */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #0044cc;
    color: white;
    font-size: 1rem;
}

