html { scroll-behavior: smooth; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; margin: 0; background-color: #4a4a4a; color: white; overflow-x: hidden; }

/* --- CABEÇALHO --- */
header.white-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 20px; background-color: white; border-bottom: 2px solid #e67e22;
    position: fixed; top: 0; width: 100%; z-index: 1000; box-sizing: border-box; height: 80px;
}
.menu-icon { font-size: 30px; cursor: pointer; color: #e67e22; z-index: 1001; }
.logo-container { flex-grow: 1; display: flex; justify-content: center; }
.logo-img { height: 65px; width: 65px; border-radius: 50%; border: 2px solid #e67e22; object-fit: cover; }
.spacer { width: 40px; }

/* --- MENU OVERLAY (MANTIDO EM COLUNA) --- */
.overlay {
    height: 100vh; width: 100%; display: none; position: fixed; z-index: 9999;
    top: 0; left: 0; background-color: rgba(30, 30, 30, 0.98);
}
.overlay-content { 
    display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; width: 100%; 
}
.overlay a { 
    padding: 20px 0; text-decoration: none; font-size: 18px; color: white; 
    border-bottom: 1px solid rgba(230, 126, 34, 0.3); width: 80%; text-align: center; font-weight: bold; 
}
.close-btn { position: absolute; top: 20px; left: 20px; font-size: 45px; color: #e67e22; cursor: pointer; }

/* --- HERO --- */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero.png');
    background-size: cover; background-position: center;
    min-height: 70vh; display: flex; align-items: center; justify-content: center;
    padding: 140px 20px 60px 20px; margin-top: 0; text-align: center; box-sizing: border-box;
}
.hero-content { max-width: 800px; width: 100%; }
.hero-content p { color: #e67e22; letter-spacing: 2px; font-size: 13px; font-weight: bold; margin-bottom: 15px; text-transform: uppercase; }
.hero-content h1 { font-size: 28px; line-height: 1.3; margin-bottom: 30px; color: white; }
.hero-btn { background-color: #e67e22; color: white; padding: 14px 30px; text-decoration: none; border-radius: 30px; font-weight: bold; display: inline-block; }

/* --- SOBRE NÓS --- */
.about { padding: 50px 20px; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.about-img { 
    width: 100%; max-width: 450px; height: auto; border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.4); display: block; object-fit: cover;
}
.about-text-content { width: 100%; text-align: left; box-sizing: border-box; }
.orange-label { color: #e67e22; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 12px; display: block; }
.main-title { font-size: 26px; margin-bottom: 18px; font-weight: bold; color: white; line-height: 1.2; }
.description { color: #ccc; line-height: 1.7; margin-bottom: 25px; font-size: 15px; }
.saiba-mais-btn { 
    background-color: #e67e22; color: white; padding: 12px 28px; text-decoration: none; 
    border: none; border-radius: 25px; font-weight: bold; font-size: 14px; cursor: pointer; display: inline-block;
}

/* --- ACCORDION --- */
.accordion-header { 
    display: flex; justify-content: center; align-items: center; cursor: pointer; 
    background-color: #333; padding: 22px; gap: 12px; border-top: 1px solid #444; 
}
.seta { color: #e67e22; transition: transform 0.3s; font-size: 14px; }
.seta-aberta { transform: rotate(180deg); }
.accordion-content-fechado { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; background-color: #333; }
.accordion-content-aberto { max-height: 1200px; }
.grid-container { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 20px; }

.item-card { 
    background: #3d3d3d; padding: 18px; border-radius: 6px; display: flex; 
    align-items: flex-start; gap: 15px; border-left: 4px solid #e67e22; 
    text-decoration: none; color: white; font-weight: 500;
}
.item-card i { color: #e67e22; margin-top: 3px; flex-shrink: 0; width: 20px; text-align: center; font-size: 18px; }

/* --- ONDE ESTAMOS (CORRIGIDO) --- */
.onde-estamos { padding: 50px 20px; background-color: #3d3d3d; text-align: center; }
.locais-container { display: flex; flex-direction: column; gap: 12px; margin-top: 25px; }
.local-wrapper { background: #4a4a4a; border-radius: 10px; overflow: hidden; border: 1px solid #555; }

.local-item { 
    padding: 18px; 
    cursor: pointer; 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
    justify-content: center; /* CORREÇÃO: Centraliza tudo */
    gap: 10px;
    position: relative; /* CORREÇÃO: Necessário para a seta não empurrar o texto */
}

.local-item p {
    margin: 0;
    flex-grow: 0; /* CORREÇÃO: Tirado o grow para não jogar para o lado */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.local-item i {
    width: 20px;
    flex-shrink: 0;
}

/* CORREÇÃO: Seta em posição absoluta para o texto ignorar ela e ficar no centro */
.local-item i.fa-caret-down {
    position: absolute;
    right: 15px;
}

.local-info-hidden { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: #333; }
.local-info-hidden p { padding: 12px; margin: 0; font-size: 14px; color: #bbb; border-top: 1px solid #444; line-height: 1.5; }

/* --- RESTANTE MANTIDO IGUAL --- */
.full-service-section { padding: 35px 20px; text-align: center; background: #3d3d3d; border-top: 1px solid #555; }
.full-service-content { border: 1px solid #e67e22; padding: 12px 20px; color: #e67e22; font-weight: bold; display: inline-block; border-radius: 6px; font-size: 12px; letter-spacing: 1px; }
.contact-section { padding: 60px 20px; text-align: center; background: #333; }
.email-link { color: white; text-decoration: none; border-bottom: 2px solid #e67e22; font-size: 16px; padding-bottom: 4px; }
.social-links { display: flex; justify-content: center; gap: 35px; margin-top: 40px; font-size: 26px; }
.social-links a { color: #888; transition: color 0.3s; }
.social-links a:hover { color: #e67e22; }
.main-footer { padding: 35px; text-align: center; background: #262626; font-size: 11px; color: #666; letter-spacing: 1px; }
.whatsapp-button { position: fixed; bottom: 25px; right: 25px; background: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; z-index: 10000; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.4); }

@media (min-width: 768px) {
    .about { flex-direction: row; justify-content: center; gap: 80px; padding: 100px 40px; }
    .about.reverse { flex-direction: row-reverse; }
    .about-img { width: 45%; max-width: 550px; }
    .about-text-content { width: 35%; }
    .grid-container { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .hero-content h1 { font-size: 48px; }
    .locais-container { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .local-wrapper { width: 300px; }
}
/* (As seções de Atuação e Modal continuam exatamente como estavam abaixo) */
.atuacao-direta { padding: 60px 20px; background-color: #3d3d3d; text-align: center; }
.container-atuacao { max-width: 1200px; margin: 0 auto; }
.description-top { margin-bottom: 40px; color: #ccc; line-height: 1.6; }
.grade-servicos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; text-align: left; }
.servico-bloco { background: #444; padding: 25px; border-left: 4px solid #e67e22; border-radius: 4px; position: relative; }
.servico-bloco h3 { color: #e67e22; margin-top: 0; font-size: 18px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.servico-bloco p { font-size: 14px; line-height: 1.5; color: #eee; margin-bottom: 10px; }
.ler-mais { color: #e67e22; cursor: pointer; font-weight: bold; font-size: 13px; display: block; text-transform: uppercase; text-decoration: underline; }
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 10000; justify-content: center; align-items: center; }
.modal-content { background: #333; color: white; padding: 30px; border-radius: 8px; max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto; position: relative; border-top: 5px solid #e67e22; }
.close-modal { position: absolute; top: 10px; right: 20px; font-size: 35px; color: #e67e22; cursor: pointer; }