/* ============================================
   COGNITESTE — Landing Page
   Design: Dark Neon | Roxo + Dourado
   ============================================ */

:root {
  --bg: #07050F;
  --bg-2: #0D0A1A;
  --bg-card: rgba(79, 60, 96, 0.12);
  --purple: #4F3C60;
  --purple-mid: #7B5EA7;
  --purple-bright: #A67FDB;
  --gold: #C79C3D;
  --gold-light: #F0D98A;
  --gold-dark: #B6822A;
  --white: #FFFFFF;
  --text: #C8BEDD;
  --text-muted: #8A7FA0;
  --border: rgba(167, 127, 219, 0.2);
  --glow-purple: 0 0 20px rgba(167, 127, 219, 0.4);
  --glow-gold: 0 0 20px rgba(199, 156, 61, 0.4);
  --font-title: 'Montserrat', sans-serif;
  --font-text: 'Lato', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-mid); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.2; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-purple {
  color: var(--purple-bright);
  text-shadow: 0 0 10px rgba(167, 127, 219, 0.6), 0 0 30px rgba(167, 127, 219, 0.3);
}

.section-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

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

/* ── Container ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Section ── */
section { padding: 100px 0; position: relative; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(199, 156, 61, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(199, 156, 61, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--purple-bright);
  color: var(--purple-bright);
  background: rgba(167, 127, 219, 0.08);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ── Glassmorphism Card ── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(167, 127, 219, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple), 0 20px 40px rgba(0,0,0,0.3);
}

/* ── Divider ── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple-bright));
  border-radius: 2px;
  margin: 20px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
#header.scrolled {
  background: rgba(7, 5, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
}
.logo img { height: 40px; width: auto; }
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
#neural-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.7;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 156, 61, 0.12);
  border: 1px solid rgba(199, 156, 61, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-badge::before { content: '✦'; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title .highlight {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--purple-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brain-ring {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotate 20s linear infinite;
}
.ring-1 {
  inset: 0;
  border-color: rgba(167, 127, 219, 0.3);
}
.ring-2 {
  inset: 20px;
  border-color: rgba(199, 156, 61, 0.2);
  animation-duration: 15s;
  animation-direction: reverse;
}
.ring-3 {
  inset: 50px;
  border-color: rgba(167, 127, 219, 0.15);
  animation-duration: 25s;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.brain-icon-wrap {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(79, 60, 96, 0.6) 0%, rgba(7, 5, 15, 0.9) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(167, 127, 219, 0.3), inset 0 0 30px rgba(167, 127, 219, 0.1);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 1;
}
.brain-icon-wrap svg { width: 90px; height: 90px; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 60px rgba(167, 127, 219, 0.3), inset 0 0 30px rgba(167, 127, 219, 0.1); }
  50% { box-shadow: 0 0 80px rgba(167, 127, 219, 0.5), inset 0 0 40px rgba(167, 127, 219, 0.2); }
}

.floating-tag {
  position: absolute;
  background: rgba(13, 10, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-title);
  backdrop-filter: blur(10px);
  color: var(--white);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.floating-tag .tag-icon { font-size: 1.1rem; }
.tag-1 { top: 30px; left: -20px; animation-delay: 0s; }
.tag-2 { top: 30px; right: -20px; animation-delay: 1s; }
.tag-3 { bottom: 60px; left: -30px; animation-delay: 2s; }
.tag-4 { bottom: 60px; right: -30px; animation-delay: 0.5s; }

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

/* ── Marquee ── */
.marquee-section {
  padding: 28px 0;
  background: linear-gradient(90deg, transparent, rgba(79, 60, 96, 0.15), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOBRE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sobre {
  background: var(--bg-2);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-image-wrap {
  position: relative;
}
.sobre-image {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.sobre-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(79, 60, 96, 0.3) 0%, rgba(13, 10, 26, 0.9) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-image-overlay {
  position: absolute;
  bottom: 24px; left: -24px;
  background: rgba(7, 5, 15, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  min-width: 200px;
}
.overlay-stat { font-family: var(--font-title); }
.overlay-stat .num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.overlay-stat p { font-size: 0.8rem; color: var(--text-muted); }

.sobre-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(79, 60, 96, 0.08);
  border: 1px solid rgba(79, 60, 96, 0.2);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border);
  background: rgba(79, 60, 96, 0.15);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(199, 156, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.feature-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVIÇOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#servicos {
  position: relative;
  overflow: hidden;
}
#servicos::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79, 60, 96, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.servicos-header { text-align: center; margin-bottom: 64px; }
.servicos-header .section-desc { margin: 0 auto; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.servico-card {
  padding: 28px 24px;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 156, 61, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.servico-card:hover::before { opacity: 1; }

.servico-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 60, 96, 0.4), rgba(13, 10, 26, 0.8));
  border: 1px solid rgba(167, 127, 219, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.servico-card:hover .servico-icon {
  background: linear-gradient(135deg, rgba(199, 156, 61, 0.2), rgba(79, 60, 96, 0.4));
  border-color: rgba(199, 156, 61, 0.4);
  box-shadow: 0 0 20px rgba(199, 156, 61, 0.2);
}
.servico-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-title);
}
.servico-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.servico-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-title);
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(199, 156, 61, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(199, 156, 61, 0.2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PARA QUEM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#para-quem {
  background: var(--bg-2);
}
.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.para-quem-content .section-desc { margin-bottom: 36px; }
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(79, 60, 96, 0.1);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.audience-item:hover {
  background: rgba(79, 60, 96, 0.2);
  transform: translateX(4px);
}
.audience-item .icon { font-size: 1.3rem; }
.audience-item strong {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.audience-item span { font-size: 0.8rem; color: var(--text-muted); }

.para-quem-visual {
  position: relative;
}
.pq-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pq-card {
  padding: 24px 20px;
  text-align: center;
}
.pq-card .pq-icon { font-size: 2rem; margin-bottom: 10px; }
.pq-card h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}
.pq-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMO FUNCIONA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#como-funciona .container > .section-label,
#como-funciona .container > .section-title,
#como-funciona .container > .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(199, 156, 61, 0.4);
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DEPOIMENTOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#depoimentos {
  background: var(--bg-2);
  overflow: hidden;
}
.depoimentos-header { text-align: center; margin-bottom: 60px; }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card { padding: 32px; }
.depo-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.depo-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.depo-text::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.depo-info strong { display: block; font-size: 0.88rem; color: var(--white); font-family: var(--font-title); }
.depo-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#faq { position: relative; }
#faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-sm);
  background: rgba(79, 60, 96, 0.08);
  border: 1px solid rgba(79, 60, 96, 0.2);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(167, 127, 219, 0.35);
  background: rgba(79, 60, 96, 0.14);
}
.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  gap: 12px;
}
.faq-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(167, 127, 219, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--purple-bright);
  font-size: 1rem;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: rgba(167, 127, 219, 0.3); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta-box {
  padding: 36px;
  text-align: center;
}
.faq-cta-box h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.faq-cta-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOCALIZAÇÃO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#localizacao { background: var(--bg-2); }
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.localizacao-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(79, 60, 96, 0.1);
  border: 1px solid var(--border);
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(199, 156, 61, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-text strong { display: block; font-family: var(--font-title); font-size: 0.88rem; color: var(--white); margin-bottom: 4px; }
.info-text span { font-size: 0.82rem; color: var(--text-muted); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  filter: invert(90%) hue-rotate(180deg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA FINAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(79, 60, 96, 0.3) 0%, transparent 65%);
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-btn-wrap { display: flex; justify-content: center; }
.btn-cta-main {
  padding: 18px 48px;
  font-size: 1.05rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.btn-cta-main::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--gold), var(--purple-bright), var(--gold));
  z-index: -1;
  animation: borderAnim 3s linear infinite;
  background-size: 200%;
}
@keyframes borderAnim { to { background-position: 200% center; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  background: #040310;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(79, 60, 96, 0.2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(167, 127, 219, 0.2);
  border-color: var(--purple-bright);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(79, 60, 96, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FLOATING WHATSAPP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: ripple 2s ease-out infinite;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.15);
  animation: ripple 2s ease-out infinite 0.5s;
}
@keyframes ripple {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COOKIE BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(7, 5, 15, 0.96);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: none;
  backdrop-filter: blur(20px);
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.82rem; color: var(--text-muted); max-width: 640px; line-height: 1.6; }
.cookie-text a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-title);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-cookie-accept {
  background: var(--gold);
  color: var(--bg);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .sobre-grid, .para-quem-grid, .faq-grid, .localizacao-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-image-overlay { left: 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(7, 5, 15, 0.97);
    justify-content: center;
    align-items: center;
    gap: 36px;
    font-size: 1.2rem;
    z-index: 200;
  }
  .hamburger { display: flex; z-index: 201; }
}

@media (max-width: 480px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pq-cards { grid-template-columns: 1fr; }
  .brain-ring { width: 280px; height: 280px; }
}
