/* Reset Geral */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    color: #404040;
    padding-top: 80px; /* IMPORTANTE: Empurra o site para baixo para não ficar escondido atrás da barra branca */
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* --- BARRA BRANCA FIXA (NAVBAR) --- */
.navbar {
    background: #fff;       /* Fundo Branco */
    position: fixed;        /* Fixa no topo */
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 1000;          /* Fica por cima de tudo */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra leve */
    display: flex;
    align-items: center;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left; /* Alinha logo à esquerda */
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-transform: none; /* Mantém maiúscula/minúscula original */
}

.sub-logo {
    font-size: 0.8rem;
    color: #666;
    font-weight: 300;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.menu li a:hover {
    color: #000;
}

/* --- BANNER / HERO (Imagem do Ar) --- */
.hero {
    /* Troque 'fundo-ar.jpg' pelo nome da sua imagem */
    background-image: url('fundo-ar.jpg'); 
    background-size: cover;
    background-position: center;
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    /* Efeito escuro leve para o texto aparecer */
    background: rgba(255, 255, 255, 0.1); 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff; /* Texto Branco */
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra para leitura */
    max-width: 900px;
}

/* --- SERVIÇOS --- */
.servicos { padding: 80px 0; background-color: #fff; }
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.grid-servicos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.card-servico {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: 0.3s;
}
.icon-circle i { font-size: 45px; color: #ff6b6b; }
.card-servico:hover .icon-circle { transform: scale(1.1); border-color: #ff6b6b; }
.card-servico h3 { font-size: 1rem; text-transform: uppercase; margin-bottom: 15px; font-weight: 700; }
.line-detail { width: 50px; height: 2px; background-color: #ff6b6b; }

/* --- ASSISTÊNCIA (VERDE) --- */
.assistencia { background-color: #58d68d; padding: 60px 0; color: white; }
.assistencia-title { font-size: 1.4rem; margin-bottom: 40px; font-weight: 400; }
.img-container { background: white; padding: 15px; border-radius: 10px; display: inline-block; }
.img-container img { max-width: 100%; height: auto; }
.zoom-hover img { transition: transform 0.5s ease; }
.zoom-hover:hover img { transform: scale(1.05); }

/* --- CONTATO (VERMELHO) --- */
.contato-bar { background-color: #e84c3d; padding: 50px 0; color: white; }
.contato-bar h3 { font-size: 1.8rem; margin-bottom: 20px; }
.whatsapp-box { font-size: 1.3rem; font-weight: 700; display: flex; justify-content: center; align-items: center; gap: 15px; }
.whatsapp-box i { font-size: 2rem; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.pulse { animation: pulse 2s infinite; }

/* --- RODAPÉ --- */
footer { background-color: #222; color: #999; padding: 40px 0 20px; }
.footer-grid { display: flex; justify-content: space-around; flex-wrap: wrap; margin-bottom: 20px; }
.footer-item { margin: 10px; }
.copyright { border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; }

/* RESPONSIVO */
@media (max-width: 768px) {
    .nav-flex { flex-direction: column; gap: 10px; }
    .main-title { font-size: 1.5rem; }
    body { padding-top: 120px; } /* Aumenta espaço no mobile pois o menu fica maior */
}