/* === 1. RESET GERAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* === 2. CABEÇALHO (Grid Blindado) === */
header {
    background-color: #2c3e50;
    width: 100%;
    height: 90px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1000;
}

nav {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

/* LOGO (Ajuste para PNG com borda) */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-column: 1;
    position: relative;
    top: 25px;
    z-index: 2000;
    overflow: visible;
}

.logo-img {
    height: 140px;
    width: auto;
    display: block;
    transform: translateX(-50px); /* Ajuste lateral */
    filter: drop-shadow(0 4px 5px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: translateX(-50px) scale(1.05);
}

/* MENU */
.menu {
    grid-column: 2;
    justify-self: end;
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #ecf0f1;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #f39c12;
}

.btn-contato {
    border: 2px solid #f39c12;
    padding: 5px 15px;
    border-radius: 4px;
    color: #f39c12 !important;
}

.btn-contato:hover {
    background-color: #f39c12;
    color: #2c3e50 !important;
}

/* === 3. MIOLO DO SITE (Hero) === */
main {
    flex: 1;
}

.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../img/hero-bg.jpg');
    background-color: #34495e; 
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #d35400;
}

/* === 4. DIFERENCIAIS (Cards Executivos) === */
.diferenciais {
    max-width: 1200px; /* Aumentei a largura para caber os 4 cards lado a lado */
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.diferenciais h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 10px;
    /* Removi a borda laranja antiga para um visual mais limpo */
}

.subtitulo-dif {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* O Grid que segura as caixinhas */
.grid-diferenciais {
    display: grid;
    /* Isso faz os cards se ajustarem sozinhos (responsivo) */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* A Caixinha (Card) */
.card-dif {
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra leve */
    
    /* AQUI ESTÁ O DETALHE AZUL ESCURO */
    border-top: 6px solid #2c3e50; 
    
    transition: transform 0.3s ease;
    text-align: center;
}

/* Efeito ao passar o mouse */
.card-dif:hover {
    transform: translateY(-10px); /* O card flutua para cima */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-dif i {
    font-size: 2.5rem;
    color: #2c3e50; /* O ícone combina com a borda azul */
    margin-bottom: 20px;
}

.card-dif h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-dif p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


/* === 5. SEÇÃO SOBRE A EMPRESA (PROFISSIONAL) === */
.sobre-profissional {
    background-color: #fff;
    padding: 80px 20px;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
}

.sobre-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.destaque-topo {
    color: #e67e22;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.sobre-texto h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sobre-texto p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.lista-competencias {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.lista-competencias li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lista-competencias i {
    color: #27ae60;
    font-size: 1.2rem;
}

.btn-sobre {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-sobre:hover {
    background-color: #e67e22;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0px rgba(44, 62, 80, 0.1);
}

/* === 6. PÁGINA SERVIÇOS E GALERIA === */
.hero-servicos { padding: 70px 20px; }

.container-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.card-servico {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 5px solid #2c3e50;
}

.card-servico:hover {
    transform: translateY(-10px);
    border-bottom-color: #f39c12;
}

.card-img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #eee;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.card-servico:hover .card-img img {
    transform: scale(1.04);
}

.icone-servico {
    font-size: 3rem; /* Aumentei de 2rem para 3rem */
    color: #f39c12;
    margin-bottom: 20px;
}


.btn-card {
    display: inline-block;
    margin-top: 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}

/* GALERIA */
.galeria-servicos {
    max-width: 1200px;
    margin: 10px auto 60px auto;
    padding: 0 20px;
    text-align: center;
}

.galeria-servicos h2 {
    color: #2c3e50;
    margin-bottom: 8px;
    border-bottom: 3px solid #f39c12;
    display: inline-block;
    padding-bottom: 6px;
}

.galeria-coluna {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.galeria-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
}

.galeria-item:hover img {
    transform: scale(1.02);
}

/* === 7. RODAPÉ === */
footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #f39c12;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.3rem;
}

.social-links a:hover {
    color: white;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .sobre-container { grid-template-columns: 1fr; gap: 30px; }
    .sobre-imagem { order: -1; }
    .logo-img { height: 100px; transform: translateX(-30px); }
    header { height: 80px; }
}
/* === 6. PARCEIROS B2B === */
.parceiros-area {
    background-color: #2c3e50; /* Fundo Azul Escuro */
    color: white; /* Texto Branco */
    padding: 60px 20px;
    margin-top: 50px;
}

.container-parceiros {
    max-width: 1000px;
    margin: 0 auto;
    display: flex; /* IMPORTANTE: Coloca lado a lado */
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Em celular, quebra linha */
    gap: 40px;
}

.texto-parceiro {
    flex: 1;
    min-width: 300px; /* Garante tamanho mínimo */
}

.texto-parceiro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white; /* Garante cor branca */
}

.texto-parceiro p {
    color: #ecf0f1; /* Cinza claro */
    line-height: 1.6;
}

.icones-parceiro {
    display: flex; /* IMPORTANTE: Ícones lado a lado */
    gap: 30px;
    text-align: center;
}

.item-p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ecf0f1;
}

.item-p i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #f39c12; /* Laranja para destacar */
    display: block; /* Ícone em cima do texto */
}

.btn-parceiro {
    display: inline-block;
    background: #f39c12;
    color: #2c3e50;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-parceiro:hover {
    transform: scale(1.05);
    background: white;
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .container-parceiros {
        flex-direction: column; /* Um embaixo do outro */
        text-align: center;
    }
    
    .icones-parceiro {
        justify-content: center; /* Centraliza ícones */
        gap: 20px;
    }
}
/* === BARRA DE LOCALIZAÇÃO === */
.barra-localizacao {
    background-color: #ecf0f1; /* Cinza bem clarinho */
    color: #2c3e50;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #bdc3c7;
    margin-top: 0; /* Cola na seção anterior */
}

.barra-localizacao p {
    font-size: 1.1rem;
    margin: 0;
}

.barra-localizacao i {
    color: #e74c3c; /* Vermelho padrão de pino de mapa */
    margin-right: 10px;
    font-size: 1.3rem;
}

.barra-localizacao strong {
    font-weight: 700;
}
/* Estilo para a parte de "Grandes Obras" */
.detalhe-nacional {
    display: inline-block;
    margin-left: 15px;
    font-size: 0.95rem; /* Levemente menor para criar hierarquia */
    color: #555;        /* Cinza mais escuro para boa leitura */
    font-style: italic; /* Itálico para diferenciar do local principal */
    border-left: 2px solid #ccc; /* Uma barrinha vertical separando */
    padding-left: 15px;
}

/* Ajuste importante para Celular (Mobile) */
@media (max-width: 768px) {
    .barra-localizacao p {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .detalhe-nacional {
        display: block;
        margin-left: 0;
        padding-left: 0;
        border-left: none; /* Remove a barra lateral no celular */
        border-top: 1px solid #ddd; /* Coloca uma linha horizontal fina */
        padding-top: 10px;
    }
}
/* === LISTA TÉCNICA DETALHADA === */
.lista-tecnica {
    background-color: #f8f9fa; /* Fundo cinza bem suave */
    padding: 60px 20px;
    border-top: 1px solid #e9ecef;
}

.lista-tecnica h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.sub-tecnica {
    text-align: center;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 50px auto; /* Margem grande embaixo para separar das colunas */
    font-size: 1rem;
    line-height: 1.6;
}

/* O GRID DAS 3 COLUNAS */
.grid-listas {
    display: grid;
    /* Cria colunas automáticas. No PC fica 3, no celular vira 1 */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ESTILO DE CADA BLOCO DE SERVIÇO */
.grupo-servico h4 {
    color: #e67e22; /* Laranja da marca */
    border-bottom: 2px solid #e67e22; /* Linha laranja embaixo do título */
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.grupo-servico h4 i {
    margin-right: 8px;
}

.grupo-servico ul {
    list-style: none; /* Tira as bolinhas padrões feias */
    padding: 0;
}

.grupo-servico li {
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1; /* Linha fina separando itens */
    color: #555;
    font-size: 0.95rem;
    display: flex; /* Alinha o check com o texto */
    align-items: flex-start;
}

.grupo-servico li:last-child {
    border-bottom: none; /* Tira linha do último item */
}

/* O CHECKZINHO VERDE ANTES DE CADA ITEM */
.grupo-servico li:before {
    content: "\2713"; /* Código do Check (✓) */
    color: #27ae60;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
    line-height: 1.2; /* Ajuste fino para alinhar com texto */
}

/* === BLOCO EXTRA ("NÃO ENCONTROU?") === */
.servico-extra {
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0 auto; /* Espaço em cima */
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra suave */
    border-left: 6px solid #2c3e50; /* Detalhe azul lateral */
}

.servico-extra p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.servico-extra strong {
    color: #2c3e50;
    font-size: 1.2rem;
}

.btn-servico-extra {
    display: inline-block;
    background-color: #2c3e50; /* Botão Azul Escuro */
    color: white;
    padding: 14px 35px;
    border-radius: 50px; /* Botão arredondado moderno */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(44, 62, 80, 0.2);
}

.btn-servico-extra:hover {
    background-color: #e67e22; /* Vira Laranja no hover */
    transform: translateY(-2px); /* Efeito de clique */
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
}

