:root {
  --blue: #02388C;
  --blue-dark: #011a4a;
  --blue-mid: #0a4db5;
  --green: #73C032;
  --green-bright: #98FE00;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --gray: #8a9ab0;
  --text: #1a2940;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Poppins', sans-serif; color: var(--text); overflow-x: hidden; max-width: 100%; position: relative; }

/* ========================================================
   1. NAVBAR E MENU MOBILE (INTEGRAÇÃO BOOTSTRAP V5)
   ======================================================== */
.navbar {
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent !important;
}

.navbar.scrolled, .navbar.mobile-open {
  background: linear-gradient(145deg, rgba(1, 24, 48, 0.98) 0%, rgba(2, 56, 140, 0.98) 45%, rgba(7, 58, 128, 0.98) 100%) !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
  padding: 12px 0 !important;
}

.navbar .nav-logo img { 
  height: 60px !important; 
  width: auto !important; 
  transition: all 0.3s ease; 
}

@media(min-width: 992px) {
  .navbar .nav-logo img { height: 95px !important; }
}

.nav-link { 
  color: #ffffff !important; 
  font-weight: 500; 
  font-size: 0.9rem; 
  transition: color 0.3s; 
}
.nav-link:hover { color: var(--green) !important; }

.nav-cta { 
  background: var(--green) !important; 
  color: var(--blue-dark) !important; 
  padding: 10px 24px; 
  border-radius: 50px; 
  font-weight: 700; 
  font-size: 0.9rem; 
  text-decoration: none; 
  transition: all 0.3s; 
}
.nav-cta:hover { 
  background: var(--green-bright) !important; 
  transform: translateY(-2px); 
  box-shadow: 0 8px 24px rgba(115,192,50,.4) !important; 
}

@media (max-width: 991px) {
  #navMenu {
    background: rgba(1, 26, 74, 0.98);
    border-radius: 16px;
    padding: 24px 20px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .nav-link { font-size: 1.15rem; padding: 12px 0 !important; }
  .nav-cta { margin-top: 16px; justify-content: center; width: 100%; }
}

.custom-toggler:focus { box-shadow: none !important; }
.hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 28px; height: 3px; background: #ffffff; transition: all 0.3s; border-radius: 3px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* ========================================================
   2. REGRAS GERAIS DAS SEÇÕES
   ======================================================== */
section { 
  padding: 88px 5%; 
  scroll-margin-top: 100px; /* Evita que o menu esconda o titulo */
}
.inner { max-width: 1100px; margin: 0 auto; }
.sec-tag { display: inline-block; background: rgba(115,192,50,.12); color: var(--green); padding: 5px 16px; border-radius: 50px; font-size: .75rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--blue); margin-bottom: 12px; line-height: 1.25; }
.sec-sub { font-size: .97rem; color: var(--gray); line-height: 1.75; max-width: 540px; }
.sec-hdr { margin-bottom: 52px; }
.sec-hdr.c { text-align: center; } 
.sec-hdr.c .sec-sub { margin: 0 auto; }

/* 3. HERO */
.hero { position: relative; width: 100%; height: 100vh; height: 100dvh; min-height: 500px; overflow: hidden; padding: 0; }
.hero-track { display: flex; flex-wrap: nowrap; width: 100%; height: 100%; transition: transform .85s cubic-bezier(.77,0,.175,1); }
.hero-slide { flex: 0 0 100%; width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 15%; z-index: 0; }
.hero-slide .bg { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%); opacity: 0.8; }
.hero-slide:nth-child(2) .bg, .hero-slide:nth-child(3) .bg, .hero-slide:nth-child(4) .bg { background: linear-gradient(145deg, #011830 0%, #02388C 45%, #073a80 100%); opacity: 0.8; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(115,192,50,.12); animation: spin 25s linear infinite; z-index: 1; }
.hero-ring-1 { width: 700px; height: 700px; top: -200px; right: -150px; }
.hero-ring-2 { width: 450px; height: 450px; bottom: -150px; left: -80px; animation-direction: reverse; animation-duration: 18s; border-color: rgba(115,192,50,.08); }
.hero-ring-3 { width: 200px; height: 200px; top: 20%; left: 8%; border-color: rgba(255,255,255,.06); animation-duration: 12s; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.hero-content { text-align: center; width: 100%; max-width: 820px; padding: 0; display: flex; flex-direction: column; align-items: center; }
.hero-badge { display: inline-block; background: rgba(115,192,50,.18); border: 1px solid rgba(115,192,50,.45); color: var(--green); padding: 6px 20px; border-radius: 50px; font-size: .78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 22px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.hero-title .hl { color: var(--green); }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.15rem); color: rgba(255, 255, 255, .78); line-height: 1.7; margin-bottom: 42px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--blue-dark); padding: 15px 34px; border-radius: 50px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: all .3s; box-shadow: 0 8px 30px rgba(115,192,50,.4); }
.btn-primary:hover { background: var(--green-bright); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(115,192,50,.5); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); color: #fff; padding: 15px 34px; border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 1px solid rgba(255,255,255,.25); transition: all .3s; backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }

.hero-dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: all .4s; padding: 0; }
.hero-dot.active { width: 28px; background: var(--green); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; backdrop-filter: blur(10px); transition: all .3s; }
.hero-arrow:hover { background: var(--green); color: var(--blue-dark); border-color: var(--green); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
.scroll-hint { position: absolute; bottom: 40px; right: 32px; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, rgba(115,192,50,.6)); animation: scrollpulse 1.6s ease infinite; }
@keyframes scrollpulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .4; transform: scaleY(.5); } }

/* 4. STATS E SOBRE NÓS */
.stats { background: linear-gradient(to right, #ffffff 45%, #e2f5d2 75%, #bceb93 100%); padding: 80px 5% 60px; position: relative; z-index: 10; }
.stats-inner { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap: 40px; max-width: 1100px; margin: 0 auto; }
.stat { flex: 0 0 200px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.3s ease; }
.stat:hover { transform: translateY(-8px); }
.stat-icon { color: var(--green); margin-bottom: 12px; }
.stat-icon svg { width: 32px; height: 32px; }
.stat-num { font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 900; color: var(--blue-dark); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: .85rem; color: var(--gray); font-weight: 500; line-height: 1.4; }

.about { background: linear-gradient(to right, #ffffff 45%, #e2f5d2 75%, #bceb93 100%); padding: 60px 5% 100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { font-size: .97rem; color: #5a6a80; line-height: 1.82; margin-bottom: 18px; }
.about-callout { background: var(--blue-dark); color: #fff; padding: 22px 26px; border-radius: 14px; font-size: .92rem; font-weight: 500; line-height: 1.65; position: relative; overflow: hidden; margin-top: 8px; }
.about-callout::after { content: ''; position: absolute; right: -24px; top: -24px; width: 100px; height: 100px; border-radius: 50%; background: rgba(115,192,50,.15); }
.about-callout strong { color: var(--green-bright); }
.about-image { width: 100%; max-width: 480px; height: auto; aspect-ratio: 1 / 1; display: block; margin: 0 auto; object-fit: cover; border-radius: 50%; mix-blend-mode: multiply; }

/* 5. PRODUTOS EM DESTAQUE */
.products { padding: 88px 5%; background: var(--off-white); }
.featured-product-static { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; max-width: 1300px; margin: 150px auto 280px; }
.product-visual-static { display: flex; justify-content: center; align-items: center; width: 100%; position: relative; }
.product-visual-static::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 450px; aspect-ratio: 1 / 1; background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%); border-radius: 50%; z-index: 0; pointer-events: none; }
.static-phones { width: 100%; max-width: 500px !important; height: auto; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.06)); transition: transform 0.4s ease; object-fit: contain; display: block; margin: 0 auto; position: relative; z-index: 1; transform: scale(2.00); transform-origin: center center; }
.static-phones:hover { transform: scale(2.00) translateY(-5px); }
.prod-header-static { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.prod-icon-static { width: 48px; height: 48px; border-radius: 12px; background: rgba(115, 192, 50, 0.15); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prod-title-group h3 { color: var(--blue-dark); font-size: 1.6rem; font-weight: 800; line-height: 1.2; }
.prod-title-group p { color: #5a6a80; font-size: 0.9rem; margin-top: 4px; }
.prod-rate-row-static { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 24px; border-bottom: 1px solid #d0daea; }
.prod-badge-static { background: rgba(115, 192, 50, 0.12); color: #559123; padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; }
.prod-rate-static { font-size: 0.9rem; color: #5a6a80; }
.prod-rate-static strong { font-size: 1.5rem; color: var(--green); font-weight: 900; }
.prod-features-static { list-style: none; padding: 0; margin: 0 0 32px 0; display: flex; flex-direction: column; gap: 14px; }
.prod-features-static li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: #4a5a72; line-height: 1.5; }
.check-icon { width: 20px; height: 20px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; box-shadow: 0 3px 8px rgba(115, 192, 50, 0.4); }
.btn-prod-action { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--green); color: var(--blue-dark); padding: 16px; border-radius: 14px; font-weight: 800; text-decoration: none; font-size: 1.05rem; transition: all 0.3s; margin-top: 10px; }
.btn-prod-action:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(115,192,50,0.4); }
.featured-product-static.reverse { grid-template-columns: 1fr 1fr; }
.featured-product-static.reverse .product-visual-static { order: 2; }
.featured-product-static.reverse .product-info-static { order: 1; }

/* 6. COMO CONTRATAR */
.how { background: #ffffff; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.step { background: #ffffff; padding: 32px 24px; border-radius: 20px; border: 1px solid #edf2f9; box-shadow: 0 8px 24px rgba(2, 56, 140, 0.05); text-align: center; transition: transform 0.3s; }
.step:hover { transform: translateY(-5px); border-color: var(--green); }
.step-num { width: 48px; height: 48px; background: rgba(115, 192, 50, 0.15); color: var(--green); font-size: 1.2rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 12px; font-weight: 700; }
.step p { font-size: 0.9rem; color: #5a6a80; line-height: 1.6; }

/* 7. PARCEIROS */
.partners { background: var(--blue); padding: 64px 0; overflow: hidden; }
.partners .inner { margin-bottom: 40px; padding: 0 5%; }
.partners .sec-title { color: #ffffff !important; }
.partners .sec-sub { color: rgba(255, 255, 255, 0.8) !important; }
.partners .sec-tag { background: rgba(255, 255, 255, 0.1); color: var(--green-bright); border: 1px solid rgba(255, 255, 255, 0.2); }
.ticker-wrap { overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--blue), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--blue), transparent); }
.ticker { display: flex; gap: 30px; animation: slide 30s linear infinite; width: max-content; }
.ticker:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-box { width: 200px; height: 100px; background: var(--white); border: 2px solid transparent; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 15px; transition: all 0.3s ease; flex-shrink: 0; }
.logo-box:hover { border: 2px solid var(--green-bright); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* 8. DEPOIMENTOS */
.social { background: var(--blue-dark); padding: 88px 0; }
.social .inner { max-width: 100%; padding: 0; }
.social .sec-hdr { padding: 0 5%; }
.test-carousel { width: 100%; margin: 70px auto 0; }
.gr-track { display: flex; gap: 20px; overflow-x: auto; padding: 40px 5% 40px; scroll-snap-type: x mandatory; scroll-behavior: smooth; align-items: stretch; -ms-overflow-style: none; scrollbar-width: none; }
.gr-track::-webkit-scrollbar { display: none !important; }
@media(min-width: 1550px) { .gr-track { justify-content: center; } }
.test-card { background: #ffffff; border-radius: 16px; padding: 50px 20px 32px; width: 280px; min-width: 280px; flex-shrink: 0; position: relative; scroll-snap-align: center; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: none; display: flex; flex-direction: column; justify-content: flex-start; height: auto; }
.test-avatar-wrap { position: absolute; top: -35px; left: 50%; transform: translateX(-50%); width: 70px; height: 70px; }
.test-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid #ffffff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); background: #f4f7fc; }
.test-g-icon { position: absolute; bottom: 0; right: -4px; width: 24px; height: 24px; background: #fff; border-radius: 50%; padding: 4px; box-shadow: 0 2px 6px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; }
.test-g-icon svg { width: 100%; height: 100%; }
.test-name { font-weight: 700; color: var(--text); font-size: 1.05rem; margin-bottom: 2px; }
.test-meta { font-size: 0.8rem; color: var(--gray); margin-bottom: 12px; }
.test-stars { margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.test-stars > svg { width: 18px; height: 18px; fill: #FABB05; }
.test-verified-wrap { position: relative; display: inline-flex; cursor: pointer; margin-left: 4px; }
.test-verified { width: 18px; height: 18px; fill: #2B7BFA; }
.test-verified-wrap::after { content: 'Trustindex verifica se a fonte original da avaliação é Google.'; position: absolute; bottom: 150%; left: 50%; transform: translateX(-50%); background: #111; color: #fff; padding: 10px 14px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.25s ease; pointer-events: none; z-index: 100; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.test-verified-wrap::before { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #111; opacity: 0; visibility: hidden; transition: all 0.25s ease; z-index: 100; }
.test-verified-wrap:hover::after, .test-verified-wrap:hover::before { opacity: 1; visibility: visible; bottom: calc(100% + 8px); }
.test-verified-wrap:hover::before { bottom: calc(100% - 4px); }
.test-text { font-size: 0.95rem; color: #4a5a72; line-height: 1.6; flex-grow: 0; }

/* 9. FAQ */
.faq { background: var(--off-white); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 14px; margin-bottom: 10px; border: 1.5px solid #e2eaf5; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--blue); }
.faq-q { width: 100%; text-align: left; background: transparent; border: none; padding: 22px 24px; font-family: 'Poppins', sans-serif; font-size: .93rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .3s; }
.faq-item.open .faq-q { color: var(--blue); }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--blue); flex-shrink: 0; transition: all .3s; }
.faq-item.open .faq-ico { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 24px; }
.faq-a.open { max-height: 300px; padding: 0 24px 22px; }
.faq-a p { font-size: .88rem; color: #6b7c99; line-height: 1.8; }

/* 10. LOCALIZAÇÃO E CONTATO */
.location { background: var(--blue-dark); padding: 88px 0; }
.location .inner { max-width: 90%; margin: 0 auto; }
.location .sec-hdr { margin-bottom: 56px; }
.location .sec-title { color: #ffffff !important; }
.location .sec-tag { background: rgba(255, 255, 255, 0.1) !important; color: var(--green-bright) !important; border: 1px solid rgba(255, 255, 255, 0.2) !important; }
.location-grid-new { display: grid; grid-template-columns: 2.2fr 1fr; gap: 40px; align-items: stretch; width: 100%; }
.map-wrap-new { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); height: 100%; min-height: 550px; }
.map-wrap-new iframe { width: 100%; height: 100%; border: none; display: block; }
.loc-card { background: #ffffff; border-radius: 20px; padding: 48px 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); display: flex; flex-direction: column; justify-content: space-between; border: none; }
.loc-card-title { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 32px; }
.loc-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
.loc-icon { width: 46px; height: 46px; background: rgba(115, 192, 50, 0.12); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-icon svg { width: 22px; height: 22px; }
.loc-text strong { display: block; font-size: 1rem; color: var(--text); font-weight: 700; margin-bottom: 4px; }
.loc-text p, .loc-text a { font-size: 0.92rem; color: #6b7c99; line-height: 1.5; text-decoration: none; transition: color 0.3s; }
.loc-text a:hover { color: var(--blue); }
.loc-btn { margin-top: 24px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; font-size: 1.05rem; font-weight: 800; border-radius: 14px; text-align: center; text-decoration: none; background: var(--green); color: var(--blue-dark); transition: all 0.3s; box-shadow: 0 8px 24px rgba(115,192,50,0.3); }
.loc-btn:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(115,192,50,0.4); }

/* 11. FOOTER NOVO */
.footer-new { width: 100%; }
.footer-top { background: #f8fafd; padding: 80px 5% 40px; border-top: 1px solid #e2eaf5; }
.footer-grid-4 { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; max-width: 1200px; margin: 0 auto; }
.footer-logo { max-height: 160px; width: auto; margin-bottom: 24px; display: block; }
.footer-desc { font-size: 0.9rem; color: #5a6a80; line-height: 1.7; margin-bottom: 24px; max-width: 90%; }
.footer-social { display: flex; gap: 12px; }
.social-circle { width: 42px; height: 42px; background: var(--blue-dark); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s; }
.social-circle:hover { background: var(--green); color: var(--blue-dark); transform: translateY(-3px); }
.footer-col-links h5, .footer-col-contact h5 { font-size: 0.95rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col-links ul { list-style: none; }
.footer-col-links ul li { margin-bottom: 14px; }
.footer-col-links ul li a { text-decoration: none; color: #4a5a72; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.footer-col-links ul li a:hover { color: var(--blue); }
.footer-col-contact ul { list-style: none; }
.footer-col-contact ul li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; color: #4a5a72; font-size: 0.9rem; line-height: 1.6; }
.footer-col-contact ul li svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer-col-contact ul li a { text-decoration: none; color: #4a5a72; font-weight: 600; transition: color 0.3s; }
.footer-col-contact ul li a:hover { color: var(--blue); }
.footer-disclaimer { font-size: 0.75rem; color: #8a9ab0; line-height: 1.65; margin-top: 50px; padding-top: 30px; border-top: 1px solid #e2eaf5; text-align: justify; }
.footer-bottom-bar { background: var(--blue-dark); padding: 24px 5%; }
.footer-bottom-bar .inner { max-width: 1200px; margin: 0 auto; }
.footer-legal-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }
.footer-links-bottom a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s; }
.footer-links-bottom a:hover { color: var(--green); }
.footer-dev { display: flex; align-items: center; gap: 10px; }
.dev-badge { display: inline-flex; align-items: center; padding: 6px 14px; border: 1px solid rgba(115, 192, 50, 0.4); border-radius: 8px; color: var(--green-bright); font-weight: 700; font-size: 0.8rem; text-decoration: none; background: rgba(115, 192, 50, 0.08); transition: all 0.3s; }
.dev-badge:hover { background: rgba(115, 192, 50, 0.2); border-color: var(--green); transform: translateY(-2px); color: #ffffff; }

/* 12. WHATSAPP FLUTUANTE */
.wa-float { position: fixed; bottom: 40px; right: 28px; z-index: 99999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-tip { background: #fff; border-radius: 12px; padding: 10px 16px; font-size: .8rem; font-weight: 600; color: var(--text); box-shadow: 0 8px 30px rgba(0,0,0,.12); white-space: nowrap; animation: tip 3s ease-in-out infinite; position: relative; }
.wa-tip::after { content: ''; position: absolute; bottom: -7px; right: 22px; border: 7px solid transparent; border-top-color: #fff; border-bottom: none; }
@keyframes tip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.wa-btn { width: 62px; height: 62px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 28px rgba(37,211,102,.45); transition: all .3s; animation: wapulse 2.2s ease-in-out infinite; }
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 14px 40px rgba(37,211,102,.55); }
@keyframes wapulse { 0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,.45); } 50% { box-shadow: 0 8px 28px rgba(37,211,102,.55), 0 0 0 10px rgba(37,211,102,.08); } }
.wa-svg { width: 32px; height: 32px; fill: #fff; }

/* ANIMATION REVEAL */
.reveal-hidden { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-show { opacity: 1; transform: translateY(0); }
.stat:nth-child(2), .step:nth-child(2) { transition-delay: 0.1s; }
.stat:nth-child(3), .step:nth-child(3) { transition-delay: 0.2s; }
.stat:nth-child(4), .step:nth-child(4) { transition-delay: 0.3s; }

/* TELEFONES: DESKTOP vs MOBILE */
.phone-desktop { color: #4a5a72; font-weight: 600; cursor: default; transition: color 0.3s; }
.phone-desktop:hover { color: var(--green); }
.phone-mobile { display: none !important; }

/* ========================================================
   13. TODAS AS MEDIA QUERIES E RESPONSIVIDADE UNIFICADAS
   ======================================================== */
@media(max-width: 1024px) {
  .location-grid-new { grid-template-columns: 1.5fr 1fr; }
}

@media(max-width: 900px) {
  .about-grid, .location-grid, .location-grid-new, .footer-grid-4 { grid-template-columns: 1fr; gap: 32px; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .map-wrap { height: 290px; }
  .footer-cnpj { text-align: left; }
  .hero-arrow { display: none; }
  .location .inner { max-width: 90%; }
  .map-wrap-new { height: 400px; min-height: auto; order: 1; }
  .loc-card { order: 2; padding: 32px 24px; }
  
  .featured-product-static, .featured-product-static.reverse { grid-template-columns: 1fr; gap: 60px; margin: 80px auto 160px; }
  .featured-product-static .product-visual-static, .featured-product-static.reverse .product-visual-static { order: 1 !important; }
  .featured-product-static .product-info-static, .featured-product-static.reverse .product-info-static { order: 2 !important; }
  .product-visual-static::before { max-width: 320px; }
  .static-phones { max-width: 400px !important; width: 65% !important; margin: 0 auto; display: block; transform: scale(1.85); transform-origin: center center; }
  .static-phones:hover { transform: scale(1.85) translateY(-5px); }

  .footer-logo { margin: 0 auto 24px; }
  .footer-desc { text-align: center; margin: 0 auto 24px; }
  .footer-social { justify-content: center; }
  .footer-col-links, .footer-col-contact { text-align: center; }
  .footer-col-contact ul li { flex-direction: column; align-items: center; gap: 8px; }
  .footer-legal-flex { flex-direction: column; text-align: center; gap: 12px; }

  .ticker-wrap { overflow-x: auto; scroll-behavior: auto !important; scroll-snap-type: none !important; -ms-overflow-style: none; scrollbar-width: none; }
  .ticker-wrap::-webkit-scrollbar { display: none; }
  .ticker { animation: none !important; width: max-content; padding: 0; }
  .logo-box { flex-shrink: 0; }
  
  .phone-desktop { display: none !important; }
  .phone-mobile { display: inline !important; }
}

@media(max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 30px; gap: 30px; }
  .stat { flex: 0 0 40%; }
}

@media(max-width: 600px) {
  section { padding: 64px 5%; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .stat { flex: 0 0 100%; }
  .steps-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .google-badge { flex-direction: column; gap: 8px; text-align: center; }
  .wa-float { bottom: 36px; right: 20px; }
  .wa-tip { display: none; }
}

@media(max-width: 500px) {
  .navbar .nav-logo img, .navbar .nav-logo svg { height: 50px !important; }
}

/* ========================================================
   14. PÁGINAS LEGAIS (Termos de Uso e Privacidade)
   ======================================================== */
.legal-hero {
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 180px 5% 100px;
  text-align: center;
  position: relative;
}
.legal-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.5px;
}
.legal-content {
  background: var(--off-white);
  padding: 0 5% 100px;
}
.legal-box {
  max-width: 960px;
  margin: -60px auto 0;
  background: #ffffff;
  padding: 60px 80px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(1, 26, 74, 0.08);
  position: relative;
  z-index: 10;
}
.legal-box h1 {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(115, 192, 50, 0.2);
}
.legal-box h2 {
  color: var(--blue-dark);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin: 56px 0 24px;
  font-weight: 800;
}
.legal-box p {
  font-size: 1.05rem;
  color: #4a5a72;
  line-height: 1.85;
  margin-bottom: 24px;
  text-align: justify;
}
.legal-box strong {
  color: var(--blue-dark);
  font-weight: 700;
}
.legal-box a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-box a:hover {
  color: var(--blue);
  text-decoration: underline;
}
.legal-box ul {
  list-style: none;
  margin-bottom: 32px;
  background: rgba(115, 192, 50, 0.04);
  padding: 24px 32px;
  border-radius: 12px;
  border-left: 4px solid var(--green);
}
.legal-box ul li {
  font-size: 1.05rem;
  color: #4a5a72;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
.legal-box ul li::before {
  content: '•';
  color: var(--green);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}
.legal-box ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .legal-hero { padding: 140px 5% 80px; }
  .legal-box { margin-top: -40px; padding: 40px 24px; border-radius: 16px; }
  .legal-box p { font-size: 0.95rem; line-height: 1.7; text-align: left; margin-bottom: 20px; }
  .legal-box ul { padding: 20px; }
  .legal-box ul li { font-size: 0.95rem; }
}