/* ============================================================
   SECTIONS.CSS — Estilos específicos de cada bloco da página
   ------------------------------------------------------------
   Organizado na MESMA ORDEM em que as seções aparecem no
   index.html, para facilitar a leitura conjunta:
     1. HERO          — banner topo com drone SVG e CTAs
     2. TICKER        — barra dourada com texto rolando
     3. SERVICES      — grade 3x2 de cards de serviços
     4. SHOWREEL      — moldura do vídeo de demonstração
     5. PORTFOLIO     — grade assimétrica de trabalhos
     6. SHOP (LOJA)   — abas Mercado Livre / Shopee / Ali
     7. ABOUT         — bloco "Sobre nós" com cards de stats
     8. PROCESS       — 4 passos do nosso processo
     9. TESTIMONIALS  — 3 depoimentos
    10. CTA           — chamada final "Pronto para voar?"
   ============================================================ */


/* ============================================================
   1) HERO — banner inicial em altura cheia
   Estrutura: fundo em camadas (bg + grid de linhas) + texto à
   esquerda + visual do drone à direita + métricas no rodapé.
   "Letterbox" cinematográfico simulado por ::before/::after.
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Camada 1 — gradiente radial dourado/azul */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 55% 45%, rgba(200,132,10,.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(26,40,96,.25) 0%, transparent 55%),
    linear-gradient(160deg, #030508 0%, #080c14 55%, #060810 100%);
}

/* Camada 2 e 3 — grid de linhas verticais e horizontais sutis */
.hero-vlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(200,132,10,.03) 119px, rgba(200,132,10,.03) 120px);
}
.hero-hlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(200,132,10,.025) 79px, rgba(200,132,10,.025) 80px);
}

/* Letterbox — barras pretas em cima e embaixo (estilo cinema) */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--black);
  z-index: 3;
  pointer-events: none;
}
.hero::before { top: 0; }
.hero::after  { bottom: 0; }

/* Coluna esquerda — textos e CTAs (animação de entrada via @keyframes fadeUp) */
.hero-left {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp .8s ease .6s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 11vw, 11rem);
  line-height: .88;
  letter-spacing: .02em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1.1s ease .9s forwards;
}
.hero-title em {
  color: var(--gold2);
  font-style: normal;
  display: block;
}
.hero-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 36px 0;
  opacity: 0;
  animation: fadeUp .6s ease 1.4s forwards;
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 460px;
  opacity: 0;
  animation: fadeUp .8s ease 1.5s forwards;
  font-style: italic;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp .8s ease 1.7s forwards;
  flex-wrap: wrap;
}

/* Coluna direita — drone SVG ocupando 55vw, com clip-path animado */
.hero-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  z-index: 1;
  opacity: 0;
  animation: heroImgReveal 2s ease 1s forwards;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
}
/* Gradiente lateral preto que dissolve a borda esquerda da imagem */
.hero-img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--black), transparent);
  z-index: 2;
}
/* Gradiente vertical para fundir topo/base com o fundo do site */
.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%);
  z-index: 2;
}
.hero-drone-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: sepia(30%) hue-rotate(10deg) saturate(1.4);
}

/* Métricas no canto inferior direito (500+ projetos, 7K horas, 4K) */
.hero-stats {
  position: absolute;
  bottom: 100px;
  right: 60px;
  z-index: 4;
  display: flex;
  gap: 48px;
}
.hstat {
  text-align: right;
  opacity: 0;
  animation: fadeUp .8s ease 2.2s forwards;
}
.hstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold2);
}
.hstat-num sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.hstat-lbl {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Indicador "scroll" no canto inferior esquerdo */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 60px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .6s ease 2.4s forwards;
}
.scroll-indicator span {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  animation: scanLine 2.5s ease-in-out infinite;
}


/* ============================================================
   2) TICKER — barra dourada rolando texto infinito
   ============================================================ */
.ticker-bar {
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: tick 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 20px;
}
.tick-sep {
  opacity: .5;
  font-size: .9rem;
}


/* ============================================================
   3) SERVICES — grade 3x2 com 6 serviços
   Cada card tem um número grande "fantasma" de fundo, ícone
   SVG, nome, descrição e link "Saiba mais →".
   ============================================================ */
.services-section {
  background: var(--dark);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);   /* o gap colore as bordas internas */
}
.svc-card {
  background: var(--dark);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background .3s;
}
/* Linha dourada que cresce na base no hover */
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.svc-card:hover           { background: rgba(200,132,10,.04); }
.svc-card:hover::before   { transform: scaleX(1); }

.svc-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(200,132,10,.05);
  position: absolute;
  top: 16px;
  right: 28px;
  pointer-events: none;
}
.svc-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: .8;
}
.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 18px;
}
.svc-desc {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: 'Space Mono', monospace;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap .22s;
}
.svc-card:hover .svc-more { gap: 14px; }


/* ============================================================
   4) SHOWREEL — moldura do vídeo de demonstração
   Não é um <video> real: é um placeholder cinematográfico
   com cantos decorativos, scan lines e botão de play central.
   ============================================================ */
.showreel-section {
  padding: 0 60px 130px;
}
.showreel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--panel);
  overflow: hidden;
  cursor: none;
}
.showreel-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,132,10,.07) 0%, transparent 50%, rgba(26,40,96,.15) 100%);
}
/* Linhas horizontais sutis (efeito scanline) */
.showreel-scan {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(200,132,10,.015) 2px, rgba(200,132,10,.015) 3px);
  pointer-events: none;
}
/* Cantos em "L" estilo visor */
.showreel-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}
.showreel-corner.tl { top: 20px;    left: 20px;    border-top-width: 1px;    border-left-width: 1px; }
.showreel-corner.tr { top: 20px;    right: 20px;   border-top-width: 1px;    border-right-width: 1px; }
.showreel-corner.bl { bottom: 20px; left: 20px;    border-bottom-width: 1px; border-left-width: 1px; }
.showreel-corner.br { bottom: 20px; right: 20px;   border-bottom-width: 1px; border-right-width: 1px; }

/* Botão de play central */
.showreel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(200,132,10,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all .3s;
  z-index: 2;
}
.showreel-play:hover {
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(200,132,10,.25);
}
.showreel-play svg { margin-left: 5px; }

.showreel-title {
  position: absolute;
  bottom: 28px;
  left: 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .08em;
  color: rgba(245,240,232,.35);
}
.showreel-dur {
  position: absolute;
  bottom: 28px;
  right: 36px;
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ============================================================
   5) PORTFOLIO — grade assimétrica de 6 trabalhos
   Usa grid de 12 colunas para criar tamanhos diferentes.
   ============================================================ */
.port-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 3px;
  margin-top: 72px;
}
.pi {
  position: relative;
  overflow: hidden;
  cursor: none;
}
/* Cada item ocupa uma quantidade diferente de colunas */
.pi:nth-child(1) { grid-column: span 5; }
.pi:nth-child(2) { grid-column: span 4; }
.pi:nth-child(3) { grid-column: span 3; }
.pi:nth-child(4) { grid-column: span 3; }
.pi:nth-child(5) { grid-column: span 5; }
.pi:nth-child(6) { grid-column: span 4; }

.pi-bg {
  position: absolute;
  inset: 0;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.pi:hover .pi-bg { transform: scale(1.07); }

.pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,8,10,.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
}
.pi:hover .pi-overlay { opacity: 1; }

.pi-info {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  transform: translateY(8px);
  opacity: 0;
  transition: all .4s;
}
.pi:hover .pi-info {
  opacity: 1;
  transform: translateY(0);
}
.pi-cat {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.pi-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .05em;
}


/* ============================================================
   6) LOJA AFILIADA — abas + grade de produtos
   Marketplaces: Mercado Livre (amarelo), Shopee (laranja),
   AliExpress (laranja). Cada um tem seu próprio painel oculto
   trocado pelo JS (shop-tabs.js).
   ============================================================ */
.shop-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

/* Abas de marketplace no topo */
.market-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 52px;
}
.mk-tab {
  flex: 1;
  padding: 20px 28px;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .25s;
  position: relative;
}
.mk-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .25s;
}
.mk-tab:hover::after,
.mk-tab.active::after { transform: scaleX(1); }
.mk-tab.active {
  border-color: currentColor;
  background: rgba(255,255,255,.02);
}

/* Cada aba herda sua cor da marca via classe modificadora */
.mk-ml     { color: #ffe600; }
.mk-shopee { color: #ee4d2d; }
.mk-ali    { color: #ff6a00; }

.mk-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  flex-shrink: 0;
}
.mk-icon.ml     { background: #ffe600; color: #000; }
.mk-icon.shopee { background: #ee4d2d; color: #fff; }
.mk-icon.ali    { background: #ff6a00; color: #fff; }

.mk-info { flex: 1; }
.mk-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .05em;
  color: var(--white);
}
.mk-sub {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.mk-badge {
  font-family: 'Space Mono', monospace;
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid currentColor;
  opacity: .65;
}

/* Painéis de produtos — só o ".active" é exibido */
.shop-panel        { display: none; }
.shop-panel.active { display: block; }

/* Filtros (Todos, Drones, Câmeras, etc.) */
.shop-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.sf-label {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.sf-btn {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 15px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: none;
  transition: all .2s;
}
.sf-btn:hover,
.sf-btn.active {
  border-color: var(--gold);
  color: var(--white);
}

/* Grade de produtos */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.prod-card {
  background: var(--panel);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  border-color: rgba(200,132,10,.4);
  transform: translateY(-2px);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: 'Space Mono', monospace;
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
}
.pb-hot  { background: #c8840a; color: #000; }
.pb-best { background: #ffe600; color: #000; }
.pb-new  { background: #1a2860; color: #fff; }

/* Imagem decorativa do produto (SVG ilustrativo) */
.prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prod-img svg {
  width: 55%;
  height: 55%;
  opacity: .2;
  transition: opacity .3s, transform .5s;
}
.prod-card:hover .prod-img svg {
  opacity: .32;
  transform: scale(1.06);
}

/* Conteúdo textual do card */
.prod-body {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-mkt {
  font-family: 'Space Mono', monospace;
  font-size: .56rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dot-mk {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.prod-name {
  font-size: .88rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.prod-stars {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-bottom: 10px;
}
.str { color: var(--gold2); font-size: .65rem; }
.prod-rev {
  font-family: 'Space Mono', monospace;
  font-size: .56rem;
  color: var(--muted);
  margin-left: 5px;
}

/* Linha de preço atual + preço antigo + desconto */
.prod-price-row {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.prod-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--white);
}
.prod-old {
  font-family: 'Space Mono', monospace;
  font-size: .67rem;
  color: var(--muted);
  text-decoration: line-through;
}
.prod-disc {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  color: #ff5533;
  background: rgba(255,85,51,.1);
  padding: 2px 7px;
}

/* CTA final do card de produto (link de afiliado) */
.prod-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  font-family: 'Space Mono', monospace;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: all .2s;
  margin-top: auto;
}
.cta-ml     { background: #ffe600; color: #000; }
.cta-ml:hover     { background: #ffd000; }
.cta-shopee { background: #ee4d2d; color: #fff; }
.cta-shopee:hover { background: #d43b22; }
.cta-ali    { background: #ff6a00; color: #fff; }
.cta-ali:hover    { background: #e55e00; }

/* Banner inferior de cada marketplace */
.shop-banner {
  margin-top: 48px;
  padding: 38px 46px;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.sb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: .05em;
  color: var(--white);
}
.sb-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 5px;
  font-style: italic;
}
.sb-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sb-link {
  font-family: 'Space Mono', monospace;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sbl-ml     { background: #ffe600; color: #000; }
.sbl-shopee { background: #ee4d2d; color: #fff; }
.sbl-ali    { background: #ff6a00; color: #fff; }


/* ============================================================
   7) ABOUT — bloco "Sobre nós" com cards visuais sobrepostos
   ============================================================ */
.about-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-vis {
  position: relative;
  height: 500px;
}
.about-card {
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 36px;
}
/* Os dois cards se sobrepõem em diagonal para dar profundidade */
.about-card:first-child { inset: 0 70px 70px 0; }
.about-card:last-child  {
  inset: 70px 0 0 70px;
  background: linear-gradient(135deg, rgba(200,132,10,.07), var(--panel));
  border-color: rgba(200,132,10,.25);
}
.ac-label {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ac-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold2);
}
.ac-text {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}
.about-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 40px;
  font-style: italic;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.cbadge {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 8px 15px;
  color: var(--muted);
}


/* ============================================================
   8) PROCESS — linha do tempo de 4 passos
   Cada step tem um número grande, um título e descrição.
   ============================================================ */
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.proc-step {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 52px 38px;
  position: relative;
  overflow: hidden;
}
.ps-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(200,132,10,.05);
  margin-bottom: 20px;
}
.ps-t {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 16px;
}
.ps-d {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
}
/* Linha dourada vertical entre os steps (escondida no último) */
.ps-line {
  position: absolute;
  top: 52px;
  right: -1px;
  width: 2px;
  height: 40px;
  background: var(--gold);
  opacity: .35;
}
.proc-step:last-child .ps-line { display: none; }


/* ============================================================
   9) TESTIMONIALS — 3 depoimentos lado a lado
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.testi {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 50px 42px;
}
/* Aspas decorativas grandes em cada testemunho */
.tq {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: .75;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .35;
}
.tt {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white);
  font-style: italic;
  margin-bottom: 32px;
}
/* Bloco do autor: avatar com iniciais + nome + cargo */
.ta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ta-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem;
  color: var(--black);
}
.ta-name {
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.ta-role {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
  font-style: italic;
}


/* ============================================================
   10) CTA — chamada final "Vamos criar algo épico"
   ============================================================ */
.cta-section {
  text-align: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,132,10,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 52px;
  line-height: 1.75;
  font-style: italic;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-acts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
