* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* --- ANIMAÇÕES DE ENTRADA --- */
@keyframes descerTopo {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes surgirSuave {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- CABEÇALHO --- */
header {
    background-color: white; 
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #1A7A43;
    animation: descerTopo 0.8s ease-out forwards;
}

.logo { max-height: 70px; width: auto; }

header nav a {
    color: #0B2A4A; 
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

header nav a:hover { color: #1A7A43; }

/* --- BANNER PRINCIPAL (HERO) NOVO ESTILO --- */
.hero-banner {
    background-color: #0B2A4A;
    background-image: radial-gradient(circle at right, #13467a 0%, #0B2A4A 60%);
    color: white;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.hero-texto {
    flex: 1;
    opacity: 0;
    animation: surgirSuave 1s ease-out 0.5s forwards;
}

.hero-texto h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-texto p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

.hero-imagem {
    flex: 1;
    text-align: right;
}

.hero-imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid #1A7A43;
}

.btn-orcamento {
    display: inline-block;
    background-color: #1A7A43;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 18px;
}

.btn-orcamento:hover {
    background-color: #146134;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 122, 67, 0.4);
}

/* --- NOVA SEÇÃO: PROCESSO --- */
.processo-bg {
    background-color: #071c33;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.processo-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.passo {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 15px;
    border-top: 4px solid #1A7A43;
    transition: 0.3s;
}

.passo:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.numero {
    font-size: 48px;
    font-weight: bold;
    color: #1A7A43;
    margin-bottom: 15px;
}

.passo h3 { font-size: 22px; color: white; }

/* --- SEÇÕES GERAIS --- */
main { text-align: center; }

section { padding: 80px 20px; overflow: hidden; }

.vantagens-bg {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.section-title {
    color: #0B2A4A;
    margin-bottom: 50px;
    font-size: 32px;
}

/* --- SEÇÃO QUEM SOMOS --- */
.sobre-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.sobre-texto {
    flex: 1;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.sobre-texto p { margin-bottom: 20px; }

.sobre-imagem { flex: 1; }

.sobre-imagem img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- VITRINE DE CARTÕES --- */
.vitrine {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #1A7A43;
}

.card h3 { color: #0B2A4A; margin-bottom: 15px; }
.card p { color: #555; font-size: 15px; line-height: 1.5; }
.servico-card { border-top: 4px solid #1A7A43; }

/* --- BOTÃO WHATSAPP E RODAPÉ --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: scale(1.05);
}

footer {
    background-color: #0B2A4A;
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-top: 4px solid #1A7A43;
    overflow: hidden;
}

footer p { margin-bottom: 10px; font-size: 14px; }
footer strong { font-size: 16px; color: #1A7A43; }

/* --- RESPONSIVIDADE (CELULAR) --- */
@media (max-width: 768px) {
    header { flex-direction: column; text-align: center; padding: 15px; }
    .logo { max-height: 60px; margin-bottom: 15px; }
    header nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
    header nav a { margin: 0; font-size: 15px; }

    .hero-container { flex-direction: column; text-align: center; }
    .hero-texto h2 { font-size: 36px; }
    .hero-imagem { text-align: center; }

    .sobre-container { flex-direction: column; }
    .sobre-texto { text-align: center; }
    .vitrine { grid-template-columns: 1fr; }

    .whatsapp-btn { bottom: 15px; right: 15px; padding: 12px 20px; font-size: 14px; }
}