/* ============================================
   Guía Indicador – HTML5/CSS3
   Tom azul + efeito parallax
   ============================================ */

:root {
  --bg: #0a0e17;
  --bg-card: rgba(15, 22, 36, 0.85);
  --fg: #f4f4f5;
  --fg-muted: #a1a1aa;
  --primary: #fdb92e;
  --primary-dark: #e5a726;
  --orange: #f97316;
  --blue-deep: #0c1222;
  --blue-mid: #0f1624;
  --blue-wave: #0d1321;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 0.875rem;
  --font-sans: 'Nunito', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ---------- Parallax background: hero + hero_2 em sequência na rolagem ---------- */
.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--blue-deep);
  overflow: hidden;
}

.parallax-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 350vh;
  will-change: transform;
}

.parallax-hero-img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
}

.parallax-gap {
  width: 100%;
  height: 70vh;
  background: var(--blue-deep);
  flex-shrink: 0;
}

.parallax-hero-second {
  height: 180vh;
  object-position: center center;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: transparent;
  border-bottom: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

.header .nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: color 0.2s;
}

.logo:hover .logo-text {
  color: var(--primary);
}

.logo:hover img {
  opacity: 0.9;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  margin-right: 0;
}

.nav-list a {
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-list a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  z-index: 101;
  -webkit-tap-highlight-color: transparent;
}

.menu-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: opacity 0.25s ease;
  position: relative;
  z-index: 0;
}

.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
  z-index: 1;
}

.menu-toggle::before {
  top: 14px;
}

.menu-toggle::after {
  top: 28px;
}

/* Estado aberto (X) – ícone de fechar visível */
.menu-toggle.is-open .menu-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  opacity: 0;
  pointer-events: none;
}

.menu-toggle.is-open::before,
.menu-toggle[aria-expanded="true"]::before {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

.menu-toggle.is-open::after,
.menu-toggle[aria-expanded="true"]::after {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}

/* Painel do menu mobile – fora do header, fixed ao viewport (não corta ao rolar) */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #0a0e17;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-mobile.nav-mobile--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-list {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 1.5rem 2rem;
  min-width: 260px;
  background: rgba(15, 22, 36, 0.95);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  position: relative;
  z-index: 1;
}

.nav-mobile.nav-mobile--open .nav-mobile-list {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile li {
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.nav-mobile.nav-mobile--open li {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.nav-mobile--open li:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.nav-mobile--open li:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.nav-mobile--open li:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.nav-mobile--open li:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile.nav-mobile--open li:nth-child(5) { transition-delay: 0.25s; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-mobile a.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  text-align: center;
}

/* Tablet/mobile: esconder itens do menu e mostrar só o hamburger */
@media (max-width: 1024px) {
  .header .nav,
  .header .nav .nav-list,
  .header .nav .nav-cta {
    display: none !important;
  }
  .header .menu-toggle {
    display: flex !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-yellow {
  background: var(--primary);
  color: var(--bg);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-yellow:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-orange:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
}

/* Vitrine Local – botão principal (amarelo) */
.btn-vitrine {
  background: #fdb92e;
  color: #0b2233;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-vitrine:hover {
  background: #fc8c14;
  color: #0b2233;
  transform: translateY(-1px);
}

/* Vitrine Local – botão outline (azul claro) */
.btn-vitrine-outline {
  background: transparent;
  color: #7dd3fc;
  border: 2px solid #7dd3fc;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-vitrine-outline:hover {
  background: rgba(125, 211, 252, 0.15);
  color: #bae6fd;
  border-color: #bae6fd;
}

/* Vitrine Local – CTA no final da seção Serviços */
.vitrine-cta-servicos {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.vitrine-cta-text {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.vitrine-cta-micro {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

/* Vitrine Local – seção "Sua empresa visível" */
.section-vitrine-visibilidade {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-vitrine-visibilidade .section-title {
  margin-bottom: 1.25rem;
}

.section-vitrine-visibilidade .btn-vitrine {
  margin-top: 0.5rem;
}

/* Contato – dois CTAs lado a lado */
.contato-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contato-ctas .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

@media (max-width: 480px) {
  .contato-ctas {
    flex-direction: column;
  }
  .contato-ctas .btn {
    width: 100%;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 120%;
  min-height: 120%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 23, 0.85) 0%, rgba(10, 14, 23, 0.4) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.hero-line-2 {
  display: block;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-cursor {
  display: inline-block;
  color: var(--primary);
  animation: hero-cursor-blink 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes hero-cursor-blink {
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-link {
  color: var(--fg);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.hero-link:hover {
  color: var(--primary);
}

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 0;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 0.5rem 0.75rem;
  }
  .stat-value {
    font-size: 1.25rem;
  }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
}

/* ---------- Sections (sobre fundo azul parallax) ---------- */
.section {
  position: relative;
  padding: 5rem 1.5rem;
  z-index: 1;
}

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

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 1rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.section-logo {
  width: 56px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--fg);
}

.section-title .highlight {
  color: var(--primary);
}

.section-desc {
  color: var(--fg-muted);
  margin-bottom: 2rem;
  max-width: 36rem;
}

/* ---------- Section Sobre (Estratégia, design e performance) ---------- */
.section-sobre {
  padding: 5rem 1.5rem 6rem;
}

.section-sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.sobre-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(34, 211, 238, 0.3);
}

.sobre-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sobre-content .section-header {
  margin-bottom: 1rem;
}

.sobre-text {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.sobre-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.sobre-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

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

.slogan {
  text-align: center;
  font-size: 1.125rem;
  color: var(--fg-muted);
  margin-top: 2rem;
}

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

/* ---------- Serviços ---------- */
.section-servicos .section-header {
  margin-bottom: 2rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* Card estilo 2ª imagem: imagem de fundo + overlay + conteúdo em cima */
.servico-card-fundo {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.servico-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.servico-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.servico-card-fundo:hover .servico-card-bg img {
  transform: scale(1.08);
}

.servico-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 23, 0.88) 0%, rgba(10, 14, 23, 0.45) 50%, rgba(10, 14, 23, 0.15) 100%);
  z-index: 1;
  transition: opacity 0.4s ease, background 0.4s ease;
}

.servico-card-fundo:hover .servico-card-overlay {
  opacity: 0.2;
  background: linear-gradient(to top, rgba(10, 14, 23, 0.4) 0%, rgba(10, 14, 23, 0.1) 50%, transparent 100%);
}

.servico-card-fundo:hover .servico-card-content h3,
.servico-card-fundo:hover .servico-card-content p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.servico-card-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
}

.servico-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(253, 185, 46, 0.25);
  color: var(--primary);
  font-size: 1.2rem;
}

.servico-icon i {
  font-size: inherit;
}

.servico-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.servico-card-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.servico-card-content a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.servico-card-content a:hover {
  text-decoration: underline;
}

/* ---------- Cases ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 1100px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px 0 0 0;
  overflow: hidden;
  background: var(--bg-card);
  border: none;
  border-left: 4px solid var(--primary);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: cardFadeIn 0.6s ease backwards;
}

.case-card:nth-child(1) { animation-delay: 0.05s; }
.case-card:nth-child(2) { animation-delay: 0.15s; }
.case-card:nth-child(3) { animation-delay: 0.25s; }
.case-card:nth-child(4) { animation-delay: 0.35s; }

/* Topo: linha só nos primeiros 1/5 da largura */
.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 4px;
  background: var(--primary);
  z-index: 1;
}

/* Base: linha só nos primeiros 1/5 da largura */
.case-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 4px;
  background: var(--primary);
  z-index: 1;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-img {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  object-position: center;
  padding: 0.75rem;
  box-sizing: border-box;
  transition: transform 0.4s ease;
}

.case-card:hover .case-img img {
  transform: scale(1.02);
}

.case-info {
  padding: 1.25rem;
  flex: 1;
}

.case-cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
  display: block;
}

.case-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.case-link {
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.case-link:hover {
  opacity: 1;
}

.cases-cta {
  margin-top: 0.5rem;
}

.link-arrow {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.875rem;
}

.link-arrow:hover {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 2rem;
}

.text-muted {
  color: var(--fg-muted);
  font-size: 0.875rem;
}

.text-muted a {
  color: var(--primary);
  text-decoration: none;
}

.text-muted a:hover {
  text-decoration: underline;
}

/* ---------- Processo ---------- */
.processo-intro {
  margin-bottom: 2rem;
}

.processo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.processo-step {
  position: relative;
  padding: 1.75rem;
  background: var(--bg-card);
  border: none;
  border-left: 4px solid var(--primary);
  border-radius: 8px 0 0 0;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: cardFadeIn 0.6s ease backwards;
}

.processo-step:nth-child(1) { animation-delay: 0.05s; }
.processo-step:nth-child(2) { animation-delay: 0.12s; }
.processo-step:nth-child(3) { animation-delay: 0.19s; }
.processo-step:nth-child(4) { animation-delay: 0.26s; }

/* Topo: linha só nos primeiros 1/5 da largura */
.processo-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 4px;
  background: var(--primary);
  z-index: 1;
}

/* Base: linha só nos primeiros 1/5 da largura */
.processo-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 4px;
  background: var(--primary);
  z-index: 1;
}

.processo-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.processo-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.processo-step > p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.processo-lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

.processo-lista li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg);
  line-height: 1.4;
}

.processo-lista li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

/* ---------- Resultados ---------- */
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.resultado-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s;
}

.resultado-card:hover {
  transform: translateY(-4px);
}

.resultado-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.25rem;
}

.resultado-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.resultado-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---------- Depoimentos ---------- */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}

.depoimento-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.depoimento-foto-wrap {
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden;
}

.depoimento-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.depoimento-nome {
  font-size: 1rem;
  font-weight: 600;
  color: #3b82f6;
  font-style: normal;
  display: block;
  margin-bottom: 0.75rem;
}

.depoimento-texto {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--fg);
  flex: 1;
  min-height: 4.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: -webkit-line-clamp 0.2s ease, min-height 0.2s ease;
}

.depoimento-ver-mais {
  display: inline-block;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.depoimento-ver-mais:hover {
  text-decoration: underline;
}

/* Modal depoimento */
.depoimento-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.depoimento-modal[hidden] {
  display: none;
}

.depoimento-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.depoimento-modal-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.depoimento-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.depoimento-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.depoimento-modal-nome {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.depoimento-modal-texto {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 1rem;
}

.depoimento-modal-footer {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.depoimento-modal-footer a {
  color: var(--primary);
  text-decoration: none;
}

.depoimento-modal-footer a:hover {
  text-decoration: underline;
}

.depoimento-card footer {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: auto;
}

.depoimento-empresa {
  color: #3b82f6;
  text-decoration: underline;
}

.depoimento-empresa:hover {
  color: #60a5fa;
}

.depoimento-card strong {
  color: var(--fg);
}

/* ---------- Investimento / Planos ---------- */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.plano-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.plano-destaque {
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(250, 204, 21, 0.05);
}

.badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.plano-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.plano-preco {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.plano-preco span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.plano-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.plano-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.plano-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg);
}

.plano-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- Contato ---------- */
.section-contato {
  background: rgba(15, 22, 36, 0.6);
  border-top: 1px solid var(--border);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contato-info .section-title {
  margin-bottom: 1rem;
}

.contato-info > p {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.contato-dados {
  margin-bottom: 1.5rem;
}

.contato-dados p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.contato-dados strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}

.contato-social {
  display: flex;
  gap: 0.75rem;
}

.contato-social a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
}

.contato-social a:hover {
  color: var(--primary);
}

.contato-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.contato-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  resize: vertical;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: var(--fg-muted);
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(15, 22, 36, 0.8);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  height: 220px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
}

.footer-logo:hover .footer-logo-text {
  color: var(--primary);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  color: var(--primary);
}

.footer-social-link i {
  font-size: 1.25rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-bottom a {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  left: 1.25rem;
  bottom: 1.5rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-blink 2s ease-in-out infinite;
}

@keyframes whatsapp-blink {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 20px 6px rgba(255, 255, 255, 0.6);
  }
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 24px 8px rgba(255, 255, 255, 0.5);
  color: #fff;
  animation: none;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 0.85rem;
    left: 1rem;
    bottom: 1.25rem;
  }
  .whatsapp-float i {
    font-size: 1.75rem;
  }
}

/* ---------- Reveal (scroll animation) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: imagens quebradas */
img {
  max-width: 100%;
  height: auto;
}

img[src=""],
img:not([src]) {
  min-height: 200px;
  background: var(--blue-mid);
}
