:root {
    --primary: #0056b3;
    --secondary: #1a252f;
    --accent: #00d4ff;
    --whatsapp: #25d366;
    --light: #f4f7f9;
    --text: #333;
    --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { 
    margin: 0; padding: 0; width: 100%; overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, sans-serif; color: var(--text); line-height: 1.6; scroll-behavior: smooth;
}

/* --- HEADER --- */
header { 
    background: var(--white); padding: 1rem 5%; display: flex; 
    justify-content: space-between; align-items: center; 
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.logo-img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--secondary); font-weight: 600; font-size: 0.9rem; }
.portal-btn { background: var(--primary); color: white !important; padding: 10px 20px; border-radius: 5px; }
.mobile-menu-icon { display: none; cursor: pointer; font-size: 26px; color: var(--secondary); }

/* --- HERO --- */
.hero { 
    background: linear-gradient(rgba(26,37,47,0.8), rgba(26,37,47,0.8)), url('https://onlinesuporte.com.br/site2026/img/fundo1.jpg'); 
    min-height: 60vh; background-size: cover; background-position: center; color: white; 
    display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 20px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--secondary); padding: 15px 35px; text-decoration: none; border-radius: 50px; font-weight: bold; }

/* --- SEÇÕES (Ajuste de Padding para reduzir espaços) --- */
.content-section { padding: 60px 10%; } /* Reduzi de 100px para 60px */
.section-alt { background: var(--light); }
.flex-container { display: flex; gap: 50px; align-items: center; }
.flex-container.reverse { flex-direction: row-reverse; }
.text-side, .image-side { flex: 1; }
.image-side img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Stats */
.stats-grid { display: flex; gap: 30px; margin-top: 20px; }
.stat-item { border-left: 4px solid var(--accent); padding-left: 15px; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); }

/* Lista Estilizada */
.styled-list { list-style: none; padding: 0; margin-top: 20px; }
.styled-list li { margin-bottom: 10px; position: relative; padding-left: 25px; }
.styled-list li::before { content: "\f058"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; color: var(--accent); }

/* Icone de Destaque */
.feature-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }

/* --- GRIDS --- */
.performance-banner { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: white; padding: 60px 10%; text-align: center; }
.section-header { text-align: center; margin-bottom: 30px; }
.section-header .bar { width: 50px; height: 3px; background: var(--accent); margin: 15px auto; }

.global-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 20px; }
.region-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 10px; text-align: center; }
.region-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.location-card-alt { background: white; color: var(--text); border: 1px solid #eee; }

/* Empresas */
.partners-section { padding: 60px 10%; text-align: center; background: var(--white); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }
.client-item { background: #f9f9f9; height: 110px; display: flex; align-items: center; justify-content: center; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); padding: 10px; }
.client-item img { max-width: 100%; max-height: 70px; filter: grayscale(1); opacity: 0.6; object-fit: contain; }

/* --- RODAPÉ --- */
.footer { background-color: #f4f7f9 !important; padding: 60px 5% 40px; border-top: 1px solid #e0e0e0; width: 100%; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.footer-logo-img { height: 65px; width: auto; }

.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer h3 { color: var(--primary); font-size: 1rem; margin-bottom: 15px; text-transform: uppercase; }
.footer p, .footer address { color: #555; font-size: 0.9rem; line-height: 1.6; font-style: normal; margin-bottom: 5px; }
.footer a { color: #555; text-decoration: none; }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; font-size: 0.8rem; color: #999; }

/* --- WHATSAPP --- */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.2); text-decoration: none; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .mobile-menu-icon { display: block !important; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%; background: white; padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 1.8rem; }
    .flex-container, .flex-container.reverse { flex-direction: column !important; text-align: center; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
}