/* ============================================
   ENEVEN TECH — Landing Page
   ============================================ */

:root {
  /* Cores principais */
  --primaria: #6117C4;
  --secundaria: #21A8E4;
  --cor-btn: #6117C4;
  --cor-texto-1: #1a1d23;
  --cor-texto-2: #5a5f6a;
  --cor-detalhe-1: #3c3f46;
  --cor-detalhe-2: #f5f3ff;
  --cor-detalhe-3: rgba(97, 23, 196, 0.08);

  /* Backgrounds */
  --bg: #ffffff;
  --bg-soft: #fafaff;
  --bg-dark: #0f1117;

  /* Gradiente */
  --gradient: linear-gradient(135deg, var(--primaria) 0%, var(--secundaria) 100%);

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(15, 17, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 17, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(97, 23, 196, 0.18);

  /* Layout */
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-h: 76px;

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--cor-texto-1);
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%,    rgba(97,23,196,0.28)  0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 10%,  rgba(33,168,228,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 20%, rgba(33,168,228,0.26) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 45%,  rgba(97,23,196,0.09)  0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 80% 55%,  rgba(33,168,228,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 80%,  rgba(33,168,228,0.24) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 60% 90%,  rgba(97,23,196,0.12)  0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 100% 100%,rgba(97,23,196,0.28)  0%, transparent 60%),
    var(--bg-soft);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cor-texto-1);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   COMPONENTES BASE
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 22px rgba(97, 23, 196, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(97, 23, 196, 0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--primaria);
  border: 1.5px solid rgba(97, 23, 196, 0.35);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--primaria); color: #fff; transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--primaria);
  color: var(--primaria);
  background: transparent;
}
.btn-outline:hover { background: var(--primaria); color: #fff; }
.btn-ghost {
  color: var(--cor-texto-1);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(15,17,23,0.1);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primaria);
  background: var(--cor-detalhe-3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section { padding: 110px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--cor-texto-2); font-size: 1.05rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: transparent;
  z-index: 100;
  transition: all .3s ease;
}
.header.scrolled { background: transparent; box-shadow: none; }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - 16px);
  gap: 24px;
  width: min(var(--container), calc(100% - 32px));
  margin: 8px auto;
  padding: 0 18px;
  background: linear-gradient(135deg, rgba(97, 23, 196, 0.05) 0%, rgba(33, 168, 228, 0.04) 100%);
  border: 1px solid rgba(33, 168, 228, 0.07);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15,17,23,0);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled .nav-wrapper {
  background: rgba(255,255,255,0.72);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.header .logo { margin-left: 10px; }
.logo-img { height: 80px; width: auto; display: block; }
.header .logo-img { height: 88px; }
.footer .logo-img { height: 97px; }
@media (max-width: 720px) { .logo-img { height: 80px; } .header .logo-img { height: 88px; } }
.logo-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
}
.logo-accent { color: var(--secundaria); }

.nav-desktop > ul { display: flex; gap: 32px; }
.nav-desktop a { font-weight: 500; font-size: 0.95rem; color: var(--cor-texto-1); transition: color .2s; position: relative; }
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-desktop a:hover { color: var(--primaria); }
.nav-desktop a:hover::after { transform: scaleX(1); }

.nav-desktop .dropdown { position: relative; }
.nav-desktop .dropdown::after {
  /* Buffer invisível para o hover não cair no gap entre toggle e menu */
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
  display: block;
}
.nav-desktop .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-desktop .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 16px;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(15,17,23,0.08);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15,17,23,0.12);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 10;
}
.nav-desktop .dropdown-menu li { padding: 0; }
.nav-desktop .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.93rem;
}
.nav-desktop .dropdown-menu a:hover { background: var(--cor-detalhe-2); color: var(--primaria); }
.nav-desktop .dropdown:hover .dropdown-menu,
.nav-desktop .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================
   BOTÃO ORÇAMENTO — PULSE NEON
   ============================================ */
.btn-pulse {
  position: relative;
  animation: pulseNeon 2.4s ease-in-out infinite;
}
@keyframes pulseNeon {
  0%, 100% {
    box-shadow:
      0 8px 22px rgba(97, 23, 196, 0.35),
      0 0 0 0 rgba(97, 23, 196, 0.45),
      0 0 0 0 rgba(33, 168, 228, 0.0);
  }
  50% {
    box-shadow:
      0 10px 28px rgba(97, 23, 196, 0.55),
      0 0 22px 4px rgba(97, 23, 196, 0.55),
      0 0 40px 8px rgba(33, 168, 228, 0.35);
  }
}
.btn-pulse:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cor-texto-1); transition: .3s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.nav-mobile.open { max-height: 500px; border-bottom: 1px solid rgba(15,17,23,0.06); }
.nav-mobile ul { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.nav-mobile a { font-weight: 500; padding: 8px 0; }
.nav-mobile .btn { margin-top: 8px; }

/* ============================================
   HERO
   ============================================ */

/* Ajustes responsivos: reduzir espaçamento esquerdo para logo e nav em telas pequenas */
@media (max-width: 720px) {
  .nav-wrapper {
    width: min(var(--container), calc(100% - 32px));
    margin: 8px auto;
    padding: 0 12px 0 8px;
  }
  .header .logo { margin-left: 0; }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 80px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/hero.webp") center calc(50% - 30px)/cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(255,255,255,0.4) 100%);
  z-index: -1;
}
.hero-content { text-align: center; max-width: 880px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cor-texto-2);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-stats {
  display: flex; gap: 50px; justify-content: center; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid transparent;
}
.hero-stats > div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong { font-family: var(--font-display); font-size: 2rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stats span { font-size: 0.85rem; color: var(--cor-texto-2); }

/* ============================================
   SOBRE
   ============================================ */
.sobre { background: transparent; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.sobre .card-feature { text-align: center; }
.card-feature {
  background: #f8f7fc;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(15,17,23,0.04);
}
.card-feature:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.31);
}
.card-feature i {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--cor-detalhe-3);
  color: var(--primaria);
  border-radius: 16px;
  margin: 0 auto 20px;
}
.card-feature i svg { width: 32px; height: 32px; }
.garantias .card-feature { text-align: center; }
.garantias .card-feature i { margin-left: auto; margin-right: auto; }
.card-feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(97, 23, 196, 0.25);
}
.card-feature-icon i,
.card-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
  color: #fff;
}
.card-feature h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card-feature p { color: var(--cor-texto-2); }

/* ============================================
   SERVIÇOS
   ============================================ */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  grid-auto-rows: 1fr;
}
.card-service {
  position: relative;
  background: #f8f7fc;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  border: 1px solid rgba(15,17,23,0.05);
  display: flex; flex-direction: column;
  height: 100%;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.card-service:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.31);
  border-color: var(--primaria);
}
.card-service.highlight {
  border: 2px solid var(--primaria);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.31);
  transform: translateY(-8px);
}
.card-service.highlight-green {
  border: 2px solid #2dbf6f;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.31);
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.service-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 16px;
  margin: 0 auto 22px;
  box-shadow: 0 8px 22px rgba(97, 23, 196, 0.25);
}
.service-icon i,
.service-icon svg { color: #fff; }
.service-img {
  width: calc(100% + 44px);
  margin: -26px -22px 18px;
  height: 220px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ícone menor para cards compactos */
.service-icon-sm {
  width: 44px; height: 44px;
  border-radius: 12px;
  margin: 0 12px 0 0;
  box-shadow: 0 8px 18px rgba(97,23,196,0.18);
}
.card-servico .service-icon {
  display: block;
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(97, 23, 196, 0.22);
}
.card-servico .service-icon i,
.card-servico .service-icon svg { width: 28px; height: 28px; }
.service-icon i,
.service-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
  color: #fff;
}
.card-service { text-align: center; }
.card-service h3 { text-align: center; }
.card-service > p { text-align: center; }
.card-service > .btn {
  align-self: center;
  margin-top: auto;
  width: 95%;
  justify-content: center;
}
.card-service h3 { font-size: 1.25rem; margin-bottom: 6px; }
.card-service > p { color: var(--cor-texto-2); margin-bottom: 14px; flex: 1; }
.price { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.price-old { color: crimson; text-decoration: line-through; font-size: 0.9rem; order: 2; }
.price-new { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--primaria); order: 1; }
.price-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  align-items: center;
}
.price-section .price-display { justify-content: center; }
.price-label {
  font-size: 0.85rem;
  color: var(--cor-texto-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-display .price-new {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primaria);
  margin: 0;
}
.price-display .price-old {
  color: var(--cor-texto-2);
  text-decoration: line-through;
  font-size: 0.95rem;
  margin: 0;
}
.price-installments {
  font-size: 0.95rem;
  color: var(--cor-texto-2);
}

/* ============================================
   PAGINAS DE SERVICO
   ============================================ */
.preco-destaque {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 16px 0 26px;
  flex-wrap: wrap;
}
.hero-servico .preco-destaque { justify-content: center; }
.preco-label { font-size: 0.95rem; color: var(--cor-texto-2); font-weight: 600; }
.preco-anterior { color: crimson; text-decoration: line-through; font-size: 1rem; }
.preco-atual { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--primaria); }
.preco-destaque-col { flex-direction: column; gap: 8px; align-items: center; }
.preco-linha { display: flex; gap: 12px; align-items: baseline; justify-content: center; flex-wrap: wrap; }
.preco-texto { font-size: 1rem; color: var(--cor-texto-2); font-weight: 600; }
.preco-parcelado { font-size: 1rem; color: var(--cor-texto-1); font-weight: 600; }

/* ============================================
   CARD DE INVESTIMENTO (paginas de servico)
   ============================================ */
.preco-card-section { padding-top: 60px; padding-bottom: 60px; }
.preco-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(16, 24, 40, 0.22), 0 0 80px rgba(97,23,196,0.12), 0 2px 6px rgba(16, 24, 40, 0.14);
  border: 1px solid rgba(255,255,255,0.60);
  position: relative;
}
.preco-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(97,23,196,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(33,168,228,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.preco-card-info {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.preco-card-info .eyebrow { margin-bottom: 4px; }
.preco-card-titulo {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0;
  line-height: 1.15;
}
.preco-card-tagline {
  font-size: 1rem;
  color: var(--cor-texto-2);
  margin: 0 0 8px;
  line-height: 1.55;
}
.preco-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(97,23,196,0.06), rgba(33,168,228,0.06));
  border: 1px solid rgba(97,23,196,0.12);
  border-radius: 18px;
  width: 100%;
  margin: 6px 0 12px;
}
.preco-bloco .preco-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cor-texto-2);
  font-weight: 600;
}
.preco-linha-valor { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.preco-bloco .preco-atual {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.preco-bloco .preco-anterior {
  font-size: 1.05rem;
  color: #b94b5a;
  text-decoration: line-through;
  font-weight: 600;
}
.preco-bloco .preco-parcelado {
  font-size: 0.95rem;
  color: var(--cor-texto);
  font-weight: 500;
  margin-top: 4px;
}
.preco-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.preco-card-cta i { width: 20px; height: 20px; }
.preco-card-nota {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cor-texto-2);
  margin: 4px 0 0;
}
.preco-card-nota i { width: 16px; height: 16px; color: var(--primaria); }
.preco-card-nota strong { color: var(--cor-texto-1); font-weight: 700; }
.preco-card-img {
  position: relative;
  order: -1;
  background: linear-gradient(135deg, var(--primaria), var(--secundaria));
  height: 300px;
  overflow: hidden;
}
.preco-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(97,23,196,0.18), rgba(33,168,228,0.08) 60%, transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.preco-img-carousel .preco-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.preco-img-carousel .preco-slide.active {
  opacity: 1;
}
.preco-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  color: var(--primaria);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
}
.preco-carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.preco-prev { left: 12px; }
.preco-next { right: 12px; }
@media (max-width: 900px) {
  .preco-card-info { padding: 36px 28px; }
}

.lista-incluido {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.lista-incluido li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.21);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lista-incluido li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(97, 23, 196, 0.08), rgba(33, 168, 228, 0.08));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.lista-incluido li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.21);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lista-incluido li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(97, 23, 196, 0.04), rgba(33, 168, 228, 0.04));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.lista-incluido li:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 23, 196, 0.22);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.27);
}
.lista-incluido li:hover::after { opacity: 1; }
.lista-incluido i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(97, 23, 196, 0.22);
  margin-top: 2px;
  z-index: 1;
}
.lista-incluido i svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.lista-incluido li .texto-item { z-index: 1; color: var(--cor-texto-1); }

@media (max-width: 820px) {
  .lista-incluido { grid-template-columns: 1fr; }
}
.lista-incluido li > *:not(i) { z-index: 1; }
.lista-incluido li > svg {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(97, 23, 196, 0.22);
  margin-top: 0;
  flex-shrink: 0;
}
.lista-incluido li > svg * { stroke: #fff; stroke-width: 2; }
.tempo-entrega { margin-top: 16px; color: var(--cor-texto-2); }
.tags-tecnologias {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cor-detalhe-3);
  color: var(--primaria);
  font-weight: 600;
  font-size: 0.9rem;
}
.card-case {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  border: 1px solid rgba(15,17,23,0.05);
}
.faq-servico {
  background: transparent;
}
.faq-servico .faq-item {
  background: #f8f7fc;
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.18);
  margin-bottom: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.faq-servico .faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.27);
}
.faq-servico .faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-servico .faq-item summary::-webkit-details-marker { display: none; }
.faq-servico .faq-item p { padding: 0 22px 18px; color: var(--cor-texto-2); }
.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
  grid-auto-rows: 1fr;
}
.card-servico {
  background: #f8f7fc;
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  border: 1px solid rgba(15,17,23,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.31);
}
.card-servico-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--cor-detalhe-2);
}
.card-servico-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card-servico-body h3 { font-size: 1.15rem; margin: 0; }
.card-servico-tagline { color: var(--cor-texto-2); font-size: 0.9rem; line-height: 1.45; margin: 0; }
.card-servico-preco { font-weight: 700; color: var(--primaria); margin: 4px 0 6px; font-size: 0.98rem; }
.card-servico-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.card-servico-price .price-label {
  font-size: 0.75rem;
  color: var(--cor-texto-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0;
}
.card-servico-price .price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}
.card-servico-price .price-new {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primaria);
  margin: 0;
}
.card-servico-price .price-old {
  color: var(--cor-texto-2);
  text-decoration: line-through;
  font-size: 0.85rem;
  margin: 0;
}
.card-servico-price .price-installments {
  font-size: 0.85rem;
  color: var(--cor-texto-2);
  margin: 0;
}
.card-servico-body .btn {
  margin-top: auto;
  align-self: center;
  width: 95%;
  justify-content: center;
}

/* ============================================
   CASES EM DESTAQUE (home)
   ============================================ */
.cases-destaque .grid-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card-case-destaque {
  background: #f8f7fc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  border: 1px solid rgba(15,17,23,0.05);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-case-destaque:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(97, 23, 196, 0.31);
}
.card-case-destaque .case-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--cor-detalhe-2);
}
.card-case-destaque .case-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-case-destaque h3 { font-size: 1.2rem; margin: 0; }
.card-case-destaque .case-tipo {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primaria);
  background: var(--cor-detalhe-3);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.card-case-destaque .case-desc { color: var(--cor-texto-2); font-size: 0.95rem; line-height: 1.55; margin: 0; }
.card-case-destaque .case-techs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto;
}
.card-case-destaque .case-tech {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--cor-detalhe-2);
  color: var(--cor-detalhe-1);
  font-weight: 500;
}

.cta-final {
  text-align: center;
  background: linear-gradient(135deg, #0f1117 0%, #1a0d3a 50%, #0d1f33 100%);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(97,23,196,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(33,168,228,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .container { max-width: 720px; position: relative; z-index: 1; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,0.72); }

/* ============================================
   PAGINAS DE CIDADE/BAIRRO
   ============================================ */
.hero-cidade .hero-subtitle,
.hero-bairro .hero-subtitle,
.hero-servico .hero-subtitle {
  max-width: 720px;
  margin: 0 auto 36px;
}

.lista-diferenciais {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}
.lista-diferenciais li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.21);
  overflow: hidden;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cor-texto);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lista-diferenciais li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(97, 23, 196, 0.04), rgba(33, 168, 228, 0.04));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.lista-diferenciais li:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 23, 196, 0.22);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.27);
}
.lista-diferenciais li:hover::after { opacity: 1; }
.lista-diferenciais i {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(97, 23, 196, 0.22);
  z-index: 1;
}
.lista-diferenciais i svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.lista-diferenciais li > svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(97, 23, 196, 0.22);
  z-index: 1;
}
.lista-diferenciais li > svg * { stroke: #fff; stroke-width: 2; }
.lista-diferenciais li > *:not(i) { z-index: 1; }
@media (max-width: 820px) {
  .lista-diferenciais { grid-template-columns: 1fr; }
}
.lista-bairros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.lista-bairros li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid rgba(15,17,23,0.08);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cor-texto-1);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(16,24,40,0.08);
}
.lista-bairros li a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--cor-texto-2);
  transition: stroke 0.2s;
}
.lista-bairros li a:hover {
  background: var(--primaria);
  color: #fff;
  border-color: var(--primaria);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(97,23,196,0.22);
}
.lista-bairros li a:hover svg { stroke: #fff; }
.lista-bairros li span.lista-bairros-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid rgba(15,17,23,0.08);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cor-texto-1);
  box-shadow: 0 2px 10px rgba(16,24,40,0.08);
}
.lista-bairros li span.lista-bairros-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--cor-texto-2);
}

.glass-card-texto {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(97,23,196,0.10),
    0 2px 8px rgba(16,24,40,0.08);
  padding: 32px 36px;
  margin: 0 20px;
}
.glass-card-texto p {
  color: var(--cor-texto-2);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lista-ruas,
.lista-comercios {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.lista-ruas {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.lista-comercios {
  grid-template-columns: repeat(auto-fill, minmax(200px, 200px));
  justify-content: center;
}
.lista-ruas li,
.lista-comercios li {
  background: #fff;
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lista-ruas i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--gradient);
  border-radius: 8px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(97,23,196,0.30);
}
.lista-ruas i svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}


/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: calc(var(--header-h) + 12px) 0 18px;
  background: transparent;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--cor-texto-2);
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumbs li + li::before {
  content: "•";
  color: var(--cor-texto-2);
}
.breadcrumbs a { color: var(--primaria); font-weight: 600; }

/* ============================================
   ETAPAS
   ============================================ */
.etapas { background: transparent; }
.steps-wrapper { position: relative; }
.steps {
  list-style: none;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-line {
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primaria), var(--secundaria));
  opacity: 0.25;
  z-index: 0;
}
.step {
  position: relative;
  background: #f8f7fc;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  z-index: 1;
  transition: transform .3s, box-shadow .3s;
}
.step:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.31);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secundaria);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--cor-texto-2); font-size: 0.95rem; }
.etapas-cta { text-align: center; margin-top: 50px; }

/* ============================================
   PROJETOS / CARROSSEL
   ============================================ */
.projetos { padding-bottom: 110px; }
.carousel {
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.carousel:hover .carousel-track { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.project-card {
  width: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  transition: transform .3s, box-shadow .3s;
  flex-shrink: 0;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.31);
}
.project-thumb {
  height: 200px;
  background-image: url("../img/projeto-em-breve.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.project-card.dashboard-financeiro .project-thumb {
  background-image: url("../img/produto-bio2.webp");
}
.project-card.automacao-whatsapp .project-thumb {
  background-image: url("../img/aotomaca-whats.webp");
}
.project-card.portfolio-desenvolvedor .project-thumb {
  background-image: url("../img/portfolio.webp");
}
.project-card.patinhas-carentes .project-thumb {
  background-image: url("../img/patinhasCarentes.webp");
}
.project-card.cobranca-digital .project-thumb {
  background-image: url("../img/curso-ingles.webp");
}
.project-card.ecommerce .project-thumb {
  background-image: url("../img/ecommerce.webp");
}
.project-card.delivery-express .project-thumb {
  background-image: url("../img/delivery1.webp");
}
.project-card.restaurante-landing .project-thumb {
  background-image: url("../img/restaurante-landing-P.webp");
}
.project-card.ebook-caffe .project-thumb {
  background-image: url("../img/ebook-caffe.webp");
}
.project-card h4 { padding: 18px 20px 4px; font-size: 1.1rem; }
.project-card span { display: block; padding: 0 20px 20px; font-size: 0.85rem; color: var(--cor-texto-2); }

/* ============================================
   EQUIPE
   ============================================ */
.equipe {
  position: relative;
  background: transparent;
}
.equipe .container {
  position: relative;
  z-index: 1;
}
.grid-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card {
  background: #f8f7fc;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.31);
}
.avatar {
  width: 150px; height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { display: block; color: var(--primaria); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.team-card .quote { font-style: italic; color: var(--cor-texto-1); margin-bottom: 10px; font-size: 0.95rem; }
.team-card .bio { color: var(--cor-texto-2); font-size: 0.88rem; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos { background: transparent; }
.testimonial {
  background: #f8f7fc;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.27);
  border: 1px solid rgba(15,17,23,0.04);
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.31);
}
.t-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar-sm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
}
.t-head strong { display: block; font-size: 0.95rem; }
.t-head span { font-size: 0.8rem; color: var(--cor-texto-2); }
.stars { color: #f5b400; font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { color: var(--cor-texto-2); font-style: italic; }
.avatar-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.avatar-wrapper img { display: block; width: 100%; height: 100%; }
.avatar-wrapper .avatar-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.avatar-wrapper.no-photo img { display: none; }
.avatar-wrapper.no-photo .avatar-fallback { display: block; }
.avatar-wrapper-lg {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}
.avatar-wrapper-lg img { display: block; width: 100%; height: 100%; }
.avatar-wrapper-lg .avatar-fallback-lg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.avatar-wrapper-lg.no-photo img { display: none; }
.avatar-wrapper-lg.no-photo .avatar-fallback-lg { display: block; }

/* ============================================
   CONTATO
   ============================================ */
.contato { background: transparent; }
.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.contato-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.contato-info > p { color: var(--cor-texto-2); margin-bottom: 30px; }
.contato-list { display: flex; flex-direction: column; gap: 14px; }
.contato-list li { display: flex; align-items: center; gap: 12px; color: var(--cor-texto-1); font-weight: 500; }
.contato-list i { color: var(--primaria); }

.form-contato {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 30px 60px rgba(16,24,40,0.18),
    0 0 60px rgba(97,23,196,0.28),
    0 0 120px rgba(97,23,196,0.15);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-contato::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: calc(var(--radius-lg) + 18px);
  background: radial-gradient(ellipse at center, rgba(97,23,196,0.35) 0%, rgba(33,168,228,0.18) 50%, transparent 75%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}
.form-contato:hover {
  transform: translateY(-5px);
  box-shadow:
    0 40px 70px rgba(16,24,40,0.24),
    0 0 80px rgba(97,23,196,0.38),
    0 0 160px rgba(97,23,196,0.20);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--cor-texto-1); }
.field input, .field textarea {
  padding: 12px 14px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(15,17,23,0.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primaria);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 0 3px var(--cor-detalhe-3);
}
.form-feedback { font-size: 0.9rem; color: var(--primaria); font-weight: 500; min-height: 1.2em; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: transparent; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: #fff;
  border: 1px solid rgba(15,17,23,0.06);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.10);
  transition: box-shadow .2s, border-color .2s;
}
.faq-list details[open] {
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.16);
  border-color: var(--primaria);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--primaria); transition: transform .25s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list p { padding: 0 24px 20px; color: var(--cor-texto-2); }

/* ============================================
   PRIVACIDADE
   ============================================ */
.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--cor-texto-2);
}
.privacy-content h3 {
  color: var(--cor-texto-1);
  font-size: 1.1rem;
  margin-top: 10px;
}
.privacy-updated {
  color: var(--cor-texto-2);
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #e9f6fc 0%, #f5efff 30%, #6117C4 65%, #6117C4 100%);
  color: var(--cor-texto-1);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 { color: var(--cor-texto-1); margin-bottom: 18px; font-size: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer .logo { color: var(--cor-texto-1); margin-bottom: 8px; margin-left: 28px; }
.footer .logo-text { color: var(--cor-texto-1); }
.footer-about { font-size: 0.9rem; color: var(--cor-texto-2); max-width: 280px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(15,17,23,0.08);
  border-radius: 10px;
  transition: all .25s;
}
.socials a:hover { background: var(--gradient); transform: translateY(-3px); }

/* Footer link hover effects */
.footer ul a {
  position: relative;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer ul a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.footer ul a:hover {
  color: inherit;
}
.footer ul a:hover::after {
  width: 100%;
}
.footer-links li {
  transition: transform 0.2s ease;
}
.footer-dropdowns {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.footer-dropdown {
  position: relative;
  display: inline-block;
}
.footer-dropdown summary {
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: inherit;
  cursor: pointer;
  position: relative;
  display: inline-block;
  user-select: none;
  transition: color 0.25s ease;
}
.footer-dropdown summary::-webkit-details-marker { display: none; }
.footer-dropdown summary::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.footer-dropdown summary:hover::before { width: 100%; }
.footer-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  top: auto;
  left: 0;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
  padding: 12px;
  min-width: 180px;
  z-index: 200;
}
.footer-dropdown-menu li { padding: 0; margin: 0; }
.footer-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
  transition: background 0.15s, color 0.15s;
}
.footer-dropdown-menu a::after { display: none !important; }
.footer-dropdown-menu a:hover {
  background: rgba(97,23,196,0.25);
  color: #fff;
}
.footer .logo {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.footer .logo:hover {
  transform: scale(1.04) translateX(2px);
  filter: drop-shadow(0 0 14px rgba(97,23,196,0.35));
}
.footer-bottom a {
  position: relative;
  transition: color 0.25s ease;
}
.footer-bottom a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
.footer-bottom a:hover { color: #e9d5ff; }
.footer-bottom a:hover::after { width: 100%; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.28);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
}

/* ============================================
   COOKIES / LGPD
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 -12px 30px rgba(15, 17, 23, 0.25);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner__content p {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
}
.cookie-banner__content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.cookie-accept {
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--primaria);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(15, 17, 23, 0.2);
}
.cookie-accept:hover { filter: brightness(0.98); }

/* ============================================
   CHATBOT
   ============================================ */
.janela-chat {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: min(360px, calc(100% - 48px));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.22);
  border: 1px solid rgba(15,17,23,0.08);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 95;
}
.janela-chat.ativa {
  display: flex;
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--gradient);
  color: #fff;
}
.chat-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-title strong { font-size: 0.95rem; }
.chat-title span { font-size: 0.75rem; opacity: 0.85; }
.chat-close {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
}
.chat-close:hover { background: rgba(255,255,255,0.16); }
.chat-mensagens {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  background: #fafbff;
}
.mensagem {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.4;
  max-width: 85%;
}
.mensagem.usuario {
  align-self: flex-end;
  background: var(--gradient);
  color: #fff;
}
.mensagem.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(15,17,23,0.08);
  color: var(--cor-texto-1);
}
.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 12px 14px;
  border-top: 1px solid rgba(15,17,23,0.08);
  background: #fff;
}
.chat-input-area input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15,17,23,0.12);
  font-family: inherit;
  font-size: 0.92rem;
}
.chat-input-area input:focus {
  outline: none;
  border-color: var(--primaria);
  box-shadow: 0 0 0 3px var(--cor-detalhe-3);
}
.chat-send {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
}
.chat-send:hover { filter: brightness(1.05); }

/* ============================================
   BOTÃO FLUTUANTE IA
   ============================================ */
.ia-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(97,23,196,0.45);
  transition: all .3s;
  animation: pulse 2.5s ease-in-out infinite;
}
.ia-float:hover { transform: translateY(-4px) scale(1.03); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(97,23,196,0.45); }
  50% { box-shadow: 0 12px 40px rgba(97,23,196,0.7), 0 0 0 8px rgba(97,23,196,0.1); }
}

/* ============================================
   ANIMAÇÕES SCROLL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }
  .nav-desktop, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .header .logo { transform: translateX(-16px); }
  .hero { min-height: auto; padding: calc(var(--header-h) + 60px) 0 60px; }
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 1.5rem; }
  .contato-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-contato { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-grid address, .footer-grid ul { align-items: center; }
  .footer-dropdowns { justify-content: center; }
  .footer-about { max-width: 100%; }
  .footer .logo { margin-left: 0; }
  .socials { justify-content: center; }
  .ia-float span { display: none; }
  .ia-float { padding: 16px; }
  .janela-chat {
    right: 18px;
    left: 18px;
    width: auto;
    bottom: 84px;
  }
  .nav-mobile .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 28px; }
  .steps { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .project-card { width: 260px; }
  .project-thumb { height: 160px; }
  .badge { right: 16px; }
}
/* ============================================
   SKIP LINK — Acessibilidade + SEO
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primaria);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
}
 
/* ============================================
   SR-ONLY — Texto visível só para leitores de tela
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
 