:root {
  --verde-escuro: #1a4a1a;
  --verde-medio: #2d6e2d;
  --verde-vivo: #4caf50;
  --verde-neon: #7ed957;
  --creme: rgb(245, 240, 232);
  --off-white: #fafaf7;
  --texto: #1a1a1a;
  --cinza: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--off-white); color: var(--texto); overflow-x: hidden; }

body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ═══ NAVBAR ═══ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8, 24, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(126,217,87,0.1);
  transition: all 0.3s;
}

#navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.4); }

.nav-promo {
  background: var(--verde-escuro);
  text-align: center; padding: 7px 20px;
  font-size: 0.77rem; font-weight: 700;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}

.nav-promo a { color: var(--verde-neon); text-decoration: none; transition: opacity 0.2s; }
.nav-promo a:hover { opacity: 0.8; }
.nav-promo .dot { opacity: 0.3; }

.nav-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px; max-width: 1400px; margin: 0 auto;
}

.nav-logo img {
  height: 50px;
  object-fit: contain;
  transform: translateY(8px);
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.72); font-size: 0.86rem; font-weight: 700;
  text-decoration: none; background: none; border: none; cursor: pointer;
  padding: 7px 13px; border-radius: 8px;
  font-family: 'Nunito', sans-serif; letter-spacing: 0.015em;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--verde-neon); background: rgba(126,217,87,0.07); }

.nav-links > li > button .chevron { transition: transform 0.22s; }
.nav-links > li.open > button .chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #0d1f0d;
  border: 1px solid rgba(126,217,87,0.14);
  border-radius: 18px; padding: 20px 20px 16px;
  min-width: 560px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-links > li.open .mega-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-label {
  font-size: 0.68rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(126,217,87,0.5); margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(126,217,87,0.08);
}

.mega-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; }

.mega-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 11px; border-radius: 10px; text-decoration: none;
  color: rgba(255,255,255,0.75); transition: background 0.15s, color 0.15s;
}

.mega-item:hover { background: rgba(126,217,87,0.09); color: var(--verde-neon); }

.mega-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(126,217,87,0.07); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}

.mega-name { font-weight: 800; font-size: 0.85rem; line-height: 1.2; }
.mega-sub { font-size: 0.72rem; color: rgba(255,255,255,0.38); font-weight: 600; }

.simple-drop {
  position: absolute; top: calc(100% + 16px); left: 0;
  background: #0d1f0d; border: 1px solid rgba(126,217,87,0.14);
  border-radius: 13px; padding: 7px;
  min-width: 210px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: opacity 0.2s, transform 0.2s;
}

.nav-links > li.open .simple-drop { opacity: 1; pointer-events: all; transform: translateY(0); }

.simple-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 13px; border-radius: 8px; color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.87rem; font-weight: 700;
  transition: background 0.15s, color 0.15s;
}

.simple-drop a:hover { background: rgba(126,217,87,0.09); color: var(--verde-neon); }

.nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); margin: 0 6px; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.45);
}

.nav-tel a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.nav-tel a:hover { color: var(--verde-neon); }

.nav-cta {
  background: var(--verde-neon); color: var(--verde-escuro);
  padding: 9px 20px; border-radius: 50px;
  font-weight: 900; font-size: 0.84rem; text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 rgba(126,217,87,0);
  white-space: nowrap;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(126,217,87,0.45); }

/* ── Hambúrguer ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}

.nav-hamburger span {
  display: block; width: 23px; height: 2px;
  background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Drawer mobile — CORRIGIDO ── */
.nav-drawer {
  display: block;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #0a1a0a; overflow-y: auto; z-index: 998;
  padding: 90px 24px 40px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), visibility 0.32s;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-sec {
  font-size: 0.68rem; font-weight: 900; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(126,217,87,0.5); padding: 20px 0 8px;
}

.drawer-link {
  display: flex; align-items: center; gap: 12px; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: color 0.2s;
}

.drawer-link:hover { color: var(--verde-neon); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 148px 40px 80px; position: relative; overflow: hidden;
  background: var(--verde-escuro);
}

.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-bg-circles span {
  position: absolute; border-radius: 50%; opacity: 0.08;
  background: var(--verde-neon); animation: pulse 6s ease-in-out infinite;
}

.hero-bg-circles span:nth-child(1) { width:600px; height:600px; top:-200px; right:-100px; }
.hero-bg-circles span:nth-child(2) { width:400px; height:400px; bottom:-100px; left:-150px; animation-delay:2s; }
.hero-bg-circles span:nth-child(3) { width:250px; height:250px; top:40%; left:40%; animation-delay:4s; }

@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(126,217,87,0.15); border: 1px solid rgba(126,217,87,0.4);
  color: var(--verde-neon); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem,8vw,7rem);
  line-height: 0.95; color: #fff; margin-bottom: 16px; animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title .accent { color: var(--verde-neon); }

.hero-slogan {
  font-size: clamp(1.05rem,2vw,1.3rem); color: rgba(255,255,255,0.7);
  margin-bottom: 40px; font-weight: 600; animation: fadeUp 0.8s ease 0.2s both;
}

.hero-slogan strong { color: var(--verde-neon); }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }

.btn-primary {
  background: var(--verde-neon); color: var(--verde-escuro);
  padding: 16px 32px; border-radius: 50px; font-weight: 900; font-size: 1rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(126,217,87,0.4);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(126,217,87,0.5); }

.btn-secondary {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: var(--verde-neon); background: rgba(126,217,87,0.1); }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-visual-card {
  max-width: 700px;
  background: rgba(255,255,255,0.05); border: 2px dashed rgba(126,217,87,0.3);
  border-radius: 24px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  color: rgba(255,255,255,0.4); font-size: 0.9rem; font-weight: 600;
  text-align: center; padding: 32px; position: relative; overflow: hidden;
}

.hero-visual-card .placeholder-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(126,217,87,0.1); display: flex; align-items: center; justify-content: center; font-size: 2rem;
}

.hero-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--verde-neon); color: var(--verde-escuro);
  padding: 8px 20px; border-radius: 50px; font-weight: 900; font-size: 0.85rem;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(126,217,87,0.4);
}

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.wave { display: block; width: 100%; margin-bottom: -2px; }

/* Trust bar */
.trust-bar { background: var(--creme); padding: 22px 0; overflow: hidden; }

.trust-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 20s linear infinite; width: max-content;
}

.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; color: var(--verde-escuro); font-size: 0.9rem; white-space: nowrap;
}

@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Sections */
section { padding: 80px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block; background: rgba(76,175,80,0.12); color: var(--verde-medio);
  padding: 4px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,5vw,4rem);
  color: var(--verde-escuro); line-height: 1; margin-bottom: 16px;
}

.section-sub { font-size: 1.05rem; color: var(--cinza); max-width: 560px; }

/* ═══ PRODUTOS ═══ */
#produtos { background: var(--off-white); }

.produtos-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; flex-wrap: wrap; gap: 24px;
}

.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.filtros { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 36px; }

.filtro-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 50px;
  background: #fff; border: 1.5px solid rgba(0,0,0,0.1);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.83rem;
  cursor: pointer; transition: all 0.2s; color: var(--cinza);
}

.filtro-btn:hover { border-color: var(--verde-vivo); color: var(--verde-escuro); }

.filtro-btn.ativo {
  background: var(--verde-escuro); border-color: var(--verde-escuro);
  color: #fff; box-shadow: 0 4px 12px rgba(26,74,26,0.2);
}

.produtos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 22px;
}

.produto-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.produto-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,74,26,0.12); }
.produto-card.hidden { display: none; }

.produto-img {
  width: 100%; aspect-ratio: 1;
  background: var(--creme); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--cinza); font-size: 0.78rem; font-weight: 600;
  text-align: center; padding: 24px; position: relative; overflow: hidden;
}

.produto-img .img-icon { font-size: 2.8rem; opacity: 0.4; }

.badge-eco {
  position: absolute; top: 12px; right: 12px;
  background: var(--verde-neon); color: var(--verde-escuro);
  font-size: 0.67rem; font-weight: 900; padding: 3px 9px; border-radius: 50px;
}

.badge-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(26,74,26,0.85); color: #fff;
  font-size: 0.64rem; font-weight: 900; padding: 3px 9px; border-radius: 50px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.produto-info { padding: 16px 20px 20px; }
.produto-nome { font-weight: 900; font-size: 0.97rem; color: var(--verde-escuro); margin-bottom: 4px; }
.produto-desc { font-size: 0.83rem; color: var(--cinza); margin-bottom: 14px; line-height: 1.55; }

.produto-cta {
  width: 100%; background: var(--verde-escuro); color: #fff; border: none;
  padding: 11px; border-radius: 11px; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.87rem; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 7px; text-decoration: none;
}

.produto-cta:hover { background: var(--verde-medio); }

/* ═══ QUEM SOMOS ═══ */
#quem-somos { background: var(--verde-escuro); position: relative; overflow: hidden; }

#quem-somos::before {
  content:''; position:absolute; width:700px; height:700px;
  border-radius:50%; border:1px solid rgba(126,217,87,0.07); top:-300px; right:-200px;
}

.quem-somos-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2;
}

.quem-somos-text .section-tag { background: rgba(126,217,87,0.15); color: var(--verde-neon); }
.quem-somos-text .section-title { color: #fff; }
.quem-somos-text .section-sub { color: rgba(255,255,255,0.65); }

.quem-destaque {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem,3vw,2.6rem);
  color: var(--verde-neon); margin-top: 32px; line-height: 1.15;
}

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.stat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(126,217,87,0.13);
  border-radius: 16px; padding: 22px;
}

.stat-num { font-family:'Bebas Neue',sans-serif; font-size:2.8rem; color:var(--verde-neon); line-height:1; margin-bottom:4px; }
.stat-label { color:rgba(255,255,255,0.6); font-size:0.85rem; font-weight:600; }

/* ═══ PARA QUEM ═══ */
#para-quem { background: var(--creme); }

.segmentos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 14px; margin-top: 44px; }

.segmento-card {
  background: #fff; border-radius: 14px; padding: 24px 16px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.segmento-card:hover { transform:translateY(-4px); box-shadow:0 10px 28px rgba(26,74,26,0.1); border-color:var(--verde-vivo); }

.seg-icon { font-size: 2.2rem; margin-bottom: 10px; }
.seg-nome { font-weight: 800; color: var(--verde-escuro); font-size: 0.9rem; }

/* ═══ COMO FUNCIONA ═══ */
#como-funciona { background: var(--off-white); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 32px; margin-top: 52px; }

.step { display: flex; flex-direction: column; gap: 14px; }
.step-num { font-family:'Bebas Neue',sans-serif; font-size:3.8rem; color:rgba(26,74,26,0.09); line-height:1; transition:color 0.3s; }
.step:hover .step-num { color:var(--verde-neon); }
.step-icon { width:50px; height:50px; background:var(--verde-escuro); border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:1.35rem; }
.step-title { font-weight:900; font-size:1rem; color:var(--verde-escuro); }
.step-desc { font-size:0.88rem; color:var(--cinza); line-height:1.6; }

/* ═══ CTA ═══ */
.cta-section {
  background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-medio) 100%);
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}

.cta-section::before {
  content:'EMBALOU, VENDEU.'; position:absolute; font-family:'Bebas Neue',sans-serif;
  font-size:clamp(60px,12vw,130px); color:rgba(255,255,255,0.035);
  white-space:nowrap; top:50%; left:50%; transform:translate(-50%,-50%);
  pointer-events:none; letter-spacing:0.02em;
}

.cta-inner { position:relative; z-index:2; max-width:700px; margin:0 auto; }
.cta-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(3rem,6vw,5.5rem); color:#fff; line-height:1; margin-bottom:16px; }
.cta-title .accent { color:var(--verde-neon); }
.cta-sub { font-size:1.05rem; color:rgba(255,255,255,0.7); margin-bottom:40px; }

.btn-whatsapp {
  background:#25D366; color:#fff; padding:17px 38px; border-radius:50px;
  font-weight:900; font-size:1.05rem; text-decoration:none;
  display:inline-flex; align-items:center; gap:12px;
  box-shadow:0 6px 24px rgba(37,211,102,0.4);
  transition:transform 0.2s, box-shadow 0.2s; position:relative; overflow:hidden;
}

.btn-whatsapp::before {
  content:''; position:absolute; top:-50%; left:-60%; width:30%; height:200%;
  background:rgba(255,255,255,0.2); transform:skewX(-20deg);
  animation:shine 3s ease infinite;
}

@keyframes shine { 0%{left:-60%} 60%,100%{left:130%} }

.btn-whatsapp:hover { transform:translateY(-3px); box-shadow:0 10px 36px rgba(37,211,102,0.5); }

/* Footer */
footer { background:#111; color:rgba(255,255,255,0.5); padding:48px 40px; text-align:center; }
footer img { height:34px; margin-bottom:18px; filter:brightness(0) invert(1); opacity:0.55; }
footer p { font-size:0.84rem; line-height:1.8; }
footer a { color:var(--verde-vivo); text-decoration:none; }

/* WPP float */
.wpp-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,0.5);
  animation:bounce 2.5s ease-in-out infinite; text-decoration:none; transition:transform 0.2s;
}

.wpp-float:hover { transform:scale(1.1); animation:none; }
.wpp-float svg { width:30px; height:30px; fill:#fff; }

@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.wpp-tooltip {
  position:absolute; right:68px; background:#fff; color:#111;
  padding:6px 13px; border-radius:8px; font-size:0.78rem; font-weight:700;
  white-space:nowrap; box-shadow:0 4px 12px rgba(0,0,0,0.1);
  opacity:0; pointer-events:none; transition:opacity 0.2s;
}

.wpp-float:hover .wpp-tooltip { opacity:1; }

/* Reveal */
.reveal { opacity:0; transform:translateY(36px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ═══ INFLUENCER ═══ */
#influencer { background: var(--verde-escuro); position: relative; overflow: hidden; }

#influencer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(126,217,87,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,217,87,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.infl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.infl-text .section-tag { background: rgba(126,217,87,0.15); color: var(--verde-neon); }
.infl-title { color: #fff; }
.infl-accent { color: var(--verde-neon); }

.infl-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.infl-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 40px;
  padding: 0;
}

.infl-bullets li { display: flex; align-items: flex-start; gap: 14px; }

.infl-bullet-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(126,217,87,0.1);
  border: 1px solid rgba(126,217,87,0.2);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-top: 2px;
}

.infl-bullets li div { display: flex; flex-direction: column; gap: 3px; }

.infl-bullets li strong {
  font-size: 0.95rem; font-weight: 900; color: rgba(255,255,255,0.9);
  display: block;
}

.infl-bullets li span {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  font-weight: 600; line-height: 1.5;
}

.btn-infl-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 900; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-infl-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

.infl-video-wrap { position: relative; }

.infl-frame-deco {
  position: absolute; inset: 0;
  border-radius: 24px;
  border: 1.5px solid rgba(126,217,87,0.18);
  transform: translate(12px, 12px);
  pointer-events: none;
}

.infl-video-container {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: rgba(0,0,0,0.5);
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(126,217,87,0.15);
}

.infl-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: rgba(10,26,10,0.85);
}

.infl-play-btn {
  width: 72px; height: 72px;
  background: rgba(126,217,87,0.15);
  border: 2px solid rgba(126,217,87,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}

.infl-play-btn:hover { background: rgba(126,217,87,0.25); transform: scale(1.05); }

.infl-placeholder-text {
  font-size: 0.88rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-align: center; line-height: 1.6;
}

.infl-placeholder-hint {
  font-size: 0.72rem; color: rgba(126,217,87,0.4);
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-align: center;
}

.infl-badge {
  position: absolute; top: -14px; left: 24px;
  background: var(--verde-escuro);
  border: 1px solid rgba(126,217,87,0.25);
  padding: 6px 14px; border-radius: 50px;
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 900;
  color: rgba(255,255,255,0.7); letter-spacing: 0.04em;
}

.infl-badge-dot {
  width: 8px; height: 8px; background: #ff4444;
  border-radius: 50%; animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.infl-float-tag {
  position: absolute; bottom: -18px; right: 24px;
  background: rgba(10,26,10,0.95);
  border: 1px solid rgba(126,217,87,0.2);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  animation: floatTag 3.5s ease-in-out infinite;
}

@keyframes floatTag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.infl-float-icon { font-size: 1.2rem; }

.infl-float-label {
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
  line-height: 1; margin-bottom: 2px;
}

.infl-float-value { font-size: 0.9rem; font-weight: 900; color: #fff; line-height: 1; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .nav-links, .nav-tel, .nav-divider { display: none; }
  .nav-hamburger { display: flex; }
  .nav-main { padding: 0 20px; }
  .infl-inner { grid-template-columns: 1fr; gap: 56px; }
  .infl-video-wrap { order: -1; }
}

@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .hero { padding: 148px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .quem-somos-inner { grid-template-columns: 1fr; gap: 40px; }
  .produtos-header { flex-direction: column; align-items: flex-start; }
  .nav-promo { font-size: 0.7rem; gap: 8px; padding: 6px 12px; }
  .infl-frame-deco { display: none; }
  .infl-float-tag { bottom: -14px; right: 12px; }
}
