/* ===== EFICIENTE GRUPO SOLUÇÕES - STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #1a365d;
  --primary-light: #2d4a7c;
  --green: #22c55e;
  --cyan: #1a365d;
  --gradient: linear-gradient(135deg, #22c55e, #06b6d4);
}
body { font-family: 'Segoe UI', sans-serif; color: #333; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ICONS */
i[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.icon-sm[data-lucide] { width: 16px; height: 16px; }
.icon-lg[data-lucide] { width: 32px; height: 32px; }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* HEADER */
.topbar { background: var(--primary); color: #fff; padding: 8px 0; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #cce; margin-right: 20px; }
.topbar a:hover { color: #22c55e; }
.topbar .sociais a { margin-right: 8px; }
header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.1); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo img { height: 60px; object-fit: contain; }
nav a { margin-left: 28px; font-weight: 500; color: #444; transition: color .3s; }
nav a:hover, nav a.active { color: var(--primary); }
.btn-nav { background: var(--gradient); color: #fff !important; padding: 10px 24px; border-radius: 50px; margin-left: 28px !important; font-weight: 600; transition: box-shadow .3s, transform .3s; }
.btn-nav:hover { box-shadow: 0 8px 20px rgba(34,197,94,.3); transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--primary); cursor: pointer; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid #eee; padding: 16px; }
.mobile-menu a { display: block; padding: 12px 16px; font-weight: 500; color: #444; border-bottom: 1px solid #f0f0f0; }
.mobile-menu .btn-mobile { display: block; text-align: center; background: var(--gradient); color: #fff !important; padding: 12px; border-radius: 50px; margin-top: 12px; font-weight: 600; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero { background: linear-gradient(135deg, #f8faff 0%, #fff 50%, #f0fdff 100%); padding: 80px 0; min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 60px; right: 5%; width: 350px; height: 350px; background: radial-gradient(circle, rgba(34,197,94,.15) 0%, transparent 70%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(6,182,212,.1)); padding: 8px 18px; border-radius: 50px; font-size: 14px; color: var(--primary); font-weight: 500; margin-bottom: 24px; }
.hero-badge span { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.2)} }
.hero h1 { font-size: 52px; font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 24px; }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero p { font-size: 18px; color: #555; line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gradient); color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; transition: box-shadow .3s, transform .3s; }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(34,197,94,.35); transform: translateY(-2px); }
.btn-secondary { border: 2px solid var(--primary); color: var(--primary); padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 16px; transition: background .3s, color .3s; }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; padding-top: 32px; border-top: 1px solid #e5e7eb; }
.stat-num { font-size: 32px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 13px; color: #888; margin-top: 4px; }
.hero-img { position: relative; }
.hero-img img { border-radius: 24px; box-shadow: 0 25px 60px rgba(0,0,0,.15); width: 100%; height: 480px; object-fit: cover; }
.hero-card { position: absolute; bottom: -24px; left: -24px; background: #fff; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,.12); padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.hero-card .icon-check { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; }
.hero-card .icon-check svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.5; }
.hero-card strong { color: var(--primary); }
.hero-card small { color: #888; display: block; }
.hero-logo-badge { position: absolute; top: -16px; right: -16px; width: 80px; height: 80px; background: #fff; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; padding: 12px; }
.hero-logo-badge img { width: auto; height: auto; object-fit: contain; }

/* SECTION HEADER */
.section-badge { display: inline-block; padding: 6px 18px; background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(6,182,212,.1)); border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--primary); margin-bottom: 16px; }
.section-title { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.section-sub { color: #666; max-width: 600px; margin: 0 auto 48px; font-size: 16px; line-height: 1.6; }
.text-center { text-align: center; }

/* VANTAGENS */
.vantagens { padding: 80px 0; background: #fff; }
.vantagens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vantagem-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 36px; transition: box-shadow .4s, border-color .4s; position: relative; overflow: hidden; }
.vantagem-card:hover { box-shadow: 0 20px 40px rgba(6,182,212,.1); border-color: transparent; }
.vantagem-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.vantagem-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.vantagem-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.vantagem-card p { color: #666; line-height: 1.6; }

/* SOLUÇÕES */
.solucoes { padding: 80px 0; background: linear-gradient(to bottom, #f8faff, #fff); }
.solucoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solucao-card { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 8px 24px rgba(0,0,0,.1); transition: box-shadow .4s, transform .4s; }
.solucao-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.2); transform: translateY(-4px); }
.solucao-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.solucao-card:hover img { transform: scale(1.1); }
.solucao-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.solucao-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.solucao-content h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.solucao-content p { font-size: 14px; color: rgba(255,255,255,.75); }
.solucoes-cta { text-align: center; margin-top: 40px; }

/* NUMEROS */
.numeros { padding: 80px 0; background: var(--primary); position: relative; overflow: hidden; }
.numeros::before { content: ''; position: absolute; top: -100px; left: 25%; width: 400px; height: 400px; background: rgba(34,197,94,.08); border-radius: 50%; }
.numeros-header .section-badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.numeros-header .section-title { color: #fff; }
.numeros-header .section-sub { color: rgba(255,255,255,.65); }
.numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.numero-item { text-align: center; }
.numero-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.numero-icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 2; }
.numero-val { font-size: 48px; font-weight: 800; color: #fff; }
.numero-label { color: rgba(255,255,255,.65); font-size: 15px; margin-top: 6px; }

/* CTA */
.cta-section { padding: 80px 0; background: #fff; }
.cta-box { position: relative; border-radius: 28px; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,54,93,.96) 60%, rgba(26,54,93,.8)); }
.cta-content { position: relative; z-index: 1; padding: 80px 64px; max-width: 640px; }
.cta-content h2 { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.cta-content h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.6; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-wpp { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 600; transition: background .3s; }
.btn-wpp:hover { background: rgba(255,255,255,.2); }

/* HERO INTERNO */
.page-hero { background: linear-gradient(135deg, var(--primary), #2d4a7c); padding: 100px 0 80px; text-align: center; }
.page-hero .badge { display: inline-block; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); padding: 6px 18px; border-radius: 50px; font-size: 13px; margin-bottom: 24px; }
.page-hero h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.page-hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; }

/* SOBRE */
.sobre-content { padding: 80px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-img { position: relative; }
.sobre-img img { border-radius: 20px; box-shadow: 0 25px 60px rgba(0,0,0,.15); width: 100%; }
.sobre-badge-anos { position: absolute; bottom: -32px; right: -32px; background: var(--gradient); border-radius: 16px; padding: 20px 28px; color: #fff; box-shadow: 0 10px 30px rgba(34,197,94,.35); }
.sobre-badge-anos .num { font-size: 40px; font-weight: 800; }
.sobre-badge-anos .txt { font-size: 14px; opacity: .85; }
.sobre-text .badge { display: inline-block; background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(6,182,212,.1)); padding: 6px 18px; border-radius: 50px; font-size: 13px; color: var(--primary); font-weight: 500; margin-bottom: 16px; }
.sobre-text h2 { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 24px; }
.sobre-text p { color: #555; line-height: 1.8; margin-bottom: 16px; font-size: 16px; }

/* MISSÃO VISÃO */
.mv-section { padding: 60px 0; background: #f8faff; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.mv-card .icon { width: 56px; height: 56px; background: var(--gradient); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.mv-card .icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.mv-card h3 { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.mv-card p { color: #555; line-height: 1.7; }

/* VALORES */
.valores-section { padding: 80px 0; }
.valores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.valor-item { text-align: center; padding: 32px 20px; }
.valor-item .icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(6,182,212,.1)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.valor-item .icon svg { width: 30px; height: 30px; stroke: var(--primary); fill: none; stroke-width: 2; }
.valor-item h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.valor-item p { color: #666; font-size: 15px; }

/* SOLUÇÕES PAGE */
.solucao-item { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 60px 0; border-bottom: 1px solid #f0f0f0; }
.solucao-item.reverse { direction: rtl; }
.solucao-item.reverse > * { direction: ltr; }
.solucao-item-img { position: relative; }
.solucao-item-img img { border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.12); width: 100%; height: 380px; object-fit: cover; }
.solucao-item-badge { display: inline-block; padding: 6px 18px; background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(6,182,212,.1)); border-radius: 50px; font-size: 13px; color: var(--primary); font-weight: 500; margin-bottom: 16px; }
.solucao-item-text h2 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.solucao-item-text p { color: #555; line-height: 1.7; margin-bottom: 24px; font-size: 16px; }
.solucao-item-list { list-style: none; margin-bottom: 32px; }
.solucao-item-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: #444; }
.check-circle { width: 24px; height: 24px; border-radius: 50%; background: var(--gradient); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-circle svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 3; }
.solucoes-cta-bar { background: var(--gradient); padding: 80px 0; text-align: center; }
.solucoes-cta-bar h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.solucoes-cta-bar p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--primary); padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 16px; transition: box-shadow .3s, transform .3s; }
.btn-white:hover { box-shadow: 0 10px 30px rgba(0,0,0,.15); transform: translateY(-2px); }

/* PRODUTOS */
.produtos-filter { background: #fff; padding: 24px 0; position: sticky; top: 74px; z-index: 50; border-bottom: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.filter-inner { display: flex; flex-direction: column; gap: 16px; }
.search-box { position: relative; max-width: 360px; }
.search-box input { width: 100%; padding: 10px 14px 10px 40px; border: 1px solid #e5e7eb; border-radius: 50px; font-size: 14px; outline: none; transition: border-color .3s; }
.search-box input:focus { border-color: var(--cyan); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: #aaa; fill: none; stroke-width: 2; }
.cat-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-btn { padding: 6px 18px; border-radius: 50px; border: 1px solid #e5e7eb; background: #fff; font-size: 13px; cursor: pointer; transition: all .3s; }
.cat-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-btn.active { background: var(--gradient); border-color: transparent; color: #fff; }
.produtos-grid-section { padding: 48px 0; background: #f8faff; }
.produtos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.produto-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: box-shadow .4s, transform .4s; }
.produto-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.12); transform: translateY(-4px); }
.produto-img { position: relative; aspect-ratio: 1; overflow: hidden; }
.produto-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.produto-card:hover .produto-img img { transform: scale(1.1); }
.produto-cat-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 500; color: var(--primary); }
.produto-info { padding: 20px; }
.produto-info h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.produto-info p { font-size: 14px; color: #666; margin-bottom: 16px; line-height: 1.5; }
.produto-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: color .3s; }
.produto-link:hover { color: var(--green); }
.produto-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* CONTATO */
.contato-section { padding: 80px 0; }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contato-info h2 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 32px; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-item .icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(34,197,94,.1), rgba(6,182,212,.1)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item .icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; }
.info-item h4 { font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.info-item p { color: #666; font-size: 15px; line-height: 1.5; }
.wpp-box { background: linear-gradient(135deg, #22c55e, #16a34a); border-radius: 20px; padding: 28px; color: #fff; margin-bottom: 28px; }
.wpp-box-inner { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.wpp-ico { width: 56px; height: 56px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.wpp-ico svg { width: 28px; height: 28px; fill: #fff; }
.wpp-box h3 { font-size: 18px; font-weight: 700; }
.wpp-box p { font-size: 14px; opacity: .85; }
.wpp-box a { display: block; text-align: center; background: #fff; color: #16a34a; padding: 12px; border-radius: 50px; font-weight: 700; transition: box-shadow .3s; }
.wpp-box a:hover { box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.mapa { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.mapa iframe { display: block; filter: grayscale(40%); transition: filter .4s; }
.mapa:hover iframe { filter: grayscale(0); }
.contato-form-box { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,.08); border: 1px solid #e5e7eb; }
.contato-form-box h2 { font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.contato-form-box > p { color: #666; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; color: var(--primary); margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #e5e7eb; border-radius: 12px; font-size: 15px; font-family: inherit; outline: none; transition: border-color .3s, box-shadow .3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6,182,212,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-enviar { width: 100%; background: var(--gradient); color: #fff; border: none; padding: 16px; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: box-shadow .3s, transform .3s; }
.btn-enviar:hover { box-shadow: 0 10px 30px rgba(34,197,94,.3); transform: translateY(-2px); }
.btn-enviar svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }

/* FOOTER */
footer { background: var(--primary); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.3fr; gap: 48px; }
.footer-logo img { height: 64px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-logo p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }
.footer-sociais { display: flex; gap: 12px; margin-top: 24px; }
.footer-sociais a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.footer-sociais a:hover { background: var(--green); }
.footer-sociais a svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.footer-col h4 { font-size: 17px; font-weight: 600; margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .3s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-col ul li span { color: rgba(255,255,255,.65); font-size: 14px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 13px; }

/* FLOATING BTNS */
.float-wpp { position: fixed; bottom: 24px; left: 24px; width: 56px; height: 56px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(34,197,94,.5); z-index: 1000; transition: transform .3s; }
.float-wpp:hover { transform: scale(1.1); }
.float-wpp svg { width: 30px; height: 30px; fill: #fff; }
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; background: var(--gradient); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 16px rgba(34,197,94,.4); z-index: 1000; border: none; transition: transform .3s; }
.scroll-top.show { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: 42px; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .produtos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  nav, .btn-nav, .topbar { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero { padding: 60px 0; min-height: auto; }
  .hero h1 { font-size: 36px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .vantagens-grid { grid-template-columns: 1fr; }
  .solucoes-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; }
  .solucao-item { grid-template-columns: 1fr; gap: 32px; }
  .solucao-item.reverse { direction: ltr; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-content { padding: 48px 32px; }
  .cta-content h2 { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
}
@media (max-width: 480px) {
  .solucoes-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .produtos-grid { grid-template-columns: 1fr; }
}