/* =============================================
   CARTÃO DO COMÉRCIO / INASEC – LANDING PAGE
   Paleta: Azul Navy #1e2d5a | Verde #00a651
           Amarelo #f5c518 | Teal #20b6cf | Branco #fff
   ============================================= */

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-navy:   #1e2d5a;
  --blue-mid:    #2a4a9f;
  --blue-light:  #3a6fd8;
  --green:       #00a651;
  --green-l:     #2ecc71;
  --yellow:      #f5c518;
  --yellow-d:    #d4a800;
  --yellow-bg:   #fffbea;
  --teal:        #20b6cf;
  --red:         #e63946;
  --white:       #ffffff;
  --gray-50:     #f9fafd;
  --gray-100:    #f0f2f9;
  --gray-200:    #e2e6f0;
  --gray-300:    #c8d0e0;
  --gray-500:    #8892a4;
  --gray-700:    #4a5568;
  --gray-900:    #1a202c;
  --shadow-sm:   0 2px 8px rgba(30,45,90,.08);
  --shadow-md:   0 6px 24px rgba(30,45,90,.13);
  --shadow-lg:   0 16px 48px rgba(30,45,90,.18);
  --shadow-xl:   0 24px 64px rgba(30,45,90,.24);
  --r-sm:  8px;  --r-md: 16px; --r-lg: 24px;
  --r-xl:  36px; --r-full: 9999px;
  --tr: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Poppins','Inter',sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ====== UTILITIES ====== */
.text-blue   { color: var(--blue-navy); }
.text-green  { color: var(--green); }
.text-yellow { color: var(--yellow-d); }
.highlight-yellow { color: var(--yellow); }
.white { color: var(--white) !important; }

/* ====== LOGO MARK ====== */
.logo-mark {
  font-size: .9rem;
  font-weight: 900;
  color: var(--blue-navy);
  line-height: 1.18;
  letter-spacing: .01em;
}
.logo-mark .lm-text { color: var(--blue-navy); }
.logo-mark .lm-dot {
  display: inline-block; width: 1.1em; height: 1.1em;
  border-radius: 50%; text-align: center; line-height: 1.15em; font-size: .95em;
}
.lm-dot.green { background: var(--green);   color: var(--white); }
.lm-dot.gold  { background: var(--yellow-d); color: var(--white); }
.logo-inasec {
  display: block; font-size: .58rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gray-500); margin-top: 2px;
}

/* Card dot colors */
.cc-dot       { font-size: .72em; }
.cc-dot.green { color: var(--green); }
.cc-dot.blue-l{ color: #a8d8ff; }
.cc-dot.blue-d{ color: var(--blue-navy); }
.cc-dot.g     { color: var(--green); }
.cc-dot.b     { color: #a8d8ff; }
.cc-dot.bd    { color: var(--blue-navy); }
.cc-dot.gd    { color: var(--yellow-d); }

/* ====== SECTION HEADERS ====== */
.section-tag {
  display: inline-block;
  background: rgba(30,45,90,.08);
  color: var(--blue-navy);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 14px;
}
.section-tag.light { background: rgba(255,255,255,.18); color: rgba(255,255,255,.9); }

.section-header { text-align: center; max-width: 740px; margin: 0 auto 52px; }
.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 800; line-height: 1.22;
  color: var(--blue-navy); margin-bottom: 14px;
}
.section-subtitle { font-size: 1rem; color: var(--gray-700); line-height: 1.7; }
.section-subtitle.white { color: rgba(255,255,255,.82); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: .92rem;
  padding: 12px 26px; border-radius: var(--r-full);
  transition: var(--tr); border: 2px solid transparent;
  white-space: nowrap; cursor: pointer; letter-spacing: .02em;
}
.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-full  { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue-navy); color: var(--white);
  box-shadow: 0 4px 18px rgba(30,45,90,.3);
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,45,90,.38); }

.btn-yellow {
  background: var(--yellow); color: var(--blue-navy);
  box-shadow: 0 4px 18px rgba(245,197,24,.38);
}
.btn-yellow:hover { background: #ffd234; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,197,24,.48); }

.btn-outline-white {
  border-color: rgba(255,255,255,.65); color: var(--white);
  background: rgba(255,255,255,.1); backdrop-filter: blur(6px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.22); border-color: var(--white); transform: translateY(-2px); }

.btn-outline-navy {
  border-color: var(--blue-navy); color: var(--blue-navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--blue-navy); color: var(--white); transform: translateY(-2px); }

.btn-outline-white-impact {
  border-color: rgba(255,255,255,.5); color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline-white-impact:hover { background: rgba(255,255,255,.18); border-color: var(--white); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25d366; color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.34);
}
.btn-whatsapp:hover { background: #20bd5b; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.44); }

/* ====== HEADER ====== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--tr); }

.header-top-bar {
  background: var(--blue-navy); padding: 7px 0;
  font-size: .75rem;
}
.top-bar-content {
  display: flex; gap: 22px; justify-content: flex-end;
  align-items: center; flex-wrap: wrap;
}
.top-bar-link {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.8); transition: color .2s;
}
.top-bar-link:hover { color: var(--yellow); }
.top-bar-link i { color: var(--yellow); font-size: .8rem; }

.navbar { background: var(--white); box-shadow: 0 2px 14px rgba(30,45,90,.1); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: .84rem; font-weight: 600; color: var(--gray-700);
  padding: 8px 12px; border-radius: var(--r-full); transition: var(--tr);
}
.nav-link:hover { color: var(--blue-navy); background: var(--gray-100); }
.nav-link.nav-cta {
  background: var(--blue-navy); color: var(--white);
  padding: 9px 20px; margin-left: 6px;
  display: flex; align-items: center; gap: 6px;
}
.nav-link.nav-cta:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--r-sm); }
.hamburger span { width: 22px; height: 2px; background: var(--blue-navy); border-radius: 2px; transition: var(--tr); display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ====== SCROLLED HEADER ====== */
.site-header.scrolled .navbar { box-shadow: 0 4px 20px rgba(30,45,90,.16); }

/* ====== CSS CARDS ====== */
.css-card {
  border-radius: 16px; padding: 22px 24px 20px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl); min-height: 180px;
}
.css-card-blue  { background: linear-gradient(135deg, #1a7a9f 0%, #20b6cf 55%, #1090b8 100%); }
.css-card-yellow{ background: linear-gradient(135deg, #e8c200 0%, #f5d200 40%, #f0c800 100%); }
.css-card::before {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
  bottom: -100px; right: -80px; pointer-events: none;
}
.css-card::after {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.08);
  bottom: -50px; right: -30px; pointer-events: none;
}
.css-card-logo { font-size: .7rem; font-weight: 900; color: var(--white); letter-spacing: .04em; line-height: 1; }
.css-card-logo.dark { color: var(--blue-navy); }
.css-card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.css-card-alim { font-family: Georgia,serif; font-style: italic; font-size: .9rem; font-weight: 700; color: #c0392b; }
.css-card-num  { font-size: .85rem; font-weight: 700; color: var(--white); letter-spacing: .12em; margin-bottom: 4px; }
.css-card-num.dark { color: var(--blue-navy); }
.css-card-name { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .06em; text-transform: uppercase; }
.css-card-name.dark { color: rgba(30,45,90,.7); }

/* =============================================
   1. HERO – Fundo claro, humanizado
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #eef1f8 0%, #f7f9fd 50%, #edf5f1 100%);
  position: relative;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 0;
  overflow: hidden;
}

/* Shapes de fundo */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-shape { position: absolute; border-radius: 50%; }
.shape-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(30,45,90,.055) 0%, transparent 68%);
  top: -220px; right: -150px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,166,81,.07) 0%, transparent 68%);
  bottom: -120px; left: -120px;
}
.shape-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,197,24,.13) 0%, transparent 68%);
  top: 40%; left: 38%;
}

/* Grid 2 colunas */
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 56px;
  align-items: center;
  width: 100%;
  padding-bottom: 72px;
}

/* ── TEXTO ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--blue-navy);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-full);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--yellow-d); font-size: .85rem; }

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.05;
  color: var(--blue-navy); margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-title-highlight {
  color: var(--green);
  position: relative; display: inline-block;
}
.hero-title-highlight::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-d));
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--gray-700);
  line-height: 1.72; margin-bottom: 26px;
  max-width: 520px;
}
.hero-subtitle strong { color: var(--blue-navy); }

/* Checklist 2×2 */
.hero-checklist {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px; margin-bottom: 32px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.hero-checklist li {
  display: flex; align-items: center; gap: 8px;
  font-size: .87rem; font-weight: 600; color: var(--gray-700);
}
.hero-checklist li i { color: var(--green); font-size: .9rem; flex-shrink: 0; }

/* Botões de ação */
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 34px;
}

/* Stats */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.stat-item { text-align: center; padding: 0 22px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }
.stat-number {
  display: block; font-size: 1.9rem; font-weight: 900;
  color: var(--blue-navy); line-height: 1;
}
.stat-label { font-size: .73rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 42px; background: var(--gray-200); flex-shrink: 0; }

/* ── IMAGEM ── */
.hero-image-col { position: relative; display: flex; justify-content: center; align-items: center; }

.hero-img-frame {
  position: relative;
  max-width: 500px; width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  outline: 3px solid var(--gray-200);
}
.hero-img {
  width: 100%; height: 520px;
  object-fit: cover; object-position: center top;
  display: block; transition: transform .5s ease;
}
.hero-img-frame:hover .hero-img { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,45,90,.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Blob decorativo atrás da imagem */
.hero-image-col::before {
  content: '';
  position: absolute;
  width: 110%; height: 110%;
  background: linear-gradient(135deg, rgba(0,166,81,.1) 0%, rgba(32,182,207,.08) 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  z-index: -1;
  animation: blob-morph 8s ease-in-out infinite alternate;
}
@keyframes blob-morph {
  0%   { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  100% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}

/* ── FLOAT CARDS ── */
.hero-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(30,45,90,.16);
  border-top: 3px solid transparent;
  animation: fc-float 5s ease-in-out infinite;
  z-index: 5; min-width: 170px;
}
.card-health   { top: 12%; left: -22px;  border-color: var(--red);  animation-delay: 0s;    }
.card-shield   { top: 48%; right: -20px; border-color: var(--blue-mid); animation-delay: 1.6s; }
.card-discount { bottom: 10%; left: -14px; border-color: var(--green); animation-delay: 3.2s; }

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

.hfc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,57,70,.12); color: var(--red); font-size: 1rem; flex-shrink: 0;
}
.hfc-icon.shield   { background: rgba(42,74,159,.12); color: var(--blue-mid); }
.hfc-icon.discount { background: rgba(0,166,81,.12);  color: var(--green); }
.hfc-text { display: flex; flex-direction: column; }
.hfc-text strong { font-size: .82rem; font-weight: 700; color: var(--blue-navy); line-height: 1.2; }
.hfc-text span   { font-size: .73rem; color: var(--gray-500); }

/* Wave de separação — para o impact-strip azul */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
}
.hero-wave svg { width: 100%; height: 72px; display: block; }

/* =============================================
   DOBRA DE IMPACTO
   ============================================= */
.impact-strip {
  background: var(--blue-navy);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.impact-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(32,182,207,.15) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(0,166,81,.12) 0%, transparent 55%);
  pointer-events: none;
}

.impact-inner { position: relative; z-index: 1; }

.impact-headline {
  text-align: center; max-width: 760px; margin: 0 auto 52px;
}
.impact-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,197,24,.18);
  color: var(--yellow);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--r-full); margin-bottom: 20px;
  border: 1px solid rgba(245,197,24,.3);
}
.impact-headline h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 18px;
}
.impact-yellow { color: var(--yellow); }
.impact-headline p {
  font-size: 1.02rem; color: rgba(255,255,255,.8);
  line-height: 1.72; max-width: 640px; margin: 0 auto;
}
.impact-headline p strong { color: var(--yellow); }

.impact-pillars {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 48px;
}
.impact-pillar {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 28px 20px; text-align: center;
  transition: var(--tr);
}
.impact-pillar:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.ip-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(245,197,24,.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.3rem; color: var(--yellow);
}
.impact-pillar strong {
  display: block; font-size: .94rem; font-weight: 700;
  color: var(--white); margin-bottom: 7px;
}
.impact-pillar span { font-size: .82rem; color: rgba(255,255,255,.68); line-height: 1.55; }

.impact-cta {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

/* =============================================
   2. BENEFÍCIOS
   ============================================= */
.benefits { padding: 96px 0 80px; background: var(--white); }

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

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 24px 22px;
  position: relative; overflow: hidden;
  transition: var(--tr);
  opacity: 0; transform: translateY(22px);
}
.benefit-card.visible { opacity: 1; transform: translateY(0); }
.benefit-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-navy), var(--blue-mid));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0; transition: opacity .3s;
}
.benefit-card:hover::before { opacity: 1; }

.optional-card { background: var(--gray-50); }
.optional-card::before { background: linear-gradient(90deg, var(--teal), var(--blue-light)); }

.benefit-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 18px;
}
.icon-red    { background: rgba(230,57,70,.1);   color: var(--red); }
.icon-blue   { background: rgba(30,45,90,.1);    color: var(--blue-navy); }
.icon-green  { background: rgba(0,166,81,.1);    color: var(--green); }
.icon-teal   { background: rgba(32,182,207,.1);  color: var(--teal); }
.icon-yellow { background: rgba(245,197,24,.15); color: var(--yellow-d); }
.icon-navy   { background: rgba(30,45,90,.1);    color: var(--blue-navy); }
.icon-purple { background: rgba(130,80,200,.1);  color: #7c3aed; }
.icon-orange { background: rgba(234,138,0,.12);  color: #d97706; }

.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue-navy); margin-bottom: 10px; line-height: 1.35; }
.benefit-card p  { font-size: .88rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 16px; }

.benefit-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full);
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--gray-100); color: var(--gray-700);
}
.benefit-tag.free     { background: rgba(0,166,81,.12);   color: #007a3d; }
.benefit-tag.discount { background: rgba(32,182,207,.12); color: #0e7490; }
.benefit-tag.cashback { background: rgba(245,197,24,.18); color: var(--yellow-d); }
.benefit-tag.optional { background: rgba(30,45,90,.08);   color: var(--blue-navy); }

.benefits-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 36px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 16px 22px;
  font-size: .85rem; color: var(--gray-700);
}
.benefits-note i { color: var(--blue-mid); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* =============================================
   3. PARA EMPRESAS
   ============================================= */
.for-companies {
  position: relative; padding: 96px 0 80px;
  background: var(--blue-navy);
  overflow: hidden;
}
.companies-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(32,182,207,.14) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(0,166,81,.1) 0%, transparent 55%);
  pointer-events: none;
}
.for-companies .container { position: relative; z-index: 1; }

.companies-header { text-align: center; max-width: 740px; margin: 0 auto 52px; }

.companies-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 48px;
}
.company-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 30px 22px;
  text-align: center; transition: var(--tr);
  opacity: 0; transform: translateY(20px);
}
.company-card.visible { opacity: 1; transform: translateY(0); }
.company-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}
.company-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(245,197,24,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--yellow);
  margin: 0 auto 18px;
}
.company-card h4 { font-size: .94rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.company-card p  { font-size: .84rem; color: rgba(255,255,255,.7); line-height: 1.65; }

.companies-cta {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 44px;
}

.companies-proof {
  display: flex; justify-content: center; gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 36px;
}
.proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.82);
}
.proof-item i { color: var(--green); font-size: .9rem; }

/* =============================================
   4. PARA O TRABALHADOR
   ============================================= */
.for-workers { padding: 96px 0; background: var(--gray-50); }

.workers-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.workers-visual { display: flex; justify-content: center; align-items: center; }
.workers-cards-wrap {
  position: relative;
  width: 100%; height: 340px;
}

.mini-card {
  position: absolute;
  width: 260px; border-radius: 14px;
  padding: 18px 20px 16px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
}
.blue-card {
  background: linear-gradient(135deg,#1a7a9f,#20b6cf,#1090b8);
  top: 0; left: 0; transform: rotate(-4deg);
  z-index: 1;
}
.yellow-card {
  background: linear-gradient(135deg,#e8c200,#f5d200,#f0c800);
  bottom: 0; right: 0; transform: rotate(3deg);
  z-index: 2;
}
.mc-logo { font-size: .62rem; font-weight: 900; color: var(--white); letter-spacing: .04em; margin-bottom: 10px; }
.mc-logo.dark { color: var(--blue-navy); }
.mc-alim { font-family: Georgia,serif; font-style: italic; font-size: .9rem; color: #c0392b; font-weight: 700; margin-bottom: 8px; }
.mc-icon { font-size: 1.6rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.mc-num  { font-size: .8rem; font-weight: 700; color: var(--white); letter-spacing: .1em; margin-bottom: 3px; }
.mc-num.dark  { color: var(--blue-navy); }
.mc-name { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: .08em; text-transform: uppercase; }
.mc-name.dark { color: rgba(30,45,90,.7); }

.wfloat-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-full);
  padding: 6px 14px; font-size: .74rem; font-weight: 700;
  color: var(--blue-navy); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 5px;
  z-index: 10; white-space: nowrap;
}
.wfloat-badge.cash { top: -12px; right: -10px; }
.wfloat-badge.hlth { bottom: 60px; left: -20px; }
.wfloat-badge.disc { bottom: -12px; right: 20px; }
.wfloat-badge i { color: var(--green); }

.workers-text { }
.workers-list { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.workers-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .94rem; color: var(--gray-700);
  opacity: 0; transform: translateX(-14px); transition: var(--tr);
}
.workers-list li.visible { opacity: 1; transform: translateX(0); }
.workers-list li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.workers-free-line { color: var(--blue-navy) !important; font-weight: 700; }
.workers-free-line i { color: var(--yellow-d) !important; }

/* =============================================
   5. SAÚDE COMPLETA
   ============================================= */
.health-section { padding: 96px 0; background: var(--white); }

.health-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 48px;
}

.health-highlight-card {
  background: linear-gradient(135deg, var(--blue-navy) 0%, var(--blue-mid) 100%);
  border-radius: var(--r-xl); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.health-icon-big {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
}
.health-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 6px;
}
.health-highlight-text h3 {
  font-size: 1.45rem; font-weight: 800; color: var(--white);
  margin-bottom: 12px; line-height: 1.28;
}
.health-highlight-text p {
  font-size: .93rem; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 20px;
}
.health-highlight-text p strong { color: var(--yellow); }

.health-features { display: flex; flex-direction: column; gap: 16px; }
.health-feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md); padding: 18px 20px;
  transition: var(--tr);
  opacity: 0; transform: translateX(14px);
}
.health-feature-item.visible { opacity: 1; transform: translateX(0); }
.health-feature-item:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); transform: translateX(0) translateY(-2px); }

.hf-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.hf-icon.green  { background: rgba(0,166,81,.12);   color: var(--green); }
.hf-icon.blue   { background: rgba(30,45,90,.1);    color: var(--blue-navy); }
.hf-icon.teal   { background: rgba(32,182,207,.12); color: var(--teal); }
.hf-icon.yellow { background: rgba(245,197,24,.16); color: var(--yellow-d); }

.hf-text h4 { font-size: .93rem; font-weight: 700; color: var(--blue-navy); margin-bottom: 4px; }
.hf-text p  { font-size: .83rem; color: var(--gray-700); line-height: 1.55; }

.health-cta { text-align: center; }

/* =============================================
   6. SEGURANÇA E PROTEÇÃO
   ============================================= */
.security-section { padding: 96px 0; background: var(--gray-50); }

.security-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.security-cards { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.security-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 24px 22px;
  transition: var(--tr);
  opacity: 0; transform: translateY(18px);
}
.security-card.visible { opacity: 1; transform: translateY(0); }
.security-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.security-card-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(30,45,90,.1); color: var(--blue-navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.security-card-icon.alt { background: rgba(124,58,237,.1); color: #7c3aed; }
.security-amount { display: block; font-size: 1.25rem; font-weight: 900; color: var(--blue-navy); line-height: 1; margin-bottom: 4px; }
.security-card-text h4 { font-size: .94rem; font-weight: 700; color: var(--blue-navy); margin-bottom: 6px; }
.security-card-text p  { font-size: .85rem; color: var(--gray-700); line-height: 1.6; }

/* Orb visual */
.security-visual { display: flex; justify-content: center; align-items: center; }
.security-orb {
  position: relative; width: 100%; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.security-icon-big {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-navy), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--white);
  box-shadow: 0 12px 40px rgba(30,45,90,.35); position: relative; z-index: 5;
}
.security-rings { position: absolute; inset: 0; }
.ring {
  position: absolute; border-radius: 50%; border: 1.5px solid;
  animation: ring-pulse 3s ease-in-out infinite;
}
.ring1 { inset: 30px; border-color: rgba(30,45,90,.2); }
.ring2 { inset: 10px; border-color: rgba(30,45,90,.12); animation-delay: 1s; }
.ring3 { inset: -10px; border-color: rgba(30,45,90,.07); animation-delay: 2s; }
@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.04); opacity: .7; }
}
.sec-badge {
  position: absolute; background: var(--white); border-radius: var(--r-full);
  padding: 7px 14px; box-shadow: var(--shadow-md); z-index: 6;
  display: flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 700; color: var(--blue-navy);
}
.sec-badge.top { top: 10px; right: -20px; }
.sec-badge.bot { bottom: 16px; left: -20px; }
.sec-badge i { color: var(--green); }

/* =============================================
   7. CASHBACK
   ============================================= */
.cashback-section { padding: 96px 0; background: var(--white); }

.cashback-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.cashback-cards {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  position: relative; max-width: 100%; margin: 0 auto;
}
.cb-back { transform: rotate(-3deg); margin-right: 20px; }
.cb-front { transform: rotate(2deg); margin-left: 20px; }

.cashback-features-row {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 22px; flex-wrap: wrap;
}
.cb-feature {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: .76rem; font-weight: 600; color: var(--gray-700);
}
.cb-feature i { font-size: 1.2rem; color: var(--blue-mid); }

.cashback-highlights { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.cb-highlight {
  display: flex; align-items: center; gap: 16px;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md); padding: 14px 18px;
  transition: var(--tr);
  opacity: 0; transform: translateX(14px);
}
.cb-highlight.visible { opacity: 1; transform: translateX(0); }
.cb-highlight:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.cb-highlight > i { font-size: 1.3rem; color: var(--blue-mid); flex-shrink: 0; }
.cb-highlight div { display: flex; flex-direction: column; gap: 2px; }
.cb-highlight strong { font-size: .9rem; font-weight: 700; color: var(--blue-navy); }
.cb-highlight span   { font-size: .82rem; color: var(--gray-700); }

/* =============================================
   8. BENEFÍCIOS OPCIONAIS
   ============================================= */
.optional-section { padding: 80px 0; background: var(--gray-50); }

.optional-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 26px; max-width: 820px; margin: 0 auto;
}
.optional-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 38px 32px;
  text-align: center; transition: var(--tr);
  opacity: 0; transform: translateY(18px);
}
.optional-card.visible { opacity: 1; transform: translateY(0); }
.optional-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.opt-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.blue-icon  { background: rgba(30,45,90,.1);  color: var(--blue-navy); }
.green-icon { background: rgba(0,166,81,.1);  color: var(--green); }

.opt-brand {
  font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 8px;
}
.green-brand { color: var(--green); }
.optional-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue-navy); margin-bottom: 10px; }
.optional-card p  { font-size: .88rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 16px; }
.opt-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 4px 14px; border-radius: var(--r-full);
  background: rgba(30,45,90,.08); color: var(--blue-navy);
  letter-spacing: .05em; text-transform: uppercase;
}

/* =============================================
   9. CIDADES
   ============================================= */
.cities-section { padding: 80px 0; background: var(--white); }

.cities-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 16px; margin-bottom: 30px;
}
.city-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 16px;
  text-align: center;
  transition: var(--tr);
  opacity: 0; transform: translateY(14px);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.city-card.visible { opacity: 1; transform: translateY(0); }
.city-card:hover {
  background: var(--blue-navy); border-color: var(--blue-navy);
  transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.city-card:hover .city-pin,
.city-card:hover span { color: var(--white); }
.city-card:hover small { color: rgba(255,255,255,.65); }

.city-pin { font-size: 1.4rem; color: var(--green); }
.city-card span { font-size: .88rem; font-weight: 700; color: var(--blue-navy); line-height: 1.3; }
.city-card small { font-size: .72rem; color: var(--gray-500); font-weight: 600; letter-spacing: .08em; }

.cities-map-hint {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: .84rem; color: var(--gray-500);
}
.cities-map-hint i { color: var(--blue-mid); }
.cities-map-hint strong { color: var(--blue-navy); }

/* =============================================
   10. INSTITUCIONAL
   ============================================= */
.institutional { padding: 96px 0; background: var(--gray-50); }

.institutional-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 56px; align-items: center;
}
.institutional-logo-box {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 40px 36px;
  text-align: center; min-width: 200px;
  box-shadow: var(--shadow-md);
}
.inst-logo-mark {
  font-size: 1.3rem; font-weight: 900; color: var(--blue-navy);
  line-height: 1.2; letter-spacing: .01em; text-align: center;
}
.inst-badge {
  background: var(--blue-navy); color: var(--white);
  font-size: .62rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; padding: 4px 14px; border-radius: var(--r-full);
}
.inst-since { font-size: .78rem; font-weight: 600; color: var(--gray-500); letter-spacing: .08em; }

.institutional-text p { font-size: .95rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 16px; }
.institutional-numbers {
  display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px;
}
.inst-num {
  display: flex; flex-direction: column; gap: 3px;
  opacity: 0; transform: translateY(14px); transition: var(--tr);
}
.inst-num.visible { opacity: 1; transform: translateY(0); }
.inst-num strong { font-size: 1.4rem; font-weight: 900; color: var(--blue-navy); }
.inst-num span   { font-size: .78rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }

/* =============================================
   11. FAQ
   ============================================= */
.faq-section { padding: 96px 0; background: var(--white); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--tr);
}
.faq-item.active { border-color: var(--blue-mid); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 24px;
  font-size: .95rem; font-weight: 700; color: var(--blue-navy);
  text-align: left; transition: var(--tr);
}
.faq-question:hover { background: rgba(30,45,90,.04); }
.faq-item.active .faq-question { color: var(--blue-mid); }
.faq-question i {
  font-size: .8rem; color: var(--gray-500); flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--blue-mid); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-answer p {
  font-size: .9rem; color: var(--gray-700); line-height: 1.75;
  padding-top: 2px;
}
.faq-answer p strong { color: var(--blue-navy); }

/* =============================================
   12. CTA FINAL
   ============================================= */
.cta-final { position: relative; padding: 100px 0; overflow: hidden; background: var(--blue-navy); }
.cta-final-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(32,182,207,.16) 0%, transparent 55%),
              radial-gradient(ellipse at bottom left, rgba(0,166,81,.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }

.cta-final-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.cta-final-text h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900; color: var(--white); line-height: 1.22; margin-bottom: 16px;
}
.cta-final-text p { font-size: .95rem; color: rgba(255,255,255,.78); line-height: 1.72; margin-bottom: 28px; }

.cta-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.cta-check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.85);
}
.cta-check-item i { color: var(--green); font-size: .9rem; flex-shrink: 0; }

.cta-or { font-size: .83rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.cta-direct-contacts { display: flex; flex-direction: column; gap: 11px; }

/* FORM */
.cta-form {
  background: var(--white); border-radius: var(--r-xl);
  padding: 36px 32px; box-shadow: var(--shadow-xl);
}
.cta-form h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--blue-navy);
  margin-bottom: 22px; display: flex; align-items: center; gap: 8px;
}
.cta-form h3 i { color: var(--blue-mid); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 700;
  color: var(--gray-700); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md); font-family: var(--font);
  font-size: .88rem; color: var(--gray-900);
  transition: var(--tr); background: var(--gray-50);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,74,159,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-privacy {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--gray-500); margin-top: 10px;
}
.form-privacy i { color: var(--green); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #141d3a; color: rgba(255,255,255,.78); }

.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo-mark {
  font-size: 1.1rem; font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 8px;
}
.footer-inasec-tag {
  display: inline-block; font-size: .6rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 14px;
}
.footer-brand p { font-size: .84rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.7);
  transition: var(--tr);
}
.footer-social a:hover { background: var(--blue-mid); border-color: var(--blue-mid); color: var(--white); }

.footer-links-col h4 {
  font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links-col a { font-size: .83rem; color: rgba(255,255,255,.62); transition: color .2s; }
.footer-links-col a:hover { color: var(--yellow); }

.footer-contact h4 {
  font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: .83rem; }
.footer-contact li i { color: var(--yellow); width: 16px; text-align: center; }
.footer-contact a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-contact a:hover { color: var(--yellow); }

.footer-hotline {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 14px 16px;
  transition: var(--tr);
}
.footer-hotline:hover { background: rgba(255,255,255,.12); }
.footer-hotline i { font-size: 1.5rem; color: var(--green); }
.footer-hotline div { display: flex; flex-direction: column; }
.footer-hotline span { font-size: .72rem; color: rgba(255,255,255,.55); }
.footer-hotline strong { font-size: .95rem; color: var(--white); font-weight: 800; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px; font-size: .8rem; color: rgba(255,255,255,.45);
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   WHATSAPP FLOAT + BACK TO TOP
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--tr);
}
.whatsapp-float:hover { background: #20bd5b; transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
.wpp-tooltip {
  position: absolute; right: 68px;
  background: #1a1a2e; color: var(--white);
  font-size: .78rem; font-weight: 600; padding: 6px 14px;
  border-radius: var(--r-full); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.whatsapp-float:hover .wpp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 900;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; box-shadow: var(--shadow-md);
  transition: var(--tr); opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue-mid); transform: translateY(-3px); }

/* =============================================
   RESPONSIVE – 1024px
   ============================================= */
@media (max-width: 1024px) {
  .companies-grid { grid-template-columns: repeat(2,1fr); }
  .impact-pillars  { grid-template-columns: repeat(2,1fr); }
  .cities-grid     { grid-template-columns: repeat(3,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }

  .hero-content    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-img        { height: 440px; }

  .institutional-inner { grid-template-columns: 1fr; }
  .institutional-logo-box { flex-direction: row; width: 100%; justify-content: flex-start; padding: 24px 28px; }
}

/* =============================================
   RESPONSIVE – 768px
   ============================================= */
@media (max-width: 768px) {
  /* Topbar */
  .header-top-bar { display: none; }

  /* Nav */
  .navbar { position: relative; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); box-shadow: 0 8px 24px rgba(30,45,90,.12);
    padding: 16px 20px 22px; gap: 4px; z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 14px; width: 100%; border-radius: var(--r-md); }
  .nav-link.nav-cta { margin-left: 0; margin-top: 6px; justify-content: center; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding-top: 88px; padding-bottom: 72px; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px; padding-bottom: 0;
  }
  .hero-image-col { order: -1; }
  .hero-img-frame { max-width: 100%; }
  .hero-img { height: 320px; }
  .card-health   { top: 4%;  left: -8px; }
  .card-shield   { top: 40%; right: -8px; }
  .card-discount { bottom: 6%; left: -6px; }
  .hero-checklist { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Impact strip */
  .impact-pillars  { grid-template-columns: 1fr 1fr; }
  .impact-cta      { flex-direction: column; align-items: center; }

  /* Benefícios */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Empresas */
  .companies-grid  { grid-template-columns: 1fr 1fr; }
  .companies-cta   { flex-direction: column; align-items: center; }
  .companies-proof { gap: 16px; }

  /* Workers */
  .workers-inner { grid-template-columns: 1fr; gap: 40px; }
  .workers-cards-wrap { height: 300px; max-width: 340px; margin: 0 auto; }

  /* Saúde */
  .health-grid { grid-template-columns: 1fr; }
  .health-feature-item { opacity: 1; transform: none; }

  /* Segurança */
  .security-inner { grid-template-columns: 1fr; gap: 40px; }
  .security-visual { order: -1; }

  /* Cashback */
  .cashback-inner { grid-template-columns: 1fr; gap: 40px; }
  .cashback-visual { order: -1; }
  .cb-highlight { opacity: 1; transform: none; }

  /* Opcionais */
  .optional-grid { grid-template-columns: 1fr; }

  /* Cidades */
  .cities-grid { grid-template-columns: repeat(2,1fr); }

  /* Institucional */
  .institutional-inner { grid-template-columns: 1fr; }
  .institutional-logo-box { flex-direction: row; align-self: flex-start; padding: 20px 24px; }
  .institutional-numbers { gap: 20px; }

  /* CTA final */
  .cta-final-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* =============================================
   RESPONSIVE – 480px
   ============================================= */
@media (max-width: 480px) {
  .hero-img { height: 260px; }
  .card-shield { display: none; }
  .hero-float-card { min-width: 150px; padding: 8px 12px; }
  .hfc-text strong { font-size: .78rem; }

  .section-title { font-size: 1.55rem; }
  .impact-pillars { grid-template-columns: 1fr; }
  .impact-headline h2 { font-size: 1.6rem; }
  .companies-grid { grid-template-columns: 1fr; }

  .cities-grid { grid-template-columns: repeat(2,1fr); }
  .city-card { padding: 20px 12px; }

  .security-orb { width: 220px; height: 220px; }
  .security-icon-big { width: 80px; height: 80px; font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .workers-cards-wrap { width: 100%; height: 280px; }
  .mini-card { width: 220px; }
  .wfloat-badge { font-size: .7rem; padding: 5px 10px; }
  .wfloat-badge.hlth { left: -8px; }

  .cta-form { padding: 26px 20px; }
  .hero-stats { flex-wrap: wrap; }
}
