/* --- VARIÁVEIS (Segurança do Trabalho & Contraste Moderno) --- */
:root {
    --primary: #047857;       
    --primary-light: #10B981; 
    --secondary: #022C22;     
    --accent: #C0FF72;        
    --text-main: #1E293B;     
    --text-muted: #475569;    
    --bg-main: #FFFFFF;       
    --bg-light: #F0FDF4;      
    --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    /* Sombras Modernas */
    --shadow-sm: 0 4px 6px -1px rgba(2, 44, 34, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(2, 44, 34, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(2, 44, 34, 0.12);
    --shadow-glow: 0 0 20px rgba(192, 255, 114, 0.4);
}

/* --- RESET & TIPOGRAFIA BÁSICA --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; } /* Ajustado para o novo cabeçalho menor */

body { 
    font-family: var(--font-main); 
    color: var(--text-main); 
    line-height: 1.6; 
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 800; color: var(--secondary); line-height: 1.2; letter-spacing: -0.02em; }

/* --- UTILITÁRIOS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.mt-50 { margin-top: 50px; }
.mb-40 { margin-bottom: 40px; }

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HEADER & NAVEGAÇÃO (Ultra Discreto) --- */
header { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    padding: 5px 0; /* Preenchimento mínimo */
    position: sticky; 
    top: 0; 
    z-index: 1000;
    border-bottom: 1px solid rgba(2, 44, 34, 0.05); 
}

.logo img { 
    max-width: 120px; /* Logo menor e mais delicada */
    transition: transform 0.3s ease; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.03)); 
}
.logo img:hover { transform: scale(1.03); }

.menu { display: flex; align-items: center; gap: 24px; }
.menu a { 
    color: var(--text-main); 
    font-weight: 600; 
    font-size: 0.85rem; /* Fonte levemente menor */
    position: relative;
    padding: 4px 0;
}

.menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: width 0.3s ease;
}
.menu a:hover { color: var(--primary); }
.menu a:hover::after { width: 100%; }

/* Botão do Menu - Menor e mais fino */
.menu .btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff !important;
    padding: 8px 20px; /* Mais enxuto */
    border-radius: 50px; 
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}
.menu .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(4, 120, 87, 0.2);
}
.menu .btn-nav::after { display: none; }
.mobile-menu-icon { display: none; color: var(--secondary); font-size: 1.3rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    min-height: 600px;
    padding-top: 40px;
    padding-bottom: 120px; 
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(2, 44, 34, 0.85) 50%, rgba(2, 44, 34, 0.4) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero h2 { font-size: 3.8rem; margin-bottom: 20px; color: #fff; font-weight: 800; line-height: 1.15; }
.hero p { font-size: 1.2rem; margin-bottom: 32px; color: #D1FAE5; font-weight: 400; max-width: 600px;}

.hero-btns { display: flex; gap: 16px; }

.btn-primary {
    background: var(--accent);
    color: var(--secondary); 
    padding: 14px 32px; border-radius: 50px; font-weight: 800; font-size: 1rem;
    box-shadow: 0 8px 15px rgba(192, 255, 114, 0.15); border: none;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); color: var(--secondary); background: #AEEA5E; }

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
}
.btn-outline:hover { background: #fff; color: var(--secondary); transform: translateY(-3px); }

/* --- STATS SECTION --- */
.stats { 
    position: relative; 
    z-index: 10; 
    margin-top: -60px; 
    padding-bottom: 60px;
}

.stats-container {
    background: #fff;
    padding: 30px; 
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(2, 44, 34, 0.03);
}

.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -12px; top: 20%; height: 60%; width: 1px; background: #E2E8F0;
}

.stat-icon {
    width: 56px; height: 56px; margin: 0 auto 12px;
    background: var(--bg-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.5rem;
    transition: all 0.3s ease;
}
.stat-item:hover .stat-icon { transform: scale(1.1) rotate(5deg); background: var(--secondary); color: var(--accent); }

.stat-item h3 { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 4px;}
.stat-item p { color: var(--text-muted); font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px;}

/* --- SOBRE A EMPRESA --- */
.img-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-light), #fff);
    box-shadow: inset 0 0 0 1px rgba(2, 44, 34, 0.05);
}
.sobre-img img { border-radius: 16px; box-shadow: var(--shadow-lg); transition: transform 0.5s;}
.img-wrapper:hover img { transform: translateY(-10px); }

.sobre-text h6 { color: var(--primary); letter-spacing: 4px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; font-size: 0.85rem;}
.sobre-text h2 { font-size: 2.5rem; margin-bottom: 24px; }
.sobre-text p { margin-bottom: 20px; font-size: 1.05rem; color: var(--text-main); }

.lista-check { margin-top: 24px; margin-bottom: 24px; }
.lista-check li { margin-bottom: 12px; font-weight: 600; display: flex; align-items: center; gap: 16px; font-size: 1rem;}
.lista-check i { 
    color: var(--secondary); background: var(--accent); width: 24px; height: 24px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
    box-shadow: 0 4px 10px rgba(192, 255, 114, 0.3);
}

.btn-text { color: var(--primary); font-weight: 800; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px;}
.btn-text i { transition: transform 0.3s; }
.btn-text:hover { color: var(--secondary); }
.btn-text:hover i { transform: translateX(8px); }

/* --- SERVIÇOS (Cards) --- */
.section-title { font-size: 2.5rem; }
.divider { width: 50px; height: 5px; background: linear-gradient(90deg, var(--primary), var(--accent)); margin: 20px auto; border-radius: 10px; }

.card-servico {
    background: #fff; padding: 40px 30px; border-radius: 20px;
    border: 1px solid rgba(2, 44, 34, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}

.card-servico::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.card-servico:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-servico:hover::before { transform: scaleX(1); }

.icon-box { 
    width: 60px; height: 60px; margin-bottom: 24px;
    background: var(--bg-light); border-radius: 16px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem; color: var(--primary); transition: all 0.4s ease;
}
.card-servico:hover .icon-box { background: var(--secondary); color: var(--accent); transform: scale(1.1) rotate(-5deg); box-shadow: var(--shadow-md);}

.card-servico h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card-servico p { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; }

.btn-text-card { font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px; font-size: 0.95rem;}
.btn-text-card i { transition: 0.3s; }
.card-servico:hover .btn-text-card { color: var(--secondary); }
.card-servico:hover .btn-text-card i { transform: translateX(5px); }

/* --- CTA BANNER --- */
.cta-banner { 
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
    padding: 80px 0; position: relative; 
}
.cta-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.95;
}
.cta-content { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: 2.5rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.15rem; }

.btn-white { 
    background: #fff; color: var(--secondary); padding: 16px 36px; 
    border-radius: 50px; font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
}
.btn-white:hover { background: var(--accent); color: var(--secondary); transform: translateY(-3px); box-shadow: var(--shadow-glow);}

/* --- CARROSSEL PARCEIROS --- */
.partners-slider { background: #fff; padding: 80px 0; overflow: hidden; position: relative; }
.subtitle { color: var(--primary); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 800; margin-bottom: 8px; }

.slider-track-container { position: relative; width: 100%; overflow: hidden;}
.slider-track-container::before, .slider-track-container::after { 
    content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none; 
}
.slider-track-container::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.slider-track-container::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

.slider-track { display: flex; width: calc(200px * 18); animation: scroll 40s linear infinite; }
.slide { width: 200px; height: 100px; display: flex; align-items: center; justify-content: center; padding: 0 30px; }
.slide img { max-height: 40px; filter: grayscale(100%) opacity(0.4); transition: all 0.4s ease; }
.slide:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.1); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 9)); }
}

/* --- FORMULÁRIO E CONTATO --- */
.contato-desc { font-size: 1.05rem; margin-bottom: 30px; color: var(--text-muted); }

.info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.icon-box-small { 
    width: 50px; height: 50px; background-color: #fff; border-radius: 12px; 
    display: flex; justify-content: center; align-items: center; 
    box-shadow: var(--shadow-sm); flex-shrink: 0;
    border: 1px solid rgba(2, 44, 34, 0.03);
}
.icon-box-small i { font-size: 1.2rem; color: var(--primary); }

.info-item strong { display: block; font-size: 1.05rem; color: var(--secondary); margin-bottom: 4px; font-weight: 800;}
.link-contato { color: var(--text-muted); font-weight: 500; font-size: 1rem;}
.link-contato:hover { color: var(--primary); }

.form-corp { 
    background: #fff; padding: 40px; border-radius: 20px; 
    box-shadow: var(--shadow-lg); border: 1px solid rgba(2, 44, 34, 0.04);
}
.form-header h3 { font-size: 1.6rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }

.form-corp input, .form-corp textarea { 
    width: 100%; padding: 16px 20px; border: 2px solid var(--bg-light); border-radius: 10px; 
    font-family: inherit; font-size: 0.95rem; background-color: var(--bg-light); 
    color: var(--secondary); transition: all 0.3s ease; 
}
.form-corp input:focus, .form-corp textarea:focus { 
    outline: none; border-color: var(--primary-light); background-color: #fff; 
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15); 
}

.btn-primary-form { 
    width: 100%; display: flex; justify-content: center; align-items: center; gap: 10px;
    padding: 16px; border-radius: 10px; cursor: pointer;
    background: var(--primary); color: #fff; font-weight: 700; border: none; font-size: 1.05rem;
    transition: 0.3s;
}
.btn-primary-form:hover {
    background: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* --- FOOTER (Ultra Compacto e Sutil) --- */
footer { 
    background: var(--secondary); 
    color: rgba(255,255,255,0.6); 
    padding: 20px 0 10px; /* Preenchimento mínimo */
} 
.footer-content { 
    display: flex; justify-content: center; align-items: center; 
    padding-bottom: 12px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    margin-bottom: 10px;
}
.footer-brand img { 
    width: 60px; /* Logo super sutil */
    filter: brightness(0) invert(1); 
    opacity: 0.4; 
} 
.social-links a { 
    display: inline-flex; justify-content: center; align-items: center;
    width: 32px; height: 32px; /* Botões menores */
    background: rgba(255,255,255,0.05); border-radius: 50%; 
    font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-left: 10px; transition: 0.3s;
}
.social-links a:hover { background: var(--accent); color: var(--secondary); transform: translateY(-2px); }
.copy { 
    text-align: center; 
    font-size: 0.75rem; /* Texto bem discreto */
    color: rgba(255,255,255,0.4); /* Maior transparência */
} 

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { 
    position: fixed; bottom: 30px; right: 30px; background: #25D366; color: #fff; 
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; 
    font-size: 30px; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); z-index: 2000; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover { background: var(--secondary); color: var(--accent); transform: scale(1.1) translateY(-5px); }

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .hero h2 { font-size: 3rem; }
    .grid-2 { gap: 40px; }
    .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    header { padding: 6px 0; }
    .logo img { max-width: 100px; }
    .mobile-menu-icon { display: block !important; }
    
    .menu {
        display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
        padding: 20px; gap: 15px; text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1); box-shadow: var(--shadow-lg);
    }
    .menu.active { display: flex; animation: slideDown 0.3s ease-out; }
    .menu a { font-size: 1.1rem; color: var(--secondary); }
    .menu .btn-nav { width: 100%; margin-top: 10px; border-radius: 12px; padding: 10px; }

    .hero { 
        text-align: center; 
        min-height: auto; 
        padding-top: 60px;
        padding-bottom: 140px; 
    }
    .hero-content { margin: 0 auto; }
    .hero h2 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    
    .grid-2 { grid-template-columns: 1fr; }
    .stats { margin-top: -50px; padding-bottom: 40px;}
    .stats-container { padding: 25px 15px; }
    
    .cta-banner .flex-between { flex-direction: column; text-align: center; gap: 20px; }
    .cta-banner h2 { font-size: 2rem; }
    .form-corp { padding: 25px 15px; }
    .footer-content { flex-direction: column; gap: 15px; text-align: center; }
    .social-links a { margin: 0 6px; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}