:root {
    --primary: #2F4F5D; /* Azul Petróleo */
    --primary-dark: #1F3640;
    --accent: #E67E22; /* Laranja */
    --accent-hover: #D35400;
    --text-color: #444444; /* Cinza escuro suavizado */
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --radius: 6px;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* --- RESET & GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

h2 { text-align: center; } /* Centraliza todos os H2 */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--primary-dark); }
.text-white { color: white !important; }

/* --- HEADER --- */
#header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#header.scrolled { height: 70px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo img { height: 70px; transition: 0.3s; }
#header.scrolled .logo img { height: 50px; }

.nav-menu ul { display: flex; gap: 30px; list-style: none; }
.nav-menu a { font-weight: 600; color: var(--primary); text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.nav-menu a:hover { color: var(--accent); }

.btn-cta {
    background: var(--accent);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.btn-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }

.mobile-menu-icon { display: none; font-size: 24px; color: var(--primary); cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    margin-top: 100px;
    height: 600px;
    background: url('img/banner-hero.jpg') center/cover;
    background-color: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(47, 79, 93, 0.85);
}

.hero-content { position: relative; z-index: 2; color: white; max-width: 800px; }
.hero h1 { font-size: 2.8rem; color: white; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.btn { padding: 12px 30px; border-radius: 4px; font-weight: 600; text-decoration: none; display: inline-block; margin: 0 10px; }
.btn-primary { background: var(--accent); color: white; border: 2px solid var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline { border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary); }

/* --- SEÇÕES GERAIS --- */
.content-center { display: flex; flex-direction: column; align-items: center; }

.section-header, 
.section-title-center { 
    text-align: center; 
    max-width: 800px; 
    width: 100%;
    margin: 0 auto 50px auto; 
}

/* Diferenciais */
.diferenciais-box { 
    background: white; 
    padding: 40px; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow); 
    width: 100%; 
    max-width: 800px; 
    border-top: 4px solid var(--accent); 
    margin: 0 auto;
}

.lista-clean { list-style: none; }
.lista-clean li { display: grid; grid-template-columns: 40px 1fr; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.lista-clean li:last-child { border-bottom: none; margin-bottom: 0; }
.icon-box i { color: var(--accent); font-size: 22px; }
.text-box strong { display: block; color: var(--primary); margin-bottom: 5px; }

.selos-container { margin-top: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.selo-clean { background: #f0f4f5; color: var(--primary); padding: 8px 20px; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* Serviços */
.grid-servicos { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.card-servico { background: white; padding: 30px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: 0.3s; }
.card-servico:hover { transform: translateY(-5px); }
.card-servico i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }

/* Portfólio */
.grid-portfolio-clean { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.portfolio-card { text-align: center; }
.portfolio-card img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 15px; transition: transform 0.3s ease; }
.portfolio-card img:hover { transform: translateY(-5px); }
.portfolio-card h4 { color: var(--primary); font-size: 1.1rem; margin: 0; font-weight: 600; }

/* --- CONTATO (ATUALIZADO) --- */
.contato-wrapper {
    display: flex;
    gap: 50px;
    align-items: center; 
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.contato-text { 
    flex: 1; 
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.contato-text h2, 
.contato-text p {
    text-align: center;
}

/* Container da lista de contatos */
.info-clean { 
    margin-top: 40px; 
    display: flex;
    flex-direction: column; /* Coloca um embaixo do outro */
    align-items: center; /* Centraliza os blocos horizontalmente */
    gap: 25px; /* Espaço entre Localização e WhatsApp */
    width: 100%; 
}

/* Item individual */
.info-clean .item {
    display: flex; /* Flex para colocar ícone ao lado do texto */
    align-items: center; /* Alinha ícone verticalmente com o texto */
    gap: 15px; /* Espaço entre ícone e texto */
    text-align: left; /* Garante que o texto dentro do bloco fique alinhado à esquerda */
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.05); /* Fundo sutil opcional para dar destaque */
    padding: 15px 25px;
    border-radius: 8px;
    min-width: 280px; /* Garante uma largura mínima elegante */
}

/* Ícone */
.info-clean i { 
    font-size: 28px; 
    color: var(--accent); 
    flex-shrink: 0; /* Impede que o ícone esmague */
}

.info-clean strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

/* Formulário */
.form-clean {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    flex: 1;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center; 
}

.form-clean h3 { margin-bottom: 25px; }

.form-clean input, 
.form-clean select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-family: inherit; 
    background-color: #fff;
}

.btn-full { 
    width: 100%; /* Botão com largura total do formulário */
    border: none; 
    cursor: pointer; 
    margin-top: 10px;
    padding: 12px;
    font-size: 1rem;
}

/* Footer */
footer { 
    background: #1a252f; 
    color: #bdc3c7; 
    padding: 30px 20px; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}
.footer-copyright p { margin: 0; font-size: 0.9rem; font-weight: 500; }

/* Botão Flutuante */
.whatsapp-float { 
    position: fixed; bottom: 30px; right: 30px; 
    background: #25D366; color: white; 
    width: 60px; height: 60px; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 30px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    z-index: 100; 
    transition: 0.3s; 
}
.whatsapp-float:hover { transform: scale(1.1); }

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .btn-cta { display: none; }
    .mobile-menu-icon { display: block; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
    }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; gap: 15px; text-align: center; }
    .nav-menu a { display: block; padding: 10px; border-bottom: 1px solid #eee; }
    
    .hero { margin-top: 70px; }
    .hero h1 { font-size: 2rem; }
    .contato-wrapper { flex-direction: column; }
    .info-clean { width: 100%; align-items: center; } /* Garante alinhamento no mobile */
}