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

:root {
  --bg:      #0B0B0B;
  --bg2:     #111111;
  --bg3:     #161616;
  --bg4:     #1a1a1a;
  --accent:  #F5B400;
  --accent2: #FFD060;
  --text:    #FFFFFF;
  --text2:   rgba(255,255,255,0.65);
  --text3:   rgba(255,255,255,0.35);
  --border:  rgba(245,180,0,0.18);
  --radius:  16px;
  --radius-lg: 24px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  background: var(--accent);
  color: #0B0B0B;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise texture global ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ── Ambient orbs (glow spots) ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.orb-gold {
  background: radial-gradient(circle, rgba(245,180,0,0.18) 0%, transparent 70%);
}

.orb-warm {
  background: radial-gradient(circle, rgba(200,120,20,0.12) 0%, transparent 70%);
}

.orb-cold {
  background: radial-gradient(circle, rgba(245,180,0,0.06) 0%, transparent 70%);
}

/* ── Dot grid pattern ── */
.dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(245,180,0,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* ── Linha divisória com gradiente ── */
.divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,180,0,0.2), transparent);
  border: none;
  margin: 0;
}

/* ── Geometric corner accent ── */
.geo-corner {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

.geo-corner-tr {
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  border-radius: 0 0 0 100%;
}

.geo-corner-bl {
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  border-bottom: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  border-radius: 0 100% 0 0;
}

/* ── Decorative rings ── */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,180,0,0.07);
  pointer-events: none;
}

/* ── Scan line (very subtle horizontal stripe) ── */
.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  opacity: 1;
}

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

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.preloader-logo {
  width: 160px;
  height: auto;
  opacity: 0;
}

.preloader-type {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text2);
  min-height: 1.2em;
}

.preloader-bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.05s linear;
}

/* ── Section Nav Dots ── */
.section-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-dot.active {
  background: var(--accent);
  transform: scale(1.5);
}

.nav-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.nav-dot:hover::after { opacity: 1; }

@media (max-width: 768px) { .section-nav { display: none; } }

/* ── Header ── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}

#header.scrolled {
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(245,180,0,0.08);
}

.header-logo img {
  height: 52px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--accent); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0B0B0B;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
}

.btn-whatsapp:hover { background: var(--accent2); transform: translateY(-1px); }

.btn-whatsapp svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg2);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 900px) {
  #header { padding: 16px 24px; }
  #header.scrolled { padding: 12px 24px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── Common Section Styles ── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0B0B0B;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,180,0,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 60px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(11,11,11,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(11,11,11,0.85) 0%, transparent 70%);
}

/* Glow central no hero */
.hero-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,180,0,0.14) 0%, rgba(245,180,0,0.04) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  animation: hero-glow-pulse 6s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,180,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,180,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,180,0,0.08);
  border: 1px solid rgba(245,180,0,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.7;
  margin: 0 auto 40px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  padding: 11px 22px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.hero-ctas .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(245,180,0,0.2);
}

.hero-ctas .btn-outline {
  padding: 11px 4px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  color: var(--text2);
}

.hero-ctas .btn-outline:hover {
  color: var(--accent);
  transform: none;
}

@media (max-width: 768px) {
  #hero { padding: 120px 24px 80px; }
  .hero-title { font-size: clamp(38px, 9vw, 52px); }
}

/* ── Dores Section ── */
#dores {
  background: var(--bg2);
  padding: 100px 60px;
}

.dores-header {
  text-align: center;
  margin-bottom: 64px;
}

.dores-header .section-title { margin-bottom: 0; }

.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.dor-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.dor-card:hover {
  border-color: rgba(245,180,0,0.2);
  transform: translateY(-3px);
}

.dor-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,180,0,0.08);
  border: 1px solid rgba(245,180,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.dor-text h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.dor-text p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.dores-footer {
  text-align: center;
  margin-top: 48px;
}

.dores-footer p {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) { .dores-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  #dores { padding: 80px 24px; }
  .dores-grid { grid-template-columns: 1fr; }
}

/* ── Soluções ── */
#solucoes {
  background: var(--bg);
  padding: 100px 60px;
}

.solucoes-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.solucao-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.solucao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 30px rgba(245,180,0,0.06);
  border-color: rgba(245,180,0,0.2);
}

.card-preview {
  height: 220px;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-preview-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
  transition: filter 0.4s, transform 0.5s;
}

.solucao-card:hover .card-preview-photo {
  filter: brightness(0.45) saturate(0.9);
  transform: scale(1.05);
}

.card-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245,180,0,0.05), rgba(11,11,11,0.6));
}

.card-preview-content {
  width: 85%;
  position: relative;
  z-index: 2;
}

/* Sistema preview */
.sys-preview { display: flex; flex-direction: column; gap: 6px; }
.sys-row { display: flex; gap: 6px; }
.sys-block { border-radius: 6px; background: rgba(245,180,0,0.1); border: 1px solid rgba(245,180,0,0.12); height: 28px; }
.sys-block.wide { flex: 2; }
.sys-block.narrow { flex: 1; }
.sys-block.gold { background: rgba(245,180,0,0.25); }
.sys-block.full { width: 100%; height: 40px; display: flex; align-items: center; justify-content: center; }
.sys-bar { width: 60%; height: 3px; background: var(--accent); border-radius: 2px; }

/* Chat preview */
.chat-preview { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.chat-bubble { padding: 8px 12px; border-radius: 10px; font-size: 11px; color: var(--text2); max-width: 80%; line-height: 1.4; }
.chat-bubble.received { background: rgba(255,255,255,0.06); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-bubble.sent { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.2); color: #7DF3A3; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-bubble .sender { font-weight: 600; color: var(--accent); font-size: 10px; margin-bottom: 3px; }
.chat-label { font-size: 9px; color: var(--text3); text-align: center; font-family: var(--font-head); letter-spacing: 0.1em; text-transform: uppercase; }

/* Site preview */
.site-preview { width: 100%; }
.site-nav-fake { height: 20px; background: rgba(255,255,255,0.04); border-radius: 5px; margin-bottom: 8px; }
.site-hero-fake { height: 60px; background: linear-gradient(135deg, rgba(245,180,0,0.1), rgba(245,180,0,0.03)); border-radius: 8px; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; }
.site-hero-text { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: rgba(245,180,0,0.6); }
.site-cards-fake { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.site-card-fake { height: 36px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid rgba(255,255,255,0.04); }

.card-body {
  padding: 28px 28px 32px;
}

.card-tag {
  display: inline-block;
  background: rgba(245,180,0,0.08);
  border: 1px solid rgba(245,180,0,0.2);
  border-radius: 100px;
  padding: 3px 12px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.15;
}

.card-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.feature-list li {
  font-size: 13px;
  color: var(--text2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}

.card-cta:hover { gap: 10px; }

@media (max-width: 900px) { .solucoes-grid { grid-template-columns: 1fr; max-width: 480px; } }
@media (max-width: 600px) { #solucoes { padding: 80px 24px; } }

/* ── Pacote ── */
#pacote {
  background: var(--bg2);
  padding: 100px 60px;
}

.pacote-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid rgba(245,180,0,0.15);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  text-align: center;
}

.pacote-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(245,180,0,0.15), transparent 50%, rgba(245,180,0,0.08));
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.pacote-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pacote-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.pacote-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.pacote-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245,180,0,0.15);
  border: 1px solid rgba(245,180,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
}

.pacote-desc {
  font-size: 1rem;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  #pacote { padding: 80px 24px; }
  .pacote-wrap { padding: 48px 24px; }
  .pacote-items { flex-direction: column; align-items: center; gap: 16px; }
}

/* ── Diferenciais ── */
#diferenciais {
  background: var(--bg);
  padding: 100px 60px;
}

.dif-header {
  text-align: center;
  margin-bottom: 64px;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.dif-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.dif-card:hover {
  border-color: rgba(245,180,0,0.2);
  transform: translateY(-4px);
}

.dif-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245,180,0,0.08);
  border: 1px solid rgba(245,180,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.dif-card h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.dif-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

@media (max-width: 900px) { .dif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  #diferenciais { padding: 80px 24px; }
  .dif-grid { grid-template-columns: 1fr; }
}

/* ── Números ── */
#numeros {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
}

.numeros-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.12) saturate(0.5);
}

.numeros-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,180,0,0.06) 0%, rgba(11,11,11,0.4) 50%, rgba(245,180,0,0.03) 100%);
}

.numeros-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,180,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,180,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.numeros-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.numeros-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.numero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,180,0,0.15);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}

.numero-card:hover {
  background: rgba(245,180,0,0.05);
  border-color: rgba(245,180,0,0.3);
}

.numero-value {
  font-family: var(--font-head);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.numero-label {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

.numero-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245,180,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 16px;
}

@media (max-width: 900px) { .numeros-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  #numeros { padding: 80px 24px; }
  .numeros-grid { gap: 16px; }
}

/* ── Depoimentos ── */
#depoimentos {
  background: var(--bg2);
  padding: 100px 60px;
}

.dep-header { text-align: center; margin-bottom: 64px; }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.dep-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s;
}

.dep-card:hover { border-color: rgba(245,180,0,0.2); }

.dep-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.dep-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(245,180,0,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.dep-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.dep-role {
  font-size: 12px;
  color: var(--text3);
}

@media (max-width: 900px) { .dep-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (max-width: 600px) { #depoimentos { padding: 80px 24px; } }

/* ── Sobre ── */
#sobre {
  background: var(--bg);
  padding: 100px 60px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-text .section-title { margin-bottom: 20px; }

.sobre-body {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sobre-highlight {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.sobre-visual {
  position: relative;
}

.sobre-card-main {
  background: var(--bg2);
  border: 1px solid rgba(245,180,0,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  z-index: 2;
}

.sobre-card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245,180,0,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sobre-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sobre-logo-area img { height: 56px; width: auto; }

.sobre-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.sobre-logo-text span { color: var(--accent); }

.sobre-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sobre-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-line {
  width: 3px;
  height: 36px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.pillar-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.pillar-sub { font-size: 12px; color: var(--text3); font-family: var(--font-body); font-weight: 400; }

@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) { #sobre { padding: 80px 24px; } }

/* ── CTA Final ── */
#cta-final {
  background: linear-gradient(135deg, #161610 0%, #0B0B0B 50%, #12100A 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,180,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
}

.cta-content .section-sub {
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  max-width: 480px;
}

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

@media (max-width: 600px) { #cta-final { padding: 80px 24px; } }

/* ── Footer ── */
#footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }

.footer-tagline {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-link:hover {
  background: rgba(245,180,0,0.1);
  border-color: rgba(245,180,0,0.3);
  color: var(--accent);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text2);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 12px;
}

.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 12px;
  color: var(--text3);
}

.footer-copy a { color: var(--accent); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) {
  #footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(245,180,0,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── WhatsApp FAB ── */
.wapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.wapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.wapp-fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: fab-pulse 2.5s ease-in-out infinite;
}

@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}
