/* ============================================
   MANEBOX V4 — Brand Colors (White/Gray/Red)
   ============================================ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fef2f2;
  --red-glow: rgba(220,38,38,.2);
  --yellow: #eab308;
  --yellow-light: #fefce8;
  --green: #16a34a;
  --r: 16px;
  --r-sm: 10px;
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--gray-600);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a, button { cursor: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- Cursor ---- */
.dot {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform .06s linear, width .25s, height .25s, background .25s;
}

.dot.big {
  width: 18px; height: 18px;
  background: var(--red-dark);
}

.trail {
  position: fixed;
  width: 44px; height: 44px;
  border: 2px solid rgba(220,38,38,.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width .3s var(--ease), height .3s var(--ease),
              border-color .3s, background .3s;
}

.trail.hover {
  width: 60px; height: 60px;
  background: rgba(220,38,38,.04);
  border-color: rgba(220,38,38,.4);
}

/* ---- Loader ---- */
.loader {
  position: fixed; inset: 0;
  background: var(--gray-900);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity .5s ease .2s, visibility .5s ease .2s;
}

.loader.done { opacity: 0; visibility: hidden; }

.loader-logo img {
  height: 56px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 16px;
  animation: ldPulse 1.2s ease infinite;
}

@keyframes ldPulse {
  0%,100% { opacity: .4; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-strip {
  width: 180px; height: 3px;
  background: var(--gray-800);
  border-radius: 4px;
  overflow: hidden;
}

.loader-fill {
  width: 0; height: 100%;
  background: var(--red);
  border-radius: 4px;
  animation: ldFill 1.6s ease forwards;
}

@keyframes ldFill {
  0% { width: 0; }
  60% { width: 75%; }
  100% { width: 100%; }
}

/* ---- Version Switcher ---- */
.vsw {
  position: fixed; top: 14px; right: 14px;
  z-index: 1001;
  display: flex; gap: 2px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.vsw a, .vsw .vsw-active {
  padding: 4px 13px;
  font-size: 11px; font-weight: 700;
  color: var(--gray-400);
  border-radius: 100px;
  transition: .3s;
}

.vsw a:hover { color: var(--gray-900); background: var(--gray-100); }
.vsw .vsw-active { background: var(--red); color: var(--white); }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: .4s;
}

.navbar.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}

.navbar-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}

.brand img { height: 36px; width: auto; }

.menu { display: flex; gap: 4px; margin-left: auto; }

.menu-link {
  padding: 7px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--gray-500);
  border-radius: 8px;
  transition: .25s;
}

.menu-link:hover { color: var(--gray-900); background: var(--gray-100); }
.menu-link.active { color: var(--red); font-weight: 600; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: var(--green);
  color: var(--white);
  font-size: 13px; font-weight: 600;
  border-radius: 100px;
  transition: .3s var(--ease);
  box-shadow: 0 2px 8px rgba(22,163,74,.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}

.nav-cta-ico { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.toggler {
  display: none;
  background: none; border: none;
  width: 32px; height: 20px;
  position: relative;
  flex-direction: column; justify-content: space-between;
}

.toggler span {
  display: block; width: 100%; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: .3s var(--ease);
  position: absolute; left: 0;
}

.toggler span:nth-child(1) { top: 0; }
.toggler span:nth-child(2) { top: 9px; }
.toggler span:nth-child(3) { top: 18px; }

.toggler.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.toggler.active span:nth-child(2) { opacity: 0; }
.toggler.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* Mobile Nav */
.mob {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 899;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  opacity: 0; visibility: hidden;
  transition: .35s;
}

.mob.open { opacity: 1; visibility: visible; }

.mob-a {
  font-family: 'Archivo', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--gray-300);
  transition: .25s;
}

.mob-a:hover { color: var(--red); }

.mob-wpp {
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--green);
  color: var(--white);
  font-size: 15px; font-weight: 600;
  border-radius: 100px;
}

/* ---- Hero ---- */
.hero {
  padding: 140px 24px 80px;
  max-width: 1140px; margin: 0 auto;
}

.hero-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.tag-line {
  width: 32px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.hero h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.red { color: var(--red); }

.hero-p {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  font-size: 14px; font-weight: 600;
  border-radius: 100px;
  transition: .3s var(--ease);
  box-shadow: 0 4px 16px var(--red-glow);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,.3);
}

.btn-red.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  font-size: 14px; font-weight: 600;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  transition: .3s;
}

.btn-ghost:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

/* Hero Visual */
.hv-wrapper {
  position: relative;
  width: 100%; max-width: 440px;
  aspect-ratio: 1;
  margin-left: auto;
}

.hv-card {
  position: absolute;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transition: transform .5s var(--ease);
}

.hv-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hv-card-1 {
  width: 72%; height: 78%;
  top: 0; left: 0;
  z-index: 2;
  border: 3px solid var(--white);
}

.hv-card-2 {
  width: 50%; height: 50%;
  bottom: 2%; right: 2%;
  z-index: 3;
  border: 3px solid var(--white);
}

.hv-wrapper:hover .hv-card-1 { transform: translate(-4px, -4px) rotate(-1deg); }
.hv-wrapper:hover .hv-card-2 { transform: translate(4px, 4px) rotate(2deg); }

.hv-badge {
  position: absolute;
  top: -12px; right: 65px;
  width: 80px; height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  z-index: 4;
  box-shadow: 0 4px 16px var(--red-glow);
  animation: badgeFloat 4s ease-in-out infinite;
}

.hv-badge strong {
  font-family: 'Archivo', sans-serif;
  font-size: 22px; font-weight: 800; line-height: 1;
}

.hv-badge small { font-size: 11px; font-weight: 500; }

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

.hv-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hv-dot-1 {
  width: 12px; height: 12px;
  background: var(--yellow);
  top: 10%; right: 5%;
  animation: dotBounce 3s ease infinite;
}

.hv-dot-2 {
  width: 8px; height: 8px;
  background: var(--red);
  bottom: 25%; left: -5%;
  animation: dotBounce 3.5s ease infinite .5s;
}

.hv-dot-3 {
  width: 16px; height: 16px;
  border: 2px solid var(--gray-200);
  bottom: 5%; left: 30%;
  animation: dotBounce 4s ease infinite 1s;
}

@keyframes dotBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.hs-num {
  font-family: 'Archivo', sans-serif;
  font-size: 42px; font-weight: 800;
  color: var(--gray-900);
  display: inline;
}

.hs-plus {
  font-family: 'Archivo', sans-serif;
  font-size: 42px; font-weight: 800;
  color: var(--yellow);
}

.hs-label {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 2px;
}

.hs-div {
  width: 1px; height: 44px;
  background: var(--gray-200);
}

/* ---- Marquee ---- */
.marq {
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--gray-50);
}

.marq-track {
  display: inline-flex;
  animation: marqScroll 28s linear infinite;
  white-space: nowrap;
}

.marq-track span {
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
}

.marq-track b { color: var(--yellow); margin: 0 6px; }

@keyframes marqScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ---- Services ---- */
.servicos {
  padding: 120px 0;
}

.sec-top { margin-bottom: 56px; }

.sec-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--yellow-light);
  border: 1px solid rgba(234,179,8,.15);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.sec-top h2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.sec-sub {
  font-size: 16px;
  color: var(--gray-500);
}

.svc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.svc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  transition: .35s var(--ease);
  overflow: hidden;
}

.svc:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(220,38,38,.06);
}

.svc-top {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.svc-icon {
  width: 52px; height: 52px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: .3s;
}

.svc-icon img {
  width: 28px; height: 28px;
  object-fit: contain;
  opacity: .6;
}

.svc:hover .svc-icon {
  background: var(--red);
}

.svc:hover .svc-icon img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.svc-n {
  font-family: 'Archivo', sans-serif;
  font-size: 48px; font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  transition: .3s;
}

.svc:hover .svc-n { color: var(--yellow-light); }

.svc h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.svc p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.svc-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.svc:hover .svc-line { transform: scaleX(1); }

/* Service Banner */
.svc-banner {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 32px;
  background: var(--gray-900);
  border-radius: var(--r);
  color: var(--white);
}

.svc-banner .svc-icon {
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.svc-banner .svc-icon img {
  filter: brightness(0) invert(1);
  opacity: .8;
}

.svc-banner h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.svc-banner p {
  font-size: 14px;
  color: var(--gray-400);
}

.svc-banner .btn-red {
  margin-left: auto;
  flex-shrink: 0;
}

/* ---- History ---- */
.historia {
  padding: 120px 0;
  background: var(--gray-50);
}

.hist-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hist-item {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: .4s var(--ease);
}

.hist-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.06);
  border-color: var(--red);
}

.hist-img {
  position: relative;
  height: 220px; overflow: hidden;
}

.hist-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.hist-item:hover .hist-img img { transform: scale(1.06); }

.hist-yr {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 14px;
  background: var(--yellow);
  color: var(--gray-900);
  font-family: 'Archivo', sans-serif;
  font-size: 13px; font-weight: 700;
  border-radius: 100px;
}

.hist-info {
  padding: 24px;
}

.hist-info h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.hist-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- Região ---- */
.regiao {
  padding: 100px 0;
  background: var(--white);
}

.regiao-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.regiao-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  color: var(--gray-800);
  transition: .3s var(--ease);
}

.regiao-item:hover {
  border-color: var(--red);
  background: var(--red-light);
  transform: translateY(-2px);
}

.regiao-item small {
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
}

.regiao-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.regiao-item:first-child .regiao-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(234,179,8,.2);
}

.regiao-note {
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
}

.regiao-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.regiao-note a:hover {
  color: var(--red-dark);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 48px 52px;
  background: var(--red);
  border-radius: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  top: -100px; right: -60px;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  bottom: -40px; left: 20%;
}

.cta-text { position: relative; z-index: 1; }

.cta-text h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 28px; font-weight: 800;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
}

.btn-wpp-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--gray-900);
  font-size: 15px; font-weight: 700;
  border-radius: 100px;
  transition: .3s var(--ease);
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.btn-wpp-lg img {
  width: 22px; height: 22px;
}

.btn-wpp-lg:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

/* ---- Contact ---- */
.contato {
  padding: 120px 0;
}

.ct-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.contato h2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.ct-left > p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}

.ct-list {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 28px;
}

.ct-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  transition: .3s var(--ease);
}

.ct-item:hover {
  background: var(--white);
  border-color: var(--red);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(220,38,38,.06);
}

.ct-item.ct-green:hover { border-color: var(--green); }

.ct-ico {
  width: 42px; height: 42px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: .3s;
}

.ct-ico.green { background: #dcfce7; }

.ct-ico img {
  width: 20px; height: 20px;
  object-fit: contain;
  opacity: .6;
}

.ct-item:hover .ct-ico {
  background: var(--red);
}

.ct-item:hover .ct-ico img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.ct-item.ct-green:hover .ct-ico { background: var(--green); }

.ct-item small {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1px;
}

.ct-item strong {
  font-size: 15px; font-weight: 600;
  color: var(--gray-800);
}

.ct-arr {
  margin-left: auto;
  color: var(--gray-300);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: .3s var(--ease);
}

.ct-item:hover .ct-arr {
  opacity: 1;
  transform: translate(0);
  color: var(--red);
}

.ct-item.ct-green:hover .ct-arr { color: var(--green); }

.ct-social {
  display: flex; gap: 10px;
}

.ct-social a {
  width: 46px; height: 46px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: .3s var(--ease);
}

.ct-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.ct-social a:hover img { filter: brightness(0) invert(1); }

.ct-social img {
  width: 20px; height: 20px;
  object-fit: contain;
  opacity: .5;
  transition: .3s;
}

/* Contact Card */
.ct-card {
  background: var(--gray-900);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.ct-card-logo {
  height: 64px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 20px;
  margin: 0 auto 24px;
}

.ct-card h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 6px;
}

.ct-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.ct-card-divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 3px;
  margin: 20px auto;
}

.ct-card-quote {
  font-style: italic;
  font-size: 14px !important;
  color: var(--gray-500) !important;
}

/* ---- Footer ---- */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
}

.footer-row {
  display: flex; align-items: center; justify-content: space-between;
}

.footer-logo { height: 28px; width: auto; opacity: .6; }

.footer-row span {
  font-size: 12px; color: var(--gray-400);
}

/* ---- FAB WhatsApp ---- */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 800;
  transition: .3s var(--ease);
  box-shadow: 0 4px 20px rgba(22,163,74,.25);
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(22,163,74,.35);
}

.fab img {
  width: 26px; height: 26px;
  filter: brightness(0) invert(1);
}

.fab-ring {
  position: absolute; inset: -4px;
  border: 2px solid var(--green);
  border-radius: 50%;
  animation: fabPulse 2s ease-out infinite;
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 950;
  font-size: 13px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform .5s var(--ease);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner p {
  margin: 0;
  max-width: 600px;
}

.cookie-banner a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-accept {
  padding: 8px 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: .3s;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-accept:hover {
  background: var(--red-dark);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px 20px 20px;
  }
}

/* ---- Privacy Modal ---- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  cursor: auto;
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
  transform: translateY(20px) scale(.97);
  transition: transform .35s var(--ease);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.modal-body, .modal-body a, .modal-close { cursor: auto; }

.modal-close {
  width: 36px; height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

.modal-body h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 24px 0 8px;
}

.modal-body h3:first-of-type {
  margin-top: 16px;
}

.modal-body p {
  margin-bottom: 8px;
}

.modal-body ul {
  margin: 8px 0 16px 20px;
}

.modal-body li {
  margin-bottom: 4px;
}

.modal-body strong {
  color: var(--gray-800);
}

@media (max-width: 600px) {
  .modal {
    max-height: 90vh;
    border-radius: 16px;
  }

  .modal-header { padding: 20px; }
  .modal-body { padding: 20px; }
}

/* ---- Reveal ---- */
[data-a] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-a].on {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .menu, .nav-cta { display: none; }
  .toggler { display: flex; }

  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hv-wrapper { max-width: 340px; margin: 0 auto; }

  .svc-row { grid-template-columns: 1fr 1fr; }
  .hist-flow { grid-template-columns: 1fr; }
  .regiao-grid { grid-template-columns: repeat(3, 1fr); }

  .svc-banner {
    flex-direction: column; text-align: center;
  }
  .svc-banner .btn-red { margin-left: 0; }

  .cta-box {
    flex-direction: column; text-align: center;
    gap: 24px; padding: 36px 28px;
  }

  .ct-layout { grid-template-columns: 1fr; gap: 40px; }
  .ct-card { position: static; }
}

@media (max-width: 600px) {
  body, a, button { cursor: auto; }
  .dot, .trail { display: none; }

  .svc-row { grid-template-columns: 1fr; }
  .regiao-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats {
    flex-direction: column; align-items: flex-start;
    gap: 20px;
  }
  .hs-div { width: 40px; height: 1px; }

  .footer-row {
    flex-direction: column; gap: 8px; text-align: center;
  }

  .vsw { right: 8px; top: auto; bottom: 80px; }
}
