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

:root {
  --navy-deep:   #fffaf4;
  --navy-mid:    #f8efe4;
  --navy-light:  #eedfcc;
  --navy-card:   #f4e8d8;
  --gold:        #C9A84C;
  --gold-light:  #b8942d;
  --gold-pale:   rgba(201,168,76,.12);
  --gold-border: rgba(201,168,76,.35);
  --white:       #1A2733;
  --text-muted:  #7a8a98;
  --text-sec:    #4a6070;
  --border:      rgba(0,0,0,.1);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-gold: 0 0 40px rgba(201,168,76,.15);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

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

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ─── UTILITIES ───────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 99px;
  border: 1px solid var(--gold-border);
  background: var(--gold-pale);
  color: var(--gold-light); font-size: .78rem; font-weight: 500;
  font-family: 'Outfit', sans-serif; letter-spacing: .04em;
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: .8rem; font-weight: 600;
  font-family: 'Outfit', sans-serif; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold); border-radius: 99px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  margin-bottom: 16px; letter-spacing: -.02em;
}
.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem; color: var(--text-sec);
  max-width: 560px; line-height: 1.7;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: var(--transition); border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(0,0,0,.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--gold-border); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.1), var(--shadow-gold);
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,250,244,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column;
  font-family: 'Outfit', sans-serif;
}
.nav-logo-name {
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--white);
}
.nav-logo-title {
  font-size: .7rem; color: var(--gold); font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text-sec);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active { font-weight: 600; }
.nav-cta {
  padding: 10px 22px; font-size: .85rem;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 99px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--navy-deep); z-index: 101;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif; font-size: 1.6rem;
  font-weight: 700; color: var(--white); transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ─── PAGE HERO (subpages) ────────────────────────────────── */
.page-hero {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 120px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb, .page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--text-muted);
  font-family: 'Outfit', sans-serif; margin-bottom: 20px;
}
.breadcrumb a, .page-hero-breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover, .page-hero-breadcrumb a:hover { color: var(--gold); }
.breadcrumb span, .page-hero-breadcrumb span:last-child { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px;
}
.page-hero-title span { color: var(--gold); }
.page-hero-sub {
  font-size: 1.05rem; color: var(--text-sec);
  max-width: 540px; line-height: 1.7;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,.05) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(120,90,60,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,90,60,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-label { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,76,.4);
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-sec); max-width: 480px;
  line-height: 1.75; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-cta-primary { font-size: 1rem; padding: 16px 32px; }
.hero-credentials {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-photo-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero-photo-glow {
  position: absolute; width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  filter: blur(30px);
}
.hero-photo-ring {
  position: relative; z-index: 1;
  width: 480px; height: auto;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-ring img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
}
.hero-photo-ring::after {
  display: none;
}
.hero-photo-badge {
  position: absolute; bottom: 32px; left: -20px; z-index: 2;
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.hero-photo-badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-photo-badge-text { font-family: 'Outfit', sans-serif; }
.hero-photo-badge-text strong { display: block; font-size: 1.1rem; color: var(--gold); }
.hero-photo-badge-text span { font-size: .75rem; color: var(--text-muted); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: .75rem; font-family: 'Outfit', sans-serif;
  letter-spacing: .08em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 0 100%);
  padding-bottom: 50px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Outfit', sans-serif; font-size: 2.4rem;
  font-weight: 800; color: var(--gold); letter-spacing: -.03em;
  line-height: 1;
}
.stat-label {
  font-size: .82rem; color: var(--text-muted); margin-top: 6px;
  font-weight: 500; letter-spacing: .02em;
}

/* ─── SOBRE ───────────────────────────────────────────────── */
.sobre { background: var(--navy-deep); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: center;
}
.sobre-photo-wrap { position: relative; }
.sobre-photo-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  aspect-ratio: 3/4;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
}
.sobre-photo-box img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.sobre-photo-box::after {
  display: none;
}
.sobre-photo-deco {
  position: absolute; top: -16px; left: -16px;
  width: 120px; height: 120px; border-radius: var(--radius);
  border: 2px solid var(--gold); z-index: -1;
  opacity: .4;
}
.sobre-photo-cro {
  position: absolute; bottom: 24px; right: -24px;
  background: var(--gold); color: var(--navy-deep);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  z-index: 10;
}
.sobre-photo-cro strong { display: block; font-size: 1.2rem; }
.sobre-photo-cro span { font-size: .72rem; font-weight: 500; }
.sobre-bio {
  font-size: 1.05rem; color: var(--text-sec); line-height: 1.8;
  margin-bottom: 36px;
}
.sobre-bio strong { color: var(--white); }
.sobre-credentials {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px;
}
.credential-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.credential-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 2px;
}
.credential-text strong { display: block; font-size: .92rem; font-weight: 600; margin-bottom: 2px; }
.credential-text span { font-size: .82rem; color: var(--text-muted); }

/* ─── SERVIÇOS ────────────────────────────────────────────── */
.servicos { background: var(--navy-mid); }
.servicos-header { text-align: center; margin-bottom: 56px; }
.servicos-header .section-subtitle { margin: 0 auto; }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.servico-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition); cursor: default;
  position: relative; overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.servico-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.servico-card:hover { border-color: var(--gold-border); transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.1), 0 0 0 1px rgba(201,168,76,.2), 0 0 30px rgba(201,168,76,.08); }
.servico-card:hover::after { transform: scaleX(1); }
.servico-img {
  margin: -28px -28px 22px -28px;
  height: 175px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}
.servico-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.servico-card:hover .servico-img img { transform: scale(1.07); }
.servico-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.45) 100%);
  pointer-events: none;
}
.servico-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--transition);
}
.servico-name {
  font-family: 'Outfit', sans-serif; font-size: 1.05rem;
  font-weight: 600; margin-bottom: 8px;
}
.servico-desc {
  font-size: .84rem; color: var(--text-muted); line-height: 1.6;
}

/* ─── DIFERENCIAIS ────────────────────────────────────────── */
.diferenciais { background: var(--navy-deep); }
.diferenciais-header { margin-bottom: 56px; }
.diferenciais-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.diferencial-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.diferencial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.diferencial-card:hover { border-color: var(--gold-border); transform: translateY(-6px); }
.diferencial-card:hover::before { opacity: 1; }
.diferencial-num {
  font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 800;
  color: rgba(201,168,76,.15); line-height: 1;
  margin-bottom: 8px;
}
.diferencial-icon {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}
.diferencial-title {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 12px;
}
.diferencial-desc {
  font-size: .9rem; color: var(--text-sec); line-height: 1.75;
}

/* ─── COMO FUNCIONA ───────────────────────────────────────── */
.como-funciona { background: var(--navy-mid); }
.como-funciona-header { text-align: center; margin-bottom: 64px; }
.como-funciona-header .section-subtitle { margin: 0 auto; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px; position: relative;
}
.step-item {
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step-number-wrap {
  display: flex; align-items: center; gap: 14px; margin-bottom: 4px;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0; transition: var(--transition);
}
.step-connector {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--gold-border), transparent);
}
.step-title {
  font-size: 1.05rem; font-weight: 600; font-family: 'Outfit', sans-serif;
}
.step-desc {
  font-size: .86rem; color: var(--text-sec); line-height: 1.7;
}

/* ─── TECNOLOGIA ──────────────────────────────────────────── */
.tecnologia { background: var(--navy-deep); }
.tecnologia-header { text-align: center; margin-bottom: 56px; }
.tecnologia-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.tecnologia-grid .tech-card:nth-child(-n+4) { grid-column: span 3; }
.tecnologia-grid .tech-card:nth-child(n+5)  { grid-column: span 4; }
.tech-card {
  background: rgba(255,255,255,.72); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tech-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.1), 0 0 20px rgba(201,168,76,.07); }
.tech-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; transition: var(--transition);
}
.tech-name {
  font-family: 'Outfit', sans-serif; font-size: .9rem;
  font-weight: 600; margin-bottom: 6px;
}
.tech-desc { font-size: .76rem; color: var(--text-muted); line-height: 1.5; }
.tech-img {
  width: 100%; height: 148px;
  border-radius: var(--radius-sm);
  background: rgba(248,240,228,.55);
  border: 1px solid rgba(201,168,76,.12);
  overflow: hidden;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.tech-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 10px;
  transition: transform .35s ease;
}
.tech-card:hover .tech-img img { transform: scale(1.06); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--navy-mid); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start;
}
.faq-sidebar .section-subtitle { margin-top: 16px; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: var(--transition);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.faq-item.open { border-color: var(--gold-border); background: rgba(255,255,255,.9); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 600;
  gap: 16px; transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0; transition: transform var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease, padding .38s ease;
  font-size: .9rem; color: var(--text-sec); line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px; padding: 0 24px 20px;
}

/* ─── CTA FINAL ───────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.cta-final-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.cta-final-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 96px 0;
}
.cta-final-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 20px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.cta-final-sub {
  font-size: 1.05rem; color: var(--text-sec);
  max-width: 500px; margin: 0 auto 44px; line-height: 1.7;
}
.cta-final-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-final-whatsapp {
  background: #25D366; color: #ffffff; font-size: 1rem; padding: 18px 36px;
}
.cta-final-whatsapp:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,.3); }
.cta-trust {
  margin-top: 48px; display: flex; align-items: center;
  justify-content: center; gap: 24px; flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-muted); font-family: 'Outfit', sans-serif;
}
.cta-trust-item svg { color: var(--gold); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-name {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem;
  font-weight: 700; margin-bottom: 4px;
}
.footer-logo-title {
  font-size: .78rem; color: var(--gold); font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-desc {
  font-size: .85rem; color: var(--text-muted); line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem; color: var(--text-muted); transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-muted); margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .78rem; color: var(--text-muted); }
.footer-cro {
  font-size: .78rem; color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
}
.footer-cro strong { color: var(--gold); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: #ffffff;
  border-radius: 60px; padding: 14px 22px 14px 16px;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .9rem;
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 16px 48px rgba(37,211,102,.5); }
.whatsapp-pulse {
  position: absolute; inset: 0; border-radius: 60px;
  background: #25D366; animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ─── PROGRESS BAR ─────────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: shimmerBar 2s linear infinite;
  box-shadow: 0 0 12px rgba(201,168,76,.7);
  pointer-events: none;
}
@keyframes shimmerBar {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ─── HERO FLOATING ORBS ────────────────────────────────────── */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(201,168,76,.09) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation: orbFloat1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  bottom: 0; left: 2%;
  animation: orbFloat2 12s ease-in-out infinite;
}
.hero-orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  top: 45%; left: 38%;
  animation: orbFloat3 7s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(-25px, 20px) scale(1.04); }
  66%  { transform: translate(18px,-28px) scale(.96); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%  { transform: translate(35px,-18px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0); opacity:.4; }
  50%  { transform: translate(-18px,14px); opacity:.9; }
}

/* ─── HERO PHOTO RING PULSE ─────────────────────────────────── */
@keyframes ringPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.25), 0 0 40px rgba(201,168,76,.08); }
  50%     { box-shadow: 0 0 0 14px rgba(201,168,76,0), 0 0 60px rgba(201,168,76,.15); }
}
.hero-photo-ring { animation: ringPulse 4s ease-in-out infinite; }

/* ─── BUTTON SHIMMER ────────────────────────────────────────── */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -110%; width: 65%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  pointer-events: none; transition: left .55s ease;
}
.btn-gold:hover::before { left: 160%; }

/* ─── CARD SPOTLIGHT MOUSE EFFECT ──────────────────────────── */
.servico-card::before, .tech-card::before, .diferencial-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(380px circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(201,168,76,.09), transparent 65%);
  opacity: 0; transition: opacity .35s; pointer-events: none; z-index: 0;
}
.servico-card:hover::before,
.tech-card:hover::before,
.diferencial-card:hover::after { opacity: 1; }

/* ─── ICON HOVER ANIMATIONS ─────────────────────────────────── */
.servico-card:hover .servico-icon { background: rgba(201,168,76,.22); transform: scale(1.1) rotate(-4deg); }
.tech-card:hover .tech-icon      { background: rgba(201,168,76,.22); transform: scale(1.12); }
.diferencial-card:hover .diferencial-icon { background: rgba(201,168,76,.22); transform: scale(1.08) rotate(3deg); }

/* ─── STEP NUMBER GLOW ──────────────────────────────────────── */
.step-item:hover .step-number {
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(201,168,76,.4);
  transform: scale(1.1);
  background: rgba(201,168,76,.18);
}

/* ─── ANIMATED STAT COUNTER ─────────────────────────────────── */
@keyframes countPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.stat-number.pop { animation: countPop .4s cubic-bezier(.34,1.56,.64,1); }

/* ─── DEPOIMENTOS MARQUEE ────────────────────────────────── */
.depoimentos {
  background: var(--navy-mid);
  padding: 96px 0 80px;
}
.depoimentos-header {
  text-align: center;
  margin-bottom: 64px;
}
.dep-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dep-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.dep-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: depLeft 50s linear infinite;
}
.dep-track--reverse {
  animation: depRight 44s linear infinite;
}
.dep-marquee:hover .dep-track { animation-play-state: paused; }
.dep-card {
  flex-shrink: 0;
  width: 300px;
  padding: 22px 24px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(0,0,0,.05);
}
.dep-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dep-stars {
  color: #F5A623;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}
.dep-google-icon {
  flex-shrink: 0;
  opacity: .85;
}
.dep-quote {
  font-size: 13.5px;
  line-height: 1.65;
  color: #3a4a56;
  flex: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.07);
  margin-top: auto;
}
.dep-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}
.dep-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a2733;
  line-height: 1.3;
}
@keyframes depLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes depRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-photo-wrap { max-width: 340px; margin: 0 auto; }
  .diferenciais-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .servicos-grid { grid-template-columns: 1fr; gap: 14px; }
  .servico-card[style*="grid-column"] { grid-column: 1 !important; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-connector { display: none; }
  .tecnologia-grid { grid-template-columns: 1fr; gap: 14px; }
  .tech-card[style*="grid-column"] { grid-column: 1 !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float .float-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .diferenciais-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; width: fit-content; }
}
