/* =========================================
   1. VARIAVEIS E RESET GERAL
   ========================================= */
:root {
    --primary-orange: #F2994A;
    --dark-blue: #002B49;
    --text-white: #ffffff;
    --text-gray: #666;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    padding-top: 80px; /* Espaço para o menu fixo */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. HEADER / MENU (Fixo no topo)
   ========================================= */
header {
    background: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logotipo */
.logo img { max-height: 50px; width: auto; }
.logo-text {
    font-size: 1.4rem; font-weight: 800; color: #000;
    text-transform: uppercase; letter-spacing: 1px;
    display: flex; align-items: center; gap: 5px;
}
.logo-box {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange); padding: 2px 6px;
}

/* Navegação */
.nav-links { display: flex; gap: 20px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 500; color: var(--dark-blue); transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-orange); }
.btn-nav-contact {
    background: var(--primary-orange); color: #fff !important;
    padding: 8px 20px; border-radius: 4px; font-weight: 600 !important;
}
.btn-nav-contact:hover { background: #d68238; }
.menu-icon {
    display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-blue);
}

/* =========================================
   3. HERO / SLIDER (Home) - RETO E LIMPO
   ========================================= */
.hero {
    background-color: var(--dark-blue);
    color: white;
    /* Removemos a imagem de fundo e a onda para ficar limpo */
    text-align: center;
    min-height: 75vh; /* Altura elegante */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -80px; /* Compensa o menu */
    padding: 120px 20px;
    /* O DETALHE BONITO: Borda laranja reta embaixo */
    border-bottom: 4px solid var(--primary-orange);
}

.hero-content h1 {
    font-size: 3rem; line-height: 1.2; margin-bottom: 20px;
    text-transform: uppercase; font-weight: 800;
}
.text-orange { color: var(--primary-orange); }
.hero-content p {
    max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; color: #ddd;
}

/* Ícones redondos no topo */
.hero-icon-circle {
    width: 90px; height: 90px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 25px;
    font-size: 2.5rem; color: var(--primary-orange);
    border: 2px solid rgba(242, 153, 74, 0.3); /* Detalhe sutil no ícone */
}

.slide { display: none; animation: fade 0.8s; }
.slide.active { display: block; }
@keyframes fade { from {opacity: 0; transform: translateY(10px);} to {opacity: 1; transform: translateY(0);} }

/* Botões */
.btn {
    display: inline-block; padding: 12px 35px; border-radius: 5px;
    font-weight: 600; transition: 0.3s; margin: 10px;
    cursor: pointer; border: none; font-size: 1rem;
}
.btn-orange {
    background: var(--primary-orange); color: white;
}
.btn-orange:hover { background: #cf7e36; }
.btn-outline {
    background: transparent; border: 2px solid white; color: white;
}
.btn-outline:hover { background: white; color: var(--dark-blue); }

/* Dots Slider */
.dots-container { margin-top: 30px; }
.dot {
    height: 10px; width: 10px; background-color: rgba(255,255,255,0.3);
    border-radius: 50%; display: inline-block; margin: 0 5px; cursor: pointer; transition: 0.3s;
}
.dot.active { background-color: var(--primary-orange); transform: scale(1.2); }

/* =========================================
   4. PAGE HEADER (Páginas Internas) - RETO
   ========================================= */
.page-header {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    /* Altura ajustada e reta */
    padding: 160px 20px 80px;
    margin-top: -80px;
    /* O mesmo detalhe da borda laranja */
    border-bottom: 4px solid var(--primary-orange);
}
.page-header h1 {
    font-size: 2.8rem; margin-bottom: 15px; font-weight: 800; text-transform: uppercase;
}
.page-header p { font-size: 1.1rem; color: #ddd; max-width: 800px; margin: 0 auto; }

/* ESCONDER AS ONDAS DE VEZ */
.wave-container { display: none !important; }

/* =========================================
   5. LAYOUT GERAL (Grids e Cards)
   ========================================= */
.section-pad { padding: 80px 0; }
.bg-light { background-color: #f8f9fa; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: 2.2rem; color: var(--dark-blue); text-transform: uppercase; font-weight: 700;
}
.section-title p { color: #777; margin-top: 15px; font-size: 1.05rem; }

/* Grids */
.grid-cards-3 {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
}
.grid-cards-4 {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px;
}
.grid-2-cols {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* Card Estilo Padrão - Mais Clean */
.card {
    background: white; padding: 35px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0; transition: 0.3s;
    height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-7px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--primary-orange); }

.icon-box-small {
    width: 60px; height: 60px; background: #fff5eb; color: var(--primary-orange);
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-size: 1.4rem; margin-bottom: 25px;
}
.card h3 { color: var(--dark-blue); margin-bottom: 15px; font-size: 1.3rem; }
.card p { color: #666; font-size: 0.95rem; margin-bottom: 25px; line-height: 1.7; flex-grow: 1; }
.link-orange { color: var(--primary-orange); font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 5px; }

/* Listas */
.check-list li, .service-list li {
    margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px;
}
.check-list i { color: var(--primary-orange); margin-top: 4px; }

/* =========================================
   6. FOOTER
   ========================================= */
footer {
    background-color: #001f35; color: #bbb; padding: 80px 0 30px; font-size: 0.95rem;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; margin-bottom: 50px;
}
.footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary-orange); padding-left: 5px; }
.footer-col p { margin-bottom: 15px; display: flex; gap: 10px; align-items: center; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }

/* Botão WhatsApp */
.wpp-float {
    position: fixed; bottom: 25px; right: 25px; background: #25d366; color: white;
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 2.2rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2000; transition: 0.3s;
}
.wpp-float:hover { transform: scale(1.1); }

/* =========================================
   7. RESPONSIVO (MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 70px; left: 0; width: 100%; background: white; padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); text-align: center;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 10px 0; }
    .menu-icon { display: block; font-size: 1.8rem; }
    
    .grid-2-cols { grid-template-columns: 1fr; gap: 40px; }
    .hero { min-height: auto; padding: 150px 20px 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-icon-circle { width: 70px; height: 70px; font-size: 2rem; }
    
    .page-header { padding: 150px 20px 60px; }
    .page-header h1 { font-size: 2rem; }
    
    .section-pad { padding: 50px 0; }
    .section-title h2 { font-size: 1.8rem; }
    .card { padding: 25px; }
}