/* =========================================
   MONEY BPO FINANCEIRO — style.css
   Paleta: Preto #0a0a0a | Dourado #C9A84C | Branco #FFFFFF
   ========================================= */

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

:root {
  --black:      #0a0a0a;
  --black2:     #111111;
  --black3:     #1a1a1a;
  --white:      #FFFFFF;
  --white80:    rgba(255,255,255,0.80);
  --white50:    rgba(255,255,255,0.50);
  --white15:    rgba(255,255,255,0.15);
  --white08:    rgba(255,255,255,0.08);
  --white05:    rgba(255,255,255,0.05);

  --gold:       #C9A84C;
  --gold2:      #E2C170;
  --gold3:      #A88430;
  --gold-grad:  linear-gradient(135deg, #A88430 0%, #E2C170 45%, #C9A84C 70%, #A88430 100%);
  --gold10:     rgba(201,168,76,0.10);
  --gold20:     rgba(201,168,76,0.20);
  --gold30:     rgba(201,168,76,0.30);

  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold:0 4px 30px rgba(201,168,76,0.18);

  --font-display: 'Montserrat', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --ease:         0.32s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* Texto dourado */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--gold3); border-radius: 3px; }

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-grad);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white80);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid var(--white15);
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold30); color: var(--gold2); }
.btn-large { font-size: 1.05rem; padding: 18px 40px; }
.btn-full  { width: 100%; padding: 15px; border-radius: var(--radius-sm); font-size: 1rem; }

/* ---- SECTION BASE ---- */
.section { padding: 100px 0; }
.section-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid var(--gold20);
  background: var(--gold10);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 0;
  background: transparent;
  transition: var(--ease);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--white08);
  padding: 4px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white80);
  transition: color var(--ease);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-grad);
  transition: width var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--gold-grad);
  color: var(--black) !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
}
.nav-cta:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 150px 24px 80px;
  background: var(--black);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute;
  top: -160px; right: -80px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(201,168,76,0.13) 0%, transparent 68%);
  border-radius: 50%;
}
.hero-glow-2 {
  top: auto; right: auto;
  bottom: -100px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold2);
  border: 1px solid var(--gold20);
  background: var(--gold10);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--white50);
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  background: var(--white05);
  border: 1px solid var(--white08);
  border-radius: 20px;
  padding: 20px 0;
  backdrop-filter: blur(10px);
}
.stat { text-align: center; padding: 0 36px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { display: block; font-size: 0.76rem; color: var(--white50); margin-top: 5px; font-weight: 500; }
.stat-divider { width: 1px; height: 44px; background: var(--white15); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.72rem; color: var(--white50);
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ==================== SERVICES ==================== */
.services { background: var(--black2); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.service-card {
  background: var(--white05);
  border: 1px solid var(--white08);
  border-radius: var(--radius);
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold-grad);
  transition: width 0.45s ease;
}
.service-card:hover { border-color: var(--gold20); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 46px; height: 46px;
  color: var(--gold2);
  background: var(--gold10);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 18px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.service-card p  { font-size: 0.88rem; color: var(--white50); line-height: 1.65; }

/* ==================== DIFERENCIAIS ==================== */
.diferenciais { background: var(--black); }
.diff-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diff-text .section-tag { display: block; width: fit-content; }
.diff-text .section-title { margin: 14px 0 0; }
.diff-desc { color: var(--white50); margin: 16px 0 26px; font-size: 0.96rem; line-height: 1.75; }

.diff-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.diff-list li { display: flex; gap: 14px; align-items: flex-start; }
.diff-icon {
  width: 22px; height: 22px;
  background: var(--gold-grad); color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800;
  flex-shrink: 0; margin-top: 3px;
}
.diff-list li strong { display: block; font-weight: 700; font-size: 0.93rem; margin-bottom: 2px; color: var(--white); }
.diff-list li span  { font-size: 0.85rem; color: var(--white50); }

/* Visual cards */
.diff-visual { display: flex; align-items: center; justify-content: center; }
.diff-card-stack { position: relative; width: 340px; height: 340px; }
.diff-center-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(201,168,76,0.3);
  animation: ring-glow 4s ease-in-out infinite;
}
@keyframes ring-glow {
  0%,100% { box-shadow: 0 0 40px rgba(201,168,76,0.2); }
  50%      { box-shadow: 0 0 80px rgba(201,168,76,0.4); }
}
.ring-text { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--black); line-height: 1; text-align: center; }
.ring-sub  { display: block; font-size: 0.58rem; font-weight: 700; color: var(--black); letter-spacing: 0.12em; text-transform: uppercase; text-align: center; }

.diff-floating-card {
  position: absolute;
  background: var(--black3);
  border: 1px solid var(--gold20);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  min-width: 152px;
  animation: float 5s ease-in-out infinite;
}
.card-1 { top: 10px; left: -10px; animation-delay: 0s; }
.card-2 { top: 10px; right: -10px; animation-delay: 1.8s; }
.card-3 { bottom: 20px; left: 50%; animation-delay: 0.9s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.card-3 { animation: float-c 5s ease-in-out infinite 0.9s; }
@keyframes float-c { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
.fc-icon  { font-size: 1.3rem; }
.fc-label { display: block; font-size: 0.7rem; color: var(--white50); font-weight: 500; }
.fc-value { display: block; font-size: 0.96rem; font-weight: 800; color: var(--gold2); font-family: var(--font-display); }

/* ==================== PROCESSO ==================== */
.processo { background: var(--black2); }
.steps-grid { display: flex; align-items: flex-start; gap: 12px; }
.step {
  flex: 1;
  background: var(--white05);
  border: 1px solid var(--white08);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: var(--ease);
}
.step:hover { border-color: var(--gold20); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px; line-height: 1;
}
.step h3 { font-size: 0.94rem; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.step p  { font-size: 0.83rem; color: var(--white50); line-height: 1.6; }
.step-arrow { font-size: 1.3rem; color: var(--gold); padding-top: 46px; flex-shrink: 0; opacity: 0.7; }

/* ==================== DEPOIMENTOS ==================== */
.depoimentos { background: var(--black); overflow: hidden; }

.depoimentos .section-container { padding: 0 24px; }

.testimonials-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  background: var(--white05);
  border: 1px solid var(--white08);
  border-radius: var(--radius);
  padding: 32px;
  scroll-snap-align: start;
  transition: var(--ease);
  box-sizing: border-box;
}
.testimonial-card:hover { border-color: var(--gold20); box-shadow: var(--shadow-gold); }
.test-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.test-text  { font-size: 0.88rem; color: var(--white80); line-height: 1.72; font-style: italic; margin-bottom: 22px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: var(--black); flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.test-author span   { font-size: 0.76rem; color: var(--white50); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white15); cursor: pointer; transition: var(--ease); }
.dot.active { background: var(--gold); transform: scale(1.4); }

@media (max-width: 640px) {
  .testimonial-card { padding: 24px 18px; }
  .test-text { font-size: 0.84rem; }
}

/* ==================== SOBRE ==================== */
.sobre { background: var(--black2); }
.sobre-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.sobre-img-area { position: relative; }
.sobre-decor-box {
  position: absolute; top: -18px; left: -18px;
  width: 180px; height: 180px;
  border: 2px solid var(--gold20);
  border-radius: var(--radius); z-index: 0;
}
.sobre-img-box {
  position: relative; z-index: 1;
  background: var(--black3);
  border: 1px solid var(--gold20);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sobre-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: radial-gradient(ellipse at center, var(--gold10) 0%, transparent 70%);
}
.sobre-money-logo {
  font-family: var(--font-display);
  font-size: 3.8rem; font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sobre-bpo-label { font-size: 0.86rem; font-weight: 600; color: var(--white50); letter-spacing: 0.12em; text-transform: uppercase; }
.sobre-text .section-tag { display: block; width: fit-content; }
.sobre-text .section-title { margin: 14px 0 0; }
.sobre-text p { color: var(--white50); font-size: 0.94rem; margin: 14px 0; line-height: 1.75; }
.sobre-badges { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.sobre-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--gold10); border: 1px solid var(--gold20);
  border-radius: 50px; padding: 7px 14px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold2);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: var(--black3);
  border-top: 1px solid var(--gold20);
  border-bottom: 1px solid var(--gold20);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; margin-bottom: 16px; line-height: 1.2;
  color: var(--white);
}
.cta-content p { color: var(--white50); font-size: 1rem; margin-bottom: 34px; }

/* ==================== CONTATO ==================== */
.contato { background: var(--black2); }
.contato-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contato-info .section-tag { display: block; width: fit-content; }
.contato-info .section-title { margin: 14px 0 14px; }
.contato-info > p { color: var(--white50); font-size: 0.94rem; margin-bottom: 32px; line-height: 1.75; }
.contato-items { display: flex; flex-direction: column; gap: 20px; }
.contato-item  { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  font-size: 1.1rem;
  width: 40px; height: 40px;
  background: var(--gold10); border: 1px solid var(--gold20);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contato-item strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; color: var(--white); }
.contato-item span   { font-size: 0.85rem; color: var(--white50); }

.form-card {
  background: var(--white05);
  border: 1px solid var(--white08);
  border-radius: var(--radius);
  padding: 38px;
}
.form-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; color: var(--white); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--white80); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--white15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white50); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-privacy { text-align: center; font-size: 0.75rem; color: var(--white50); margin-top: 12px; }

/* ==================== FOOTER ==================== */
.footer { background: var(--black); border-top: 1px solid var(--white08); padding: 60px 0 0; }
.footer-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 52px; padding-bottom: 44px; }
.footer-logo { height: 68px; width: auto; margin-bottom: 16px; object-fit: contain; }
.footer-brand p { font-size: 0.85rem; color: var(--white50); line-height: 1.7; max-width: 270px; margin-bottom: 20px; font-weight: 300; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  background: var(--white05); border: 1px solid var(--white15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--white50);
  text-transform: uppercase; transition: var(--ease);
}
.social-link:hover { background: var(--gold10); border-color: var(--gold30); color: var(--gold2); }
.footer-links-group h4 { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group li a { font-size: 0.85rem; color: var(--white50); font-weight: 300; transition: color var(--ease); }
.footer-links-group li a:hover { color: var(--white80); }
.footer-bottom {
  border-top: 1px solid var(--white08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--white50); font-weight: 300; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .diff-inner { grid-template-columns: 1fr; gap: 52px; }
  .diff-visual { order: -1; }
  .steps-grid { flex-direction: column; }
  .step-arrow { display: none; }
  .sobre-inner { grid-template-columns: 1fr; gap: 44px; }
  .contato-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonial-card { min-width: 100%;}
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0a0a !important;
  gap: 28px;
  z-index: 9998 !important;
}
.nav-links.open {
  display: flex !important;
}
.nav-links a {
  font-size: 1.1rem;
  color: var(--white) !important;
}
.nav-links .nav-cta {
  background: var(--gold-grad) !important;
  color: var(--black) !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem;
}
.hamburger {
  display: flex;
  z-index: 9999 !important;
}
.nav-links.open {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 998;
  background: rgba(10,10,10,0.98) !important;
  backdrop-filter: blur(20px);
}
.nav-links a { font-size: 1.1rem; color: var(--white) !important; }
.nav-links .nav-cta {
  background: var(--gold-grad);
  color: var(--black) !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem;
}
.hamburger { display: flex; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; }
  .stat { padding: 14px 36px; }
  .stat-divider { width: 80%; height: 1px; margin: 0 auto; }
  .diff-card-stack { width: 280px; height: 320px; }
  .card-1 { left: -20px; }
  .card-2 { right: -20px; }
  .form-card { padding: 26px 18px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { min-width: 284px; }
}

:focus-visible { outline: 2px solid var(--gold30); outline-offset: 2px; border-radius: 8px; }

.diff-card-stack {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
.diff-floating-card {
  position: static !important;
  transform: none !important;
  animation: none !important;
  width: 100%;
  max-width: 300px;
}
.card-1, .card-2, .card-3 {
  position: static !important;
  transform: none !important;
  animation: none !important;
}
.diff-center-ring {
  position: static !important;
  transform: none !important;
  order: -1;
  margin-bottom: 8px;
}
/* ==================== WHATSAPP FLUTUANTE ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--ease);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

.navbar.scrolled .nav-links.open {
  background: rgba(10,10,10,0.98);
}

/* ==================== DASHBOARD ANIMADO (sobre-img-placeholder) ==================== */
.dash-card {
  width: 100%; height: 100%;
  background: var(--black3);
  display: flex; flex-direction: column;
  overflow: hidden;
  font-family: var(--font-body);
  position: relative;
}
.dash-shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.05), transparent);
  transform: skewX(-15deg);
  animation: dashSweep 6s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes dashSweep { 0%{left:-100%} 40%{left:180%} 100%{left:180%} }

.dash-header {
  padding: 11px 15px 9px;
  border-bottom: 1px solid var(--gold20);
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1; flex-shrink: 0;
}
.dash-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.dash-sub {
  font-size: 7px; font-weight: 600; letter-spacing: 3px;
  color: rgba(201,168,76,0.45); text-transform: uppercase; margin-top: 2px;
}
.dash-live {
  display: flex; align-items: center; gap: 4px;
  background: var(--gold10); border: 1px solid var(--gold20);
  border-radius: 20px; padding: 3px 9px;
  font-size: 7px; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(201,168,76,0.7); text-transform: uppercase;
}
.dash-live-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: pulse 1.4s ease-in-out infinite;
}

.dash-kpis {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--gold20);
  position: relative; z-index: 1; flex-shrink: 0;
}
.dash-kpi {
  padding: 10px 8px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.08);
}
.dash-kpi:last-child { border-right: none; }
.dash-kpi-label {
  font-size: 7px; font-weight: 600; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25); text-transform: uppercase; margin-bottom: 4px;
}
.dash-kpi-val {
  font-size: 15px; font-weight: 700; color: var(--white);
  letter-spacing: -0.5px; line-height: 1;
}
.dash-kpi-delta { font-size: 8px; font-weight: 600; margin-top: 3px; letter-spacing: 0.5px; }
.dash-up { color: #5dba80; }
.dash-dn { color: #e05252; }

.dash-section {
  padding: 9px 15px 7px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  position: relative; z-index: 1; flex-shrink: 0;
}
.dash-section-last { border-bottom: none; flex: 1; }
.dash-sec-title {
  font-size: 7.5px; font-weight: 600; letter-spacing: 2px;
  color: rgba(201,168,76,0.4); text-transform: uppercase; margin-bottom: 9px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-sec-note       { color: rgba(255,255,255,0.2); font-size: 7.5px; letter-spacing: 0.5px; text-transform: none; font-weight: 500; }
.dash-sec-note.dash-green { color: #5dba80; }

.dash-bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.dash-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.dash-bar {
  width: 100%; border-radius: 2px 2px 0 0;
  transform-origin: bottom; transform: scaleY(0);
  transition: transform 0.75s cubic-bezier(0.34,1.4,0.64,1);
}
.dash-bar.dash-bar-active { background: var(--gold); box-shadow: 0 0 8px var(--gold20); }
.dash-bar.dash-bar-muted  { background: rgba(201,168,76,0.2); }
.dash-bar.dash-animated   { transform: scaleY(1); }
.dash-bar-col:nth-child(1) .dash-bar { transition-delay: 0.05s; }
.dash-bar-col:nth-child(2) .dash-bar { transition-delay: 0.13s; }
.dash-bar-col:nth-child(3) .dash-bar { transition-delay: 0.21s; }
.dash-bar-col:nth-child(4) .dash-bar { transition-delay: 0.29s; }
.dash-bar-col:nth-child(5) .dash-bar { transition-delay: 0.37s; }
.dash-bar-col:nth-child(6) .dash-bar { transition-delay: 0.45s; }
.dash-bar-col:nth-child(7) .dash-bar { transition-delay: 0.53s; }
.dash-bar-lbl { font-size: 6.5px; color: rgba(255,255,255,0.2); font-weight: 600; }

.dash-spark { width: 100%; height: 40px; display: block; overflow: visible; }
.dash-area  { fill: url(#dashGrad); opacity: 0; transition: opacity 0.6s ease 2.4s; }
.dash-area.dash-animated { opacity: 1; }
.dash-line {
  fill: none; stroke: var(--gold); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 700; stroke-dashoffset: 700;
  transition: stroke-dashoffset 2s ease 0.8s;
}
.dash-line.dash-animated { stroke-dashoffset: 0; }
.dash-dot-end { fill: var(--gold); }

.dash-progs { display: flex; flex-direction: column; gap: 8px; }
.dash-prog-row { display: flex; align-items: center; gap: 8px; }
.dash-prog-name {
  font-size: 7.5px; font-weight: 600; letter-spacing: 1px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  width: 70px; flex-shrink: 0;
}
.dash-track { flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.dash-fill { height: 100%; border-radius: 2px; transform-origin: left; transform: scaleX(0); transition: transform 1.2s ease; }
.dash-fill.dash-animated { transform: scaleX(1); }
.dash-prog-row:nth-child(1) .dash-fill { transition-delay: 0.1s; }
.dash-prog-row:nth-child(2) .dash-fill { transition-delay: 0.3s; }
.dash-prog-row:nth-child(3) .dash-fill { transition-delay: 0.5s; }
.dash-fill-gold  { background: var(--gold); }
.dash-fill-white { background: rgba(255,255,255,0.45); }
.dash-fill-dim   { background: rgba(201,168,76,0.45); }
.dash-pct { font-size: 9px; font-weight: 700; color: rgba(201,168,76,0.75); width: 24px; text-align: right; }

.dash-footer {
  padding: 7px 15px 9px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1; flex-shrink: 0; margin-top: auto;
  border-top: 1px solid rgba(201,168,76,0.06);
}
.dash-handle { font-size: 7px; font-weight: 600; letter-spacing: 1.5px; color: rgba(201,168,76,0.2); }
.dash-badge  {
  border: 1px solid var(--gold20); border-radius: 20px; padding: 2px 8px;
  font-size: 7px; font-weight: 600; letter-spacing: 1px;
  color: rgba(201,168,76,0.35); text-transform: uppercase;
}
