/* ======================================================
   INTERLIG RH — PREMIUM REIMAGINATION
   ====================================================== */

/* ---- Variables ---- */
:root {
  --laranja:     #E84C1B;
  --laranja-esc: #C43C12;
  --laranja-lt:  #FF6B3D;
  --navy:        #0D2640;
  --navy-med:    #1A3A5C;
  --navy-lt:     #2A5080;
  --navy-xlt:    #3D6FA0;
  --cinza-bg:    #F4F6F9;
  --cinza-soft:  #EEF1F7;
  --cinza-borda: #DDE3ED;
  --cinza-txt:   #5A6A80;
  --white:       #FFFFFF;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --shadow-sm:   0 2px 12px rgba(13,38,64,.07);
  --shadow:      0 8px 32px rgba(13,38,64,.12);
  --shadow-lg:   0 20px 60px rgba(13,38,64,.18);
  --shadow-xl:   0 32px 80px rgba(13,38,64,.25);
  --trans:       all .3s cubic-bezier(.25,.8,.25,1);
  --trans-fast:  all .18s cubic-bezier(.25,.8,.25,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.7;
  color: var(--navy); background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- Cursor ---- */
.cursor {
  width: 8px; height: 8px;
  background: var(--laranja);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid rgba(232,76,27,.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
body.cursor-grow .cursor { width: 14px; height: 14px; }
body.cursor-grow .cursor-follower { width: 54px; height: 54px; border-color: rgba(232,76,27,.6); }
@media (max-width: 768px) { .cursor, .cursor-follower { display: none; } }

/* ---- Progress Bar ---- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--laranja), var(--laranja-lt));
  z-index: 10001; width: 0%; transition: width .1s linear;
  box-shadow: 0 0 10px rgba(232,76,27,.6);
}

/* ---- Layout ---- */
.container {
  max-width: 1200px; margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
.section { padding: 100px 0; position: relative; }

/* ---- Blobs decorativos — alternando lado e cor por seção ---- */
.section--soft { background: var(--cinza-bg); }

/* Base compartilhada ::before (dot grid) */
#servicos::before, #sobre::before, #beneficios::before,
#equipe::before, #depoimentos::before, #contato::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
}

/* Base compartilhada ::after (anel) */
#servicos::after, #sobre::after, #beneficios::after,
#equipe::after, #depoimentos::after, #contato::after {
  content: ''; position: absolute; pointer-events: none; z-index: 0;
  width: 420px; height: 420px; border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}

/* z-index do conteúdo */
#servicos > *, #sobre > *, #beneficios > *,
#equipe > *, #depoimentos > *, #contato > * { position: relative; z-index: 1; }

/* ESQUERDA LARANJA — Serviços, Benefícios, Depoimentos */
#servicos::before, #beneficios::before, #depoimentos::before {
  background:
    radial-gradient(ellipse 48% 70% at 0% 50%, rgba(232,76,27,.22) 0%, transparent 65%),
    radial-gradient(rgba(232,76,27,.06) 1.5px, transparent 1.5px);
  background-size: auto, 28px 28px;
}
#servicos::after, #beneficios::after, #depoimentos::after {
  left: -120px;
  border: 1.5px solid rgba(232,76,27,.18);
}

/* DIREITA AZUL — Sobre, Equipe, Contato */
#sobre::before, #equipe::before, #contato::before {
  background:
    radial-gradient(ellipse 48% 70% at 100% 50%, rgba(13,38,64,.18) 0%, transparent 65%),
    radial-gradient(rgba(13,38,64,.055) 1.5px, transparent 1.5px);
  background-size: auto, 28px 28px;
}
#sobre::after, #equipe::after, #contato::after {
  right: -120px;
  border: 1.5px solid rgba(13,38,64,.14);
}
.section--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-med) 100%); }

/* ---- Reveal Animations ---- */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
}
[data-delay="0"]   { transition-delay: 0ms; }
[data-delay="80"]  { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="160"] { transition-delay: 160ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="240"] { transition-delay: 240ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="320"] { transition-delay: 320ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="120"] { transition-delay: 120ms; }
[data-delay="480"] { transition-delay: 480ms; }
[data-reveal="fade-up"]    { transform: translateY(40px); }
[data-reveal="fade-down"]  { transform: translateY(-40px); }
[data-reveal="fade-left"]  { transform: translateX(50px); }
[data-reveal="fade-right"] { transform: translateX(-50px); }
[data-reveal="scale"]      { transform: scale(.92); }
[data-reveal].visible,
[data-reveal="fade-up"].visible,
[data-reveal="fade-down"].visible,
[data-reveal="fade-left"].visible,
[data-reveal="fade-right"].visible,
[data-reveal="scale"].visible { opacity: 1; transform: none; }

/* ---- Section Header ---- */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-head--white h2, .sec-head--white p { color: #fff; }
.sec-tag {
  display: inline-block;
  background: rgba(232,76,27,.12);
  color: var(--laranja);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.sec-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.sec-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px;
}
.sec-head p { font-size: 1.05rem; color: var(--cinza-txt); max-width: 560px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 700; font-size: .95rem;
  transition: var(--trans);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0; transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }
.btn--laranja {
  background: linear-gradient(135deg, var(--laranja), var(--laranja-esc));
  color: #fff;
  box-shadow: 0 6px 24px rgba(232,76,27,.38);
}
.btn--laranja:hover { box-shadow: 0 10px 36px rgba(232,76,27,.54); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff; border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn--white {
  background: #fff; color: var(--navy); font-weight: 800;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.btn--white:hover { box-shadow: 0 10px 36px rgba(0,0,0,.25); transform: translateY(-2px); }
.btn--ghost-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }
.spin { animation: spinAnim .8s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.3); transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--trans);
  padding: 0;
}
.header::before {
  content: ''; position: absolute; inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled::before {
  background: rgba(13,38,64,.92);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: rgba(255,255,255,.1);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: relative;
  max-width: 1440px; padding-left: 40px; padding-right: 40px;
}
.logo-img { height: 38px; width: auto; transition: var(--trans); }
.logo-link:hover .logo-img { transform: scale(1.03); }
.nav { display: flex; align-items: center; gap: 1px; }
.nav__link {
  padding: 7px 10px; border-radius: 8px;
  font-weight: 500; font-size: .82rem; color: rgba(255,255,255,.85);
  white-space: nowrap;
  transition: var(--trans-fast); position: relative;
}
.nav__sep { width: 1px; height: 18px; background: rgba(255,255,255,.2); margin: 0 6px; flex-shrink: 0; }
.nav__link::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--laranja);
  border-radius: 2px; transform: scaleX(0); transition: transform .25s;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
/* ===== TOPBAR ===== */
.topbar {
  max-height: 44px; overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(13,38,64,.55);
}
.header.topbar-collapsed .topbar { max-height: 0; opacity: 0; }
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px;
}
.topbar__links { display: flex; align-items: center; flex-wrap: nowrap; gap: 0; }
.topbar__link {
  display: flex; align-items: center; gap: 6px;
  padding: 0 20px; height: 44px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.7);
  text-decoration: none; white-space: nowrap;
  transition: color .2s, background .2s;
}
.topbar__link:hover { color: #fff; background: rgba(255,255,255,.05); }
.topbar__link:hover .topbar__arr { opacity: 1; transform: translateX(2px); }
.topbar__link svg:first-child { width: 13px; height: 13px; opacity: .65; flex-shrink: 0; }
.topbar__link em { font-style: normal; color: var(--laranja); font-weight: 600; }
.topbar__arr { width: 11px; height: 11px; opacity: 0; flex-shrink: 0; transition: opacity .2s, transform .2s; }
.topbar__sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.nav__mobile-only { display: none; }

.nav__cta {
  background: linear-gradient(135deg, var(--laranja), var(--laranja-esc));
  color: #fff; padding: 9px 20px; border-radius: 100px;
  font-weight: 700; font-size: .88rem; margin-left: 8px;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(232,76,27,.4);
}
.nav__cta:hover { box-shadow: 0 8px 28px rgba(232,76,27,.6); transform: translateY(-1px); }

/* ===== NAV DROPDOWN (Empresa) ===== */
.nav__item--has-dropdown { position: relative; display: flex; align-items: center; }
.nav__chevron { width: 13px; height: 13px; margin-left: 2px; flex-shrink: 0; transition: transform .25s; }
.nav__item--has-dropdown:hover .nav__chevron { transform: rotate(180deg); }

/* Ponte invisível que cobre o espaço entre o link e o dropdown */
.nav__item--has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: -16px; right: -16px;
  height: 16px; background: transparent;
}

.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18); min-width: 230px;
  padding: 8px; opacity: 0; pointer-events: none;
  /* delay ao fechar dá tempo de mover o mouse até o dropdown */
  transition: opacity .2s .12s, transform .2s .12s;
  z-index: 200; border-top: 3px solid var(--laranja);
}
.nav__dropdown::before {
  content: ''; position: absolute; top: -9px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent; border-top: 0;
  border-bottom-color: var(--laranja);
}
.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
  transition: opacity .15s 0s, transform .15s 0s; /* sem delay ao abrir */
}
.nav__dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  color: var(--azul); font-size: .87rem; font-weight: 600;
  text-decoration: none; transition: background .15s, color .15s;
}
.nav__dropdown-item:hover { background: #F4F7FA; color: var(--laranja); }
.nav__dropdown-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; justify-content: center; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: var(--trans); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  background: var(--navy);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg-photo {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  display: block; z-index: 0;
}
.hero__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to right,
    rgba(13,38,64,.92) 0%,
    rgba(13,38,64,.75) 55%,
    rgba(13,38,64,.40) 100%
  );
  z-index: 1;
}
.hero__particles { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; pointer-events: none; opacity: .10; z-index: 2; }

.hero__inner {
  display: flex; align-items: center;
  position: relative; z-index: 3; padding-top: 80px; padding-bottom: 80px;
  width: 100%;
}
.hero__content { max-width: 660px; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 24px;
  letter-spacing: .04em;
}
.chip__flag {
  width: 22px; height: 15px; border-radius: 2px; flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.chip__sep { opacity: .5; }
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--laranja);
  box-shadow: 0 0 0 3px rgba(232,76,27,.3);
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,76,27,.3); }
  50%       { box-shadow: 0 0 0 7px rgba(232,76,27,.1); }
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.15;
  color: #fff; margin-bottom: 24px;
}
.line { display: block; }
.line--static { color: rgba(255,255,255,.9); }
.line--dynamic {
  display: block; min-height: 1.2em;
  white-space: nowrap; overflow: hidden;
}
.line--typed {
  display: inline;
  background: linear-gradient(90deg, var(--laranja), var(--laranja-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.line--cursor {
  display: inline;
  color: var(--laranja); animation: blink .7s step-end infinite;
  font-weight: 300; font-size: .85em;
}
@keyframes blink { 50% { opacity: 0; } }
.hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  margin-bottom: 36px; max-width: 520px; line-height: 1.75;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; align-items: center; gap: 24px; }
.hstat { text-align: center; }
.hstat strong {
  font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1;
}
.hstat span { color: var(--laranja); font-size: 1.5rem; font-weight: 900; }
.hstat p { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 4px; font-weight: 500; }
.hstat__pre { margin-top: 0 !important; margin-bottom: 2px; }
.hstat--segmentos strong, .hstat--segmentos .hstat__val {
  font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; margin-top: 0;
}
.hstat--segmentos .hstat__pre {
  font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 500; white-space: nowrap;
}
.hstat__line { width: 1px; height: 48px; background: rgba(255,255,255,.2); }

.hero__float {
  position: absolute; background: rgba(255,255,255,.95);
  border-radius: var(--radius); padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); font-size: .82rem; font-weight: 600;
  color: var(--navy); white-space: nowrap;
  backdrop-filter: blur(10px);
}
.hero__float--1 { bottom: 12%; left: -12%; animation: floatCard1 5s ease-in-out infinite; }
.hero__float--2 { top: 16%; right: -8%; animation: floatCard2 7s ease-in-out infinite; }
.hero__float--1 img { height: 22px; }
.float__icon { font-size: 1.3rem; }
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(12px) rotate(-1deg); }
}
.hero__scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .75rem; animation: bounceHint 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; border-radius: 2px; background: rgba(255,255,255,.5);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel { 0%, 100% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(10px); opacity: 0; } }
@keyframes bounceHint { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== HERO — BANDEIRAS DECORATIVAS ===== */
.hero__flag {
  position: absolute; top: 0; height: 100%; width: 27%;
  z-index: 2; pointer-events: none; overflow: hidden;
}
.hero__flag img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 38% center;
  display: block; opacity: 0.52;
}
.hero__flag--br {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,.3) 75%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,.3) 75%, rgba(0,0,0,0) 100%);
}
.hero__flag--rs {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,.3) 75%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,.3) 75%, rgba(0,0,0,0) 100%);
}
.hero__flag--rs img { transform: scaleX(-1); }

/* ===== AUTORIDADE ROTATIVO ===== */
.aut-section {
  position: relative; height: 560px; overflow: hidden;
  background: var(--navy);
}
.aut-slider { position: relative; height: 100%; }
.aut-slide {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0; transition: opacity .9s ease;
  pointer-events: none;
}
.aut-slide.active { opacity: 1; pointer-events: auto; }
.aut-slide__photo {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.aut-slide__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to right,
    rgba(13,38,64,.92) 0%,
    rgba(13,38,64,.70) 50%,
    rgba(13,38,64,.35) 100%
  );
}
.aut-slide__inner {
  position: relative; z-index: 1;
  height: 100%; display: flex;
  flex-direction: column; justify-content: center;
  gap: 0;
}
.aut-tag {
  color: var(--laranja); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
  display: block;
}
.aut-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 18px; max-width: 600px;
}
.aut-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 500px;
}
.aut-controls {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 20px;
  z-index: 10;
}
.aut-prev, .aut-next {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; transition: var(--trans-fast);
}
.aut-prev:hover, .aut-next:hover {
  background: var(--laranja); border-color: var(--laranja);
}
.aut-prev svg, .aut-next svg { width: 16px; height: 16px; }
.aut-dots { display: flex; gap: 8px; align-items: center; }
.aut-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.35); border: none;
  cursor: pointer; transition: all .35s ease;
}
.aut-dot.active {
  width: 28px; background: var(--laranja);
}
@media (max-width: 768px) {
  .aut-section { height: 460px; }
  .aut-slide__overlay { background: rgba(13,38,64,.82); }
  .aut-slide__inner { text-align: center; align-items: center; }
  .aut-title { font-size: 1.8rem; }
  .aut-sub { font-size: .95rem; }
}

/* ===== BANNER MARKETING ===== */
.banner-mkt {
  position: relative; height: 460px; overflow: hidden;
}
.banner-mkt__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.banner-mkt__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(13,38,64,.90) 40%, rgba(13,38,64,.25) 100%);
  display: flex; align-items: center;
}
.banner-mkt__tag {
  color: var(--laranja); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
}
.banner-mkt__title {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 28px;
}
@media (max-width: 768px) {
  .banner-mkt { height: 320px; }
  .banner-mkt__overlay { background: rgba(13,38,64,.82); justify-content: center; text-align: center; }
  .banner-mkt__title { font-size: 1.6rem; }
  .aut-section { height: 480px; }
  .aut-slider { height: 480px; }
  .aut-slide__inner { padding-top: 0; padding-bottom: 0; }
  .aut-prev, .aut-next { width: 44px; height: 44px; }
}

/* ===== DUAL CTA ===== */
.dual { padding: 0; position: relative; z-index: 2; }
.dual__grid { display: grid; grid-template-columns: 1fr 1fr; }
.dual__card {
  position: relative; overflow: hidden;
  padding: 64px 56px; display: block;
  cursor: pointer; transition: var(--trans);
  border-radius: 0;
}
.dual__card--c { background: linear-gradient(135deg, var(--navy), var(--navy-med)); }
.dual__card--e { background: linear-gradient(135deg, var(--laranja-esc), var(--laranja)); }
.dual__card-inner { position: relative; z-index: 1; }
.dual__icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.12); display: flex;
  align-items: center; justify-content: center; margin-bottom: 24px;
  overflow: hidden; transition: var(--trans);
}
.dual__icon img { width: 100%; height: 100%; object-fit: cover; }
.dual__card:hover .dual__icon { transform: scale(1.1) rotate(5deg); }
.dual__text h3 { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.dual__text p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 24px; }
.dual__action {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: .95rem;
  border-bottom: 2px solid rgba(255,255,255,.35); padding-bottom: 4px;
  transition: var(--trans);
}
.dual__action svg { width: 16px; transition: transform .25s; }
.dual__card:hover .dual__action { border-color: #fff; }
.dual__card:hover .dual__action svg { transform: translateX(6px); }
.dual__ripple {
  position: absolute; border-radius: 50%;
  width: 80px; height: 80px;
  pointer-events: none; transform: translate(-50%, -50%) scale(0);
  animation: dualWave .7s ease-out forwards;
}
.dual__card--c .dual__ripple { background: rgba(255,255,255,.14); }
.dual__card--e .dual__ripple { background: rgba(255,255,255,.18); }
@keyframes dualWave {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(25); opacity: 0; }
}

/* ===== SERVICOS / TABS ===== */
.tabs__mob-acc { display: none; }
.tabs__nav {
  display: flex; align-items: center; gap: 4px;
  background: var(--navy); border-radius: var(--radius);
  padding: 6px; margin-bottom: 48px; position: relative;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(13,38,64,.25);
}
.tab-btn {
  flex: 1; min-width: 140px; text-align: center;
  padding: 13px 20px; border-radius: calc(var(--radius) - 4px);
  font-weight: 600; font-size: .88rem; color: rgba(255,255,255,.55);
  transition: var(--trans); position: relative; z-index: 1;
  white-space: nowrap;
}
.tab-btn:hover { color: rgba(255,255,255,.85); }
.tab-btn.active { color: #fff; font-weight: 800; }
.tab-indicator {
  position: absolute; height: calc(100% - 12px); top: 6px;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-lt));
  border-radius: calc(var(--radius) - 4px);
  box-shadow: 0 4px 20px rgba(232,76,27,.5);
  transition: left .3s cubic-bezier(.45,.05,.15,1), width .3s cubic-bezier(.45,.05,.15,1);
  pointer-events: none;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabIn .4s cubic-bezier(.25,.8,.25,1); }
@keyframes tabIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.tab-panel__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.tab-panel__img, .tab-panel__text { min-width: 0; }
.tab-panel__img {
  display: flex; justify-content: center; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  height: 380px;
  box-shadow: 0 24px 64px rgba(13,38,64,.12), 0 0 0 1px rgba(13,38,64,.07);
}
.tab-panel__img::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,76,27,.18) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.tab-panel__img::after {
  content: '';
  position: absolute; inset: -2px; border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(232,76,27,.4) 0%, rgba(13,38,64,.15) 50%, rgba(232,76,27,.2) 100%);
  z-index: -1;
}
.tab-panel__img img, .tab-panel__img video { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 0; }
.tab-panel__img video { object-fit: contain; background: var(--navy); }
.tab-panel__text h3 {
  font-size: 1.7rem; font-weight: 800; margin-bottom: 16px; color: var(--navy);
  padding-left: 16px;
  border-left: 4px solid var(--laranja);
}
.tab-panel__text p  { color: var(--cinza-txt); margin-bottom: 24px; line-height: 1.75; }
.tab-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
.tab-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: .9rem; color: var(--navy-med);
  padding: 8px 12px; border-radius: 8px;
  background: #F8FAFC; border: 1px solid #EBF0F7;
  transition: background .2s, border-color .2s, transform .2s;
}
.tab-list li:hover { background: #FEF3EE; border-color: rgba(232,76,27,.25); transform: translateX(4px); }
.tab-list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-lt));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== SOBRE ===== */
.sobre__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

/* Visual card — depoimento Google em destaque */
.sobre__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, #0e1f35 55%, var(--navy-med) 100%);
  min-height: 440px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  animation: floatImg 7s ease-in-out infinite;
  will-change: transform;
}
.sobre__visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sobre__visual::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,76,27,.2) 0%, transparent 65%);
  pointer-events: none;
}
.svis__top {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.svis__g-icon { width: 34px; height: 34px; flex-shrink: 0; }
.svis__stars {
  font-size: 1.25rem; letter-spacing: 3px; line-height: 1;
  background: linear-gradient(90deg, #FBBC05 0%, #FFD966 40%, #FBBC05 60%, #FFD966 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerStars 3s linear infinite;
}
@keyframes shimmerStars {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.svis__quote {
  position: relative; z-index: 1;
  flex: 1;
}
.svis__quote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, serif;
  font-size: 5.5rem; line-height: .65;
  color: var(--laranja); opacity: .3;
  margin-bottom: 4px;
}
.svis__quote p {
  font-size: 1.05rem; color: rgba(255,255,255,.88);
  line-height: 1.75; font-style: italic;
}
.svis__author {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.svis__avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-esc));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.1rem;
}
.svis__author strong { display: block; color: #fff; font-size: .93rem; font-weight: 700; }
.svis__author span { display: block; font-size: .73rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.svis__footer {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 16px;
}
.svis__footer img { height: 18px; }
.svis__footer span { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 500; }
.sobre__right { padding-right: 16px; }
.sobre__right h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; margin: 16px 0 20px; }
.sobre__right p { color: var(--cinza-txt); line-height: 1.8; margin-bottom: 16px; }

.mvv-tabs { margin: 32px 0; }
.mvv-tabs__nav {
  display: flex; gap: 0; margin-bottom: 0;
  border-bottom: 2px solid var(--cinza-borda);
}
.mvv-btn {
  padding: 10px 20px; font-weight: 600; font-size: .88rem;
  color: var(--cinza-txt); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--trans);
}
.mvv-btn.active { color: var(--laranja); border-color: var(--laranja); }
.mvv-tabs__body { padding: 20px 0; }
.mvv-panel { display: none; font-size: .95rem; color: var(--cinza-txt); line-height: 1.8; }
.mvv-panel.active { display: block; animation: tabIn .3s ease; }
.valores-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.valores-chips span {
  background: rgba(232,76,27,.1); color: var(--laranja);
  padding: 6px 14px; border-radius: 100px; font-size: .82rem; font-weight: 700;
}

.sobre__counters { display: flex; gap: 32px; margin-top: 32px; }
.scounter {
  text-align: center;
  padding: 20px 24px; background: var(--cinza-soft);
  border-radius: var(--radius); flex: 1;
}
.scounter strong {
  font-size: 2.2rem; font-weight: 900; color: var(--navy); display: block; line-height: 1;
}
.scounter sup { color: var(--laranja); font-size: 1.3rem; }
.scounter span { font-size: .75rem; color: var(--cinza-txt); font-weight: 500; margin-top: 4px; display: block; }
.scounter__pre { margin-top: 0 !important; margin-bottom: 2px; }

/* ===== BENEFÍCIOS ===== */
.ben__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px;
}
.ben__col {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--cinza-borda);
  background: var(--white);
  transition: var(--trans);
}
.ben__col:hover {
  border-color: var(--laranja);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ben__col-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 2px solid var(--cinza-soft);
}
.ben__col-icon {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cinza-borda);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ben__col-icon img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ben__col-icon--pulse::before,
.ben__col-icon--pulse::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--laranja);
  opacity: 0;
  animation: iconPulse 2.8s ease-out infinite;
}
.ben__col-icon--pulse::after { animation-delay: 1.4s; }
@keyframes iconPulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.ben__col h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.ben__list { display: flex; flex-direction: column; gap: 12px; }
.ben__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .9rem; color: var(--cinza-txt); line-height: 1.6;
}
.ben__list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px; min-width: 22px;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-esc));
  color: #fff; font-size: .7rem; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ===== VANTAGENS ===== */
.vant__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.vant-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: var(--trans); text-align: center;
  cursor: default;
}
.vant-card:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.vant-card__icon { width: 64px; height: 64px; margin: 0 auto 20px; }
.vant-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.vant-card h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 12px; }
.vant-card p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.65; }

/* ===== EQUIPE / FLIP CARDS ===== */
.team__grid {
  display: grid; grid-template-columns: repeat(2, 380px); gap: 40px;
  justify-content: center;
}
.flip-card { height: 430px; perspective: 1200px; cursor: pointer; }
.flip-card__inner {
  width: 100%; height: 100%;
  transition: transform .7s cubic-bezier(.68,-.2,.27,1.1);
  transform-style: preserve-3d; position: relative;
}
.flip-card:hover .flip-card__inner { transform: rotateY(180deg); }
.flip-card__front, .flip-card__back {
  position: absolute; inset: 0;
  backface-visibility: hidden; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  align-items: center; padding: 28px 32px;
}
.flip-card__front {
  background: #fff; box-shadow: var(--shadow-lg);
  text-align: center; justify-content: center; gap: 10px;
}
.flip-card__back {
  background: linear-gradient(145deg, var(--navy), var(--navy-med));
  transform: rotateY(180deg); text-align: center;
  justify-content: center; gap: 8px;
  padding: 20px 26px;
}
.flip-card__photo {
  width: 130px; height: 130px; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--cinza-soft); margin-bottom: 4px;
  box-shadow: 0 8px 32px rgba(232,76,27,.25);
}
.flip-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.flip-card__front h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.flip-card__front span { font-size: .85rem; font-weight: 600; color: var(--laranja); text-transform: uppercase; letter-spacing: .06em; }
.flip-hint { font-size: .78rem; color: var(--cinza-txt); }
.flip-back__logo img { height: 26px; margin-bottom: 0; }
.flip-card__back h3 { color: #fff; font-size: 1.2rem; font-weight: 800; }
.flip-card__back > span { color: var(--laranja-lt); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.flip-card__back p { color: rgba(255,255,255,.75); font-size: .78rem; line-height: 1.55; }
.flip-back__badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.flip-back__badges span {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  padding: 4px 12px; border-radius: 100px; font-size: .78rem; font-weight: 600;
}

/* ===== DEPOIMENTOS ===== */
/* Google badge */
.dep__google-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 12px;
}
.dep__stars-img { height: 28px; }
.dep__google-badge span { font-size: .82rem; color: var(--cinza-txt); font-weight: 600; }
.dep__google-badge .dep__rating-num {
  font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1;
}

/* Loading state */
.dep__loading {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 48px 24px; color: var(--cinza-txt); font-size: .9rem;
  width: 100%;
}
.dep__spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid var(--cinza-borda); border-top-color: var(--laranja);
  animation: spinAnim .7s linear infinite; flex-shrink: 0;
}

/* Ver mais link */
.dep__ver-mais { text-align: center; margin-top: 28px; }
.dep__google-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 700; color: var(--navy-med);
  border: 2px solid var(--cinza-borda); padding: 10px 22px;
  border-radius: 100px; transition: var(--trans);
}
.dep__google-link:hover {
  border-color: var(--navy); color: var(--navy);
  box-shadow: var(--shadow-sm); transform: translateY(-2px);
}

/* Author photo */
.dep__avatar-img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.dep__slider {
  position: relative;
  /* overflow: clip nos DOIS eixos — só assim o navegador respeita o
     overflow-clip-margin. A margem de 44px deixa a sombra correr livre
     (vertical p/ o hover, horizontal p/ os lados) sem revelar o card
     vizinho, pois o vão entre cards (51px) é maior que a margem. */
  overflow: clip;
  /* 34px: cobre a sombra (compacta) do card visível sem alcançar a sombra do
     vizinho, que só começa em 60(vão)−22(blur) = 38px. Zona limpa entre as duas. */
  overflow-clip-margin: 34px;
}
.dep__track {
  display: flex; gap: 60px;
  transition: transform .5s cubic-bezier(.45,.05,.15,1);
}
.dep__card {
  min-width: 344px; max-width: 344px; flex-shrink: 0;
  background: #fff; border-radius: var(--radius-lg);
  /* sombra compacta (blur 20) p/ caber no vão sem a sombra do vizinho vazar */
  padding: 32px; box-shadow: 0 8px 20px rgba(13,38,64,.10);
  border: 1px solid var(--cinza-borda);
  display: flex; flex-direction: column;
  transition: var(--trans);
}
/* sombra do hover também compacta (blur 22) p/ caber nos 34px e não vazar p/ o vizinho */
.dep__card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(13,38,64,.16); }
.dep__quote {
  font-size: 3.5rem; line-height: 0.75;
  color: var(--laranja); font-family: Georgia, serif;
  opacity: .5; display: block; margin-bottom: 10px;
  user-select: none;
}
.dep__card p {
  font-size: .93rem; color: var(--cinza-txt);
  line-height: 1.75; flex: 1;
}
.dep__autor {
  display: flex; align-items: center; gap: 12px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--cinza-borda);
}
.dep__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  color: #fff; font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dep__autor > div:nth-child(2) { flex: 1; }
.dep__autor strong { display: block; font-size: .88rem; color: var(--navy); }
.dep__autor span   { font-size: .78rem; color: var(--cinza-txt); }
.dep__rating { color: #FFC107; font-size: .85rem; margin-left: auto; }
.dep__controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 36px;
}
.dep__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--cinza-borda);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); color: var(--navy);
}
.dep__arrow svg { width: 18px; height: 18px; }
.dep__arrow:hover { background: var(--laranja); border-color: var(--laranja); color: #fff; transform: scale(1.08); }
.dep__dots { display: flex; gap: 8px; }
.dep__dot {
  width: 8px; height: 8px; border-radius: 100px; background: var(--cinza-borda);
  transition: var(--trans); cursor: pointer;
}
.dep__dot.active { width: 24px; background: var(--laranja); }

/* ===== BANNER CTA ===== */
.banner-cta {
  position: relative; padding: 100px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--laranja-esc), var(--laranja));
}
.banner-cta__animated-bg {
  position: absolute; left: 0; right: 0; top: 0;
  height: 200%;
  background-image:
    url('../img/logo-branco.png'),
    url('../img/logo-branco.png'),
    url('../img/logo-branco.png'),
    url('../img/logo-branco.png'),
    url('../img/logo-branco.png'),
    url('../img/logo-branco.png'),
    url('../img/logo-branco.png'),
    url('../img/logo-branco.png');
  background-size: 180px auto;
  background-repeat: no-repeat;
  background-position:
    6%  30px,  62% 100px,  30% 200px,  82% 280px,
    6% 380px,  62% 450px,  30% 550px,  82% 630px;
  opacity: .09;
  animation: bgScroll 22s linear infinite;
}
@keyframes bgScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.banner-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; z-index: 1;
}
.banner-cta__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  color: #fff; margin-bottom: 12px;
}
.banner-cta__text p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.banner-cta__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTATO ===== */
.contato__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.contato__info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin: 16px 0 20px; }
.contato__info > p { color: var(--cinza-txt); margin-bottom: 32px; }
.cinfo__items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.cinfo__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 18px; border-radius: var(--radius);
  background: var(--cinza-soft); border: 1px solid var(--cinza-borda);
  transition: var(--trans);
}
a.cinfo__item:hover { background: #fff; border-color: var(--laranja); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.cinfo__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #fff;
}
.cinfo__icon svg { width: 18px; height: 18px; }
.cinfo__icon--green  { background: #25D366; }
.cinfo__icon--navy   { background: var(--navy); }
.cinfo__icon--laranja { background: var(--laranja); }
.cinfo__icon--gray   { background: var(--cinza-txt); }
.cinfo__item strong { display: block; font-size: .85rem; color: var(--cinza-txt); margin-bottom: 2px; }
.cinfo__item span, .cinfo__item p { font-size: .9rem; font-weight: 600; color: var(--navy); line-height: 1.5; }
.cinfo__social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.csocial-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 12px;
  background: var(--cinza-soft); border: 1.5px solid var(--cinza-borda);
  color: var(--navy); font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: var(--trans); white-space: nowrap;
}
.csocial-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.csocial-btn--ig  { background: #fce4ec; border-color: #f06292; color: #c2185b; }
.csocial-btn--fb  { background: #e3f0ff; border-color: #90b8f8; color: #1565c0; }
.csocial-btn--li  { background: #e1eefa; border-color: #78acd9; color: #0a66c2; }
.csocial-btn--ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(220,39,67,.3); }
.csocial-btn--fb:hover { background: #1877f2; color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(24,119,242,.3); }
.csocial-btn--li:hover { background: #0a66c2; color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(10,102,194,.3); }

/* Floating label form */
.contato__form-wrap {
  background: #fff; border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--cinza-borda);
  display: flex; flex-direction: column; gap: 0;
}
.form-float { display: flex; flex-direction: column; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.float-group {
  position: relative; margin-bottom: 20px;
}
.float-group:last-child { margin-bottom: 0; }
.float-group input,
.float-group textarea,
.float-group select {
  width: 100%; padding: 22px 16px 8px;
  border: 2px solid var(--cinza-borda); border-radius: var(--radius-sm);
  font: inherit; font-size: .95rem; color: var(--navy);
  background: #fff; outline: none; transition: border-color .25s, box-shadow .25s;
  appearance: none;
}
.float-group textarea { resize: vertical; min-height: 100px; }
.float-group label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--cinza-txt); font-size: .95rem; pointer-events: none;
  transition: all .2s cubic-bezier(.25,.8,.25,1);
  padding: 0 2px;
}
.float-group textarea ~ label { top: 22px; transform: none; }
.float-group input:focus,
.float-group textarea:focus,
.float-group select:focus {
  border-color: var(--laranja);
  box-shadow: 0 0 0 4px rgba(232,76,27,.12);
}
.float-group input:focus ~ label,
.float-group input:not(:placeholder-shown) ~ label,
.float-group textarea:focus ~ label,
.float-group textarea:not(:placeholder-shown) ~ label {
  top: 10px; transform: none; font-size: .72rem; font-weight: 700;
  color: var(--laranja); letter-spacing: .03em;
}
.float-group select ~ label { top: 10px; transform: none; font-size: .72rem; font-weight: 700; color: var(--laranja); letter-spacing: .03em; }
.float-group input.error,
.float-group textarea.error,
.float-group select.error { border-color: #E74C3C; box-shadow: 0 0 0 4px rgba(231,76,60,.1); }
.form__feedback {
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; text-align: center;
}
.form__feedback.ok { background: rgba(39,174,96,.1); color: #27AE60; border: 1px solid rgba(39,174,96,.2); }
.form__feedback.err { background: rgba(231,76,60,.1); color: #E74C3C; border: 1px solid rgba(231,76,60,.2); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer__top { padding: 72px 0 48px; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
}
.footer__logo { height: 36px; margin-bottom: 20px; }
.footer__brand p { font-size: .88rem; line-height: 1.8; }
.footer__social { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.footer__social a {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 700;
  text-decoration: none; transition: var(--trans); white-space: nowrap;
}
.footer__social a svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer__social a:hover { background: var(--laranja); border-color: var(--laranja); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(232,76,27,.4); }
.footer__col h5 { color: #fff; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.footer__col a, .footer__col p {
  display: block; font-size: .88rem; color: rgba(255,255,255,.6);
  margin-bottom: 10px; line-height: 1.6; transition: var(--trans-fast);
}
.footer__col a:hover { color: #fff; padding-left: 6px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
}
.footer__bottom__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: .9rem; color: rgba(255,255,255,.5); }
.footer__credit {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.45);
  text-decoration: none; transition: opacity .2s;
}
.footer__credit:hover { opacity: .8; }
.footer__credit span { white-space: nowrap; }
.footer__credit img { height: 28px; width: auto; transition: opacity .2s; }
.footer__credit:hover img { opacity: 1; }

/* ===== WhatsApp Float ===== */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: var(--trans);
}
.wpp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.65); }
.wpp-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: wppPulse 2s infinite;
}
@keyframes wppPulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ===== WPP PANEL (seção contato) ===== */
.wpp-panel {
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 32px rgba(13,38,64,.10);
  border: 1px solid rgba(13,38,64,.07);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 20px;
}
.wpp-panel__head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 20px; border-bottom: 1.5px solid #F0F4F8;
}
.wpp-panel__icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: #25D366; display: flex; align-items: center; justify-content: center;
}
.wpp-panel__icon-wrap svg { width: 28px; height: 28px; color: #fff; }
.wpp-panel__head h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.wpp-panel__head p { font-size: .8rem; color: var(--cinza-txt); }
.wpp-cards { display: flex; flex-direction: column; gap: 10px; }
.wpp-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: 12px;
  border: 1.5px solid #E8EEF5; background: #F8FAFC;
  transition: border-color .2s, background .2s, transform .2s;
}
.wpp-card:hover {
  border-color: #25D366; background: #F0FBF4;
  transform: translateX(4px);
}
.wpp-card__left { display: flex; flex-direction: column; gap: 2px; }
.wpp-card__label { font-size: .78rem; font-weight: 700; color: var(--cinza-txt); text-transform: uppercase; letter-spacing: .05em; }
.wpp-card__num { font-size: 1rem; font-weight: 700; color: var(--navy); }
.wpp-card__arr { width: 18px; height: 18px; color: #25D366; flex-shrink: 0; }
.wpp-group-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: 16px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.wpp-group-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.45); color: #fff; }
.wpp-group-btn__icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
}
.wpp-group-btn__icon svg { width: 26px; height: 26px; }
.wpp-group-btn__text { flex: 1; }
.wpp-group-btn__text strong { display: block; font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.wpp-group-btn__text span { font-size: .82rem; opacity: .85; }
.wpp-group-btn__arr { width: 20px; height: 20px; flex-shrink: 0; opacity: .8; }

/* ===== CANDIDATO / EMPRESA PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-med));
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,76,27,.2), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label-tag {
  display: inline-block; background: rgba(232,76,27,.2);
  color: var(--laranja-lt); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }
/* ===== FORM HERO (empresa / vaga / candidato) ===== */
.form-hero {
  background: linear-gradient(135deg, #0A1E33 0%, #0D2640 45%, #1A3A5C 100%);
  padding: 120px 0 56px; position: relative; overflow: hidden; text-align: center;
}
.form-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(232,76,27,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,58,92,.6) 0%, transparent 60%);
  pointer-events: none;
}
.form-hero__dots {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.form-hero__inner { position: relative; z-index: 1; }
.form-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,76,27,.15); border: 1px solid rgba(232,76,27,.35);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 22px;
  font-size: .78rem; font-weight: 700; color: #FF8060;
  text-transform: uppercase; letter-spacing: .07em;
}
.form-hero__tag-dot { width: 7px; height: 7px; background: #E84C1B; border-radius: 50%; }
.form-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; color: #fff;
  margin-bottom: 14px; line-height: 1.15;
}
.form-hero h1 em { color: #E84C1B; font-style: normal; }
.form-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
  max-width: 500px; margin: 0 auto 0;
}
.form-hero__bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, #E84C1B 50%, transparent 100%);
}

/* ===== FORM PAGE ===== */
.form-page { padding: 64px 0 120px; background: #F4F7FB; }
.form-page__inner { max-width: 800px; margin: 0 auto; }
.form-page__inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.form-page__inner > p { color: var(--cinza-txt); margin-bottom: 36px; }
.form-card {
  background: #fff; border-radius: var(--radius-xl);
  padding: 40px; box-shadow: 0 4px 32px rgba(13,38,64,.09);
  border: 1px solid rgba(13,38,64,.07);
}
.form__secao {
  font-size: .74rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .09em;
  margin: 32px -40px 20px; padding: 9px 40px;
  background: linear-gradient(90deg, #0D2640, #1A3A5C);
  border-left: 4px solid #E84C1B;
}
.form__secao:first-of-type { margin-top: 4px; }
.form__linha { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__grupo { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form__grupo label { font-size: .82rem; font-weight: 700; color: var(--cinza-txt); text-transform: uppercase; letter-spacing: .04em; }
.form__grupo input,
.form__grupo select,
.form__grupo textarea {
  padding: 14px 16px; border: 2px solid var(--cinza-borda);
  border-radius: var(--radius-sm); font: inherit; font-size: .95rem;
  color: var(--navy); background: #fff; outline: none;
  transition: border-color .25s, box-shadow .25s; appearance: none;
}
.form__grupo input:focus,
.form__grupo select:focus,
.form__grupo textarea:focus {
  border-color: var(--laranja); box-shadow: 0 0 0 4px rgba(232,76,27,.12);
}
.form__grupo input.error,
.form__grupo select.error,
.form__grupo textarea.error { border-color: #E74C3C; }
.form__grupo textarea { resize: vertical; min-height: 110px; }
.form-section-title {
  font-size: 1.2rem; font-weight: 800; color: var(--navy);
  margin: 32px 0 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--cinza-borda);
}
.check__grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.check__item {
  display: flex; align-items: center; gap: 8px;
  background: #F8FAFC; border: 1.5px solid #E2E8F0;
  border-radius: 8px; padding: 9px 14px; cursor: pointer;
  font-size: .87rem; font-weight: 500; color: #0D2640;
  transition: border-color .15s, background .15s;
}
.check__item input { accent-color: #E84C1B; width: 16px; height: 16px; cursor: pointer; }
.check__item:has(input:checked) { background: #FEF0EB; border-color: #E84C1B; color: #E84C1B; }

.btn--outline-laranja {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px;
  border: 2px solid var(--laranja); color: var(--laranja);
  font-weight: 700; transition: var(--trans);
}
.btn--outline-laranja:hover { background: var(--laranja); color: #fff; }

/* ===== TILT CARDS ===== */
.tilt-card { transform-style: preserve-3d; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .vant__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 960px) {
  .hero__inner { text-align: center; padding-top: 100px; padding-bottom: 60px; }
  .hero__content { max-width: 100%; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hstat__line { display: none; }
  .hero__sub { margin: 0 auto 36px; }
  .hero__chip { display: inline-flex; }
  .hero__overlay { background: rgba(13,38,64,.82); }
  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre__visual { display: none; }
  .sobre__right { padding-right: 0; }
  .ben__grid { grid-template-columns: 1fr; }
  .sobre__counters { gap: 16px; }
  .contato__grid { grid-template-columns: 1fr; gap: 48px; }
  .wpp-panel { padding: 24px 20px; }
  .wpp-group-btn { gap: 12px; }
  .wpp-group-btn__text span { display: none; }
  .tab-panel__inner { grid-template-columns: 1fr; gap: 32px; }
  .tab-panel__img { display: none; }
  .tab-panel[data-panel="2"] .tab-panel__img { display: flex; height: auto; aspect-ratio: 16/9; }
  .team__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .banner-cta__inner { flex-direction: column; text-align: center; }
  .banner-cta__btns { justify-content: center; }
}

@media (max-width: 768px) {
  /* Nav drawer */
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(13,38,64,.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px 20px 40px;
    gap: 6px; transform: translateY(-120%);
    transition: transform .4s cubic-bezier(.45,.05,.15,1);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { text-align: center; padding: 14px 20px; width: 100%; font-size: 1.05rem; border-radius: 12px; white-space: normal; }
  .nav__link:hover { background: rgba(255,255,255,.07); }
  .nav__cta { text-align: center; width: 100%; margin-left: 0; padding: 14px 20px; border-radius: 100px; }
  .hamburger { display: flex; }
  .nav__sep { display: none; }

  /* Dual */
  .dual__grid { grid-template-columns: 1fr; }
  .dual__card { padding: 40px 28px; }

  /* Tabs desktop — oculta no mobile */
  .tabs__nav { display: none; }
  .tabs__content { display: none; }
  /* Accordion mobile de serviços */
  .tabs__mob-acc { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
  .tabs__mob-item { border-radius: 12px; overflow: hidden; border: 1px solid var(--cinza-borda); background: #fff; box-shadow: 0 2px 8px rgba(13,38,64,.06); }
  .tabs__mob-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 14px 16px; cursor: pointer; background: none;
    font-weight: 700; font-size: .9rem; color: var(--navy); text-align: left; line-height: 1.3;
    transition: color .2s;
  }
  .tabs__mob-btn svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--cinza-txt); transition: transform .3s, color .2s; }
  .tabs__mob-item.open .tabs__mob-btn { color: var(--laranja); }
  .tabs__mob-item.open .tabs__mob-btn svg { transform: rotate(180deg); color: var(--laranja); }
  .tabs__mob-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .tabs__mob-item.open .tabs__mob-body { max-height: 3000px; }
  .tabs__mob-video { display: flex; height: auto; aspect-ratio: 16/9; margin: 16px 16px 4px; }
  .tabs__mob-body .tab-panel__text { padding: 0 16px 20px; }
  .tabs__mob-body .tab-panel__text p { font-size: .86rem; margin-bottom: 14px; }
  .tabs__mob-body .tab-list { margin-bottom: 16px; }
  .tabs__mob-body .tab-list li { font-size: .83rem; padding: 8px 12px; }
  /* Bandeiras mobile — cantos, radial gradient saindo de cada canto */
  .hero__flag { display: block; width: 44%; height: 38%; }
  .hero__flag img { opacity: 0.6; object-position: center center; }
  .hero__flag--br {
    top: 0; bottom: auto; left: 0;
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at top left, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(ellipse 100% 100% at top left, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 75%);
  }
  .hero__flag--rs {
    top: auto; bottom: 0; right: 0;
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at bottom right, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(ellipse 100% 100% at bottom right, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 75%);
  }

  /* Vantagens */
  .vant__grid { grid-template-columns: 1fr 1fr; }

  /* Forms */
  .form__linha { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .form__secao { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .form-hero { padding: 100px 0 44px; }
  .form-hero h1 { font-size: 1.7rem; }
  .check__grid { gap: 8px; }
  .check__item { font-size: .82rem; padding: 8px 12px; }

  /* Depoimentos */
  .dep__card { min-width: calc(100vw - 48px); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre__counters { flex-direction: column; }
  .ben__col { padding: 24px; }

  /* Flip cards — tap to flip on mobile */
  .flip-card { height: auto; perspective: none; }
  .flip-card__inner { position: static; transform: none !important; display: flex; flex-direction: column; gap: 16px; }
  .flip-card__front, .flip-card__back {
    position: static; transform: none !important; backface-visibility: visible;
    border-radius: var(--radius-lg);
  }
  .flip-card__back { transform: none !important; }
  .flip-hint { display: none; }

  /* Anéis decorativos são grandes demais em telas pequenas */
  #servicos::after, #sobre::after, #beneficios::after,
  #equipe::after, #depoimentos::after, #contato::after { display: none; }

  /* Section padding */
  .section { padding: 72px 0; }
  .sec-head { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 60px 0; }
  .sec-head { margin-bottom: 32px; }
  .sec-head h2 { font-size: 1.7rem; }
  .hero { height: 100svh; min-height: 100svh; }
  /* Reduce hero inner padding so all content fits in 100svh */
  .hero__inner { padding-top: 80px; padding-bottom: 32px; }
  /* Chip: smaller + wrap into 2 clean rows (flag + text each), hide stray separator */
  .hero__chip { font-size: .68rem; padding: 7px 12px; gap: 3px 5px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
  .chip__flag { width: 16px; height: 11px; }
  .chip__sep { display: none; }
  .hero__title { font-size: 1.9rem; margin-bottom: 14px; }
  .hero__sub { font-size: .9rem; margin-bottom: 18px; max-width: 100%; }
  .hero__btns { flex-direction: column; align-items: center; margin-bottom: 22px; }
  .hero__btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  /* Stats: 3-column grid so all 3 always visible in one row */
  .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; align-items: start; }
  .hstat strong { font-size: 1.45rem; }
  .hstat span { font-size: 1.1rem; }
  .hstat p { font-size: .6rem; }
  .hstat--segmentos strong, .hstat--segmentos .hstat__val { font-size: 1.45rem; }
  .hstat--segmentos .hstat__pre { font-size: .55rem; white-space: normal; }
  .vant__grid { grid-template-columns: 1fr; }
  .dual__card { padding: 32px 20px; }
  .dual__text h3 { font-size: 1.5rem; }
  .contato__form-wrap { padding: 24px 20px; }
  .form-card { padding: 24px 20px; }
  .banner-cta { padding: 72px 0; }
  .banner-cta__text h2 { font-size: 1.6rem; }
  .banner-cta__btns { flex-direction: column; align-items: center; }
  .banner-cta__btns .btn { width: 100%; max-width: 260px; justify-content: center; }
  .dep__card { padding: 28px 24px; }
  .dep__controls { gap: 12px; }
  .hero__scroll-hint { display: none; }
  .wpp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .wpp-float svg { width: 26px; height: 26px; }
  .sobre__counters { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .sobre__counters .scounter:nth-child(odd):last-child { grid-column: span 2; }
  .footer__grid { gap: 28px; }
  .mvv-btn { padding: 10px 14px; font-size: .82rem; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 1.8rem; }
  .form-page { padding: 56px 0 80px; }

  /* Redes sociais — 2 colunas no mobile */
  .cinfo__social { gap: 8px; }
  .csocial-btn { flex: 1 1 calc(50% - 4px); justify-content: center; padding: 10px 12px; font-size: .78rem; }
  .footer__social { gap: 8px; }
  .footer__social a { flex: 1 1 calc(50% - 4px); justify-content: center; font-size: .74rem; }
}

/* ===== SERVICE ACCORDION — Gestão de Pessoas ===== */
.service-accordion {
  position: relative;
  margin-bottom: 28px;
}

/* lista */
.sacc-list {
  display: flex; flex-direction: column; gap: 6px;
  transition: opacity .25s ease;
}
.sacc-list.sacc-hidden {
  opacity: 0; pointer-events: none;
}

/* item */
.sacc-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  transition:
    transform .28s cubic-bezier(.25,.8,.25,1),
    filter    .28s ease,
    opacity   .22s ease,
    border-color .2s,
    box-shadow   .2s;
  will-change: transform, filter, opacity;
}
/* item selecionado: zoom leve + destaque laranja */
.sacc-item--highlight {
  transform: scale(1.025);
  border-color: rgba(232,76,27,.5) !important;
  box-shadow: 0 6px 24px rgba(232,76,27,.18) !important;
  position: relative; z-index: 2;
}
/* itens não selecionados: encolhe + blur + some */
.sacc-item--out {
  transform: scale(0.88);
  filter: blur(4px);
  opacity: 0;
  pointer-events: none;
}
.sacc-btn {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 11px 16px;
  font-weight: 600; font-size: .875rem;
  color: var(--navy); background: #F8FAFC;
  text-align: left;
  transition: background .2s, color .2s;
}
.sacc-btn::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-lt));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.sacc-btn span { flex: 1; }
.sacc-btn:hover { background: #FEF3EE; color: var(--laranja); }
.sacc-item--highlight .sacc-btn { background: #FEF3EE; color: var(--laranja); }
.sacc-chevron {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--cinza-txt); transition: color .2s;
}
.sacc-btn:hover .sacc-chevron,
.sacc-item--highlight .sacc-chevron { color: var(--laranja); }

/* painel de detalhe — absolute sobre a lista, não muda altura */
.sacc-detail {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid rgba(232,76,27,.25);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(232,76,27,.12);
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(.98);
  transition: opacity .3s ease, transform .3s cubic-bezier(.25,.8,.25,1);
}
.sacc-detail.sacc-detail--visible {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.sacc-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; color: var(--laranja);
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 16px;
  transition: opacity .2s;
}
.sacc-back:hover { opacity: .75; }
.sacc-detail__title {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  padding-left: 12px; border-left: 3px solid var(--laranja);
  margin-bottom: 12px; line-height: 1.35;
}
.sacc-detail__text {
  font-size: .9rem; color: var(--cinza-txt); line-height: 1.75;
}

