/* ============================================
   João Programador - Dark SaaS Landing
   Mobile-first | Purple/Pink/Blue gradients
   ============================================ */

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a24;
  --text: #e8e8ed;
  --text-muted: #9898a6;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-blue: #3b82f6;
  --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 30%, #831843 60%, #1e3a5f 100%);
  --gradient-cta: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #2563eb 100%);
  --gradient-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.4), transparent);
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --wa-green: #25d366;
  --wa-green-bright: #34e077;
  --wa-green-soft: #0d9668;
  --wa-green-glow: rgba(52, 224, 119, 0.5);
  --header-text: #e2e2e8;
  --header-text-muted: #9ca3af;
  --header-border: rgba(255,255,255,0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar fina e no estilo do site */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.5) var(--bg-dark);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

/* Background glow */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  background: var(--gradient-glow);
  pointer-events: none;
  z-index: 0;
}

/* Preloader – só aparece se a página demorar a carregar */
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
}

.page-preloader.page-preloader--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-preloader.page-preloader--hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-preloader-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-top-color: var(--accent-purple);
  border-radius: 50%;
  animation: page-preloader-spin 0.85s linear infinite;
}

@keyframes page-preloader-spin {
  to { transform: rotate(360deg); }
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--accent-pink); }

img { max-width: 100%; height: auto; display: block; }

/* Layout */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
}

.btn-whatsapp {
  background: linear-gradient(180deg, var(--wa-green-bright) 0%, var(--wa-green) 100%);
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 16px var(--wa-green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #3ef07f 0%, #2dd165 100%);
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 24px var(--wa-green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Botões do header – mais compactos e profissionais */
.btn-header {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.site-header .btn-outline {
  color: var(--header-text-muted);
  border-color: var(--header-border);
  background: rgba(255,255,255,0.03);
}

.site-header .btn-outline:hover {
  color: var(--header-text);
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(167, 139, 250, 0.08);
}

.btn-primary-soft {
  background: linear-gradient(180deg, var(--wa-green-bright) 0%, var(--wa-green) 100%);
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 16px var(--wa-green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
}

.btn-primary-soft:hover {
  background: linear-gradient(180deg, #3ef07f 0%, #2dd165 100%);
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 24px var(--wa-green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Garante texto branco no header para o botão WhatsApp (evita herdar cinza de .nav-links a) */
.site-header .btn-primary-soft,
.site-header .btn-whatsapp {
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.3);
}

.site-header .btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--header-border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-header nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 900px) {
  .site-header .nav-links {
    flex: 1;
    justify-content: space-between;
    max-width: 100%;
    margin-left: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1150px) {
  .nav-cta .btn-header { padding: 0.5rem 1rem; font-size: 0.85rem; }
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 44px;
}

.logo img,
.logo svg {
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

.logo .logo-img {
  max-height: 350px;
}

.logo.logo-svg svg {
  vertical-align: middle;
}

.logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--header-text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--header-text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: nowrap;
}

/* Dropdown Meus Sistemas */
.nav-dropdown-wrap {
  position: relative;
  list-style: none;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-dropdown-arrow {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.15rem;
  vertical-align: middle;
  transition: transform 0.2s;
}
.nav-dropdown-arrow::before {
  content: none;
}
.nav-dropdown-wrap.open .nav-dropdown-arrow {
  transform: rotate(-135deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 260px;
  padding: 0.5rem 0;
  background: var(--bg-elevated);
  border: 1px solid var(--header-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
}
.nav-dropdown-wrap.open .nav-dropdown,
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 900px) {
  .nav-dropdown-wrap:hover .nav-dropdown-arrow { transform: rotate(-135deg); }
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--header-text-muted);
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: rgba(139, 92, 246, 0.12);
  color: var(--header-text);
}
@media (max-width: 899px) {
  .nav-dropdown-wrap.open .nav-dropdown {
    position: static;
    margin-top: 0.25rem;
    margin-left: 0.5rem;
  }
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; text-align: left; }
  .hero .hero-buttons { justify-content: flex-start; }
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--text);
}

/* Efeito de digitação: palavra "Profissional" + cursor piscando ao final */
.hero-typing-word {
  display: inline;
}

.hero-typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 2px;
  vertical-align: -0.1em;
  background: var(--accent-purple);
  border-radius: 1px;
  animation: heroCursorBlink 1s step-end infinite;
}

@keyframes heroCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero .sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Subtítulo em loop: frases de conversão com transição fluida */
.hero-sub-rotating {
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sub-phrase {
  transition: opacity 0.5s ease;
}

.hero-sub-phrase.hero-sub-phrase--fade {
  opacity: 0;
}

@media (min-width: 900px) { .hero .sub { margin-left: 0; margin-right: 0; } }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Hero visual: orbs + browser mockup */
.hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 { width: 200px; height: 200px; background: var(--accent-purple); top: 10%; left: 10%; animation-delay: 0s; }
.hero-orb-2 { width: 160px; height: 160px; background: var(--accent-pink); top: 50%; right: 10%; animation-delay: -4s; }
.hero-orb-3 { width: 180px; height: 180px; background: var(--accent-blue); bottom: 10%; left: 30%; animation-delay: -8s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.browser-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  overflow: hidden;
}

.hero-mockup.browser-mockup {
  max-width: 380px;
  animation: heroMockupFloat 4s ease-in-out infinite;
  position: relative;
  will-change: transform;
}

.hero-mockup.browser-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 0 0;
  pointer-events: none;
  box-shadow: inset 0 0 50px rgba(139, 92, 246, 0.12);
  animation: heroMockupGlow 3s ease-in-out infinite;
}

@keyframes heroMockupGlow {
  0%, 100% { box-shadow: inset 0 0 50px rgba(139, 92, 246, 0.12); opacity: 1; }
  50% { box-shadow: inset 0 0 80px rgba(139, 92, 246, 0.22); opacity: 1; }
}

@media (min-width: 600px) {
  .hero-mockup.browser-mockup {
    max-width: 420px;
  }
}

@keyframes heroMockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.browser-mockup::before {
  content: '';
  display: block;
  height: 32px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 0 12px;
  background-image: radial-gradient(circle, var(--text-muted) 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 16px 12px;
}

.browser-mockup .mockup-content {
  height: 220px;
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.25) 0%, rgba(219, 39, 119, 0.2) 50%, rgba(59, 130, 246, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-mockup-content {
  height: 260px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(219, 39, 119, 0.28) 40%, rgba(59, 130, 246, 0.28) 70%, rgba(124, 58, 237, 0.2) 100%);
  background-size: 300% 300%;
  animation: heroMockupGradient 6s ease-in-out infinite;
}

@keyframes heroMockupGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.browser-mockup .mockup-content:not(.hero-mockup-content)::before {
  content: '</>';
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  font-family: monospace;
  letter-spacing: 0.2em;
}

/* Hero mockup: serviços com animação contínua */
.hero-mockup-content {
  flex-direction: column;
  padding: 1rem 1.25rem;
  gap: 0.85rem;
  min-height: 260px;
  opacity: 0;
  transform: scale(0.94);
  animation: heroMockupContentIn 0.6s ease-out 0.2s forwards;
}

@keyframes heroMockupContentIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  min-width: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(24px) scale(0.88);
  animation: heroServiceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  will-change: transform, box-shadow;
  transform-style: preserve-3d;
  perspective: 600px;
}
a.hero-service-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-service-item:hover {
  transform: translateY(-6px) scale(1.05) rotateX(2deg);
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Entrada em sequência (após o bloco aparecer) + destaque rotativo contínuo */
.hero-service-item--1 { animation: heroServiceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards, heroServiceRotate 10s ease-in-out 2s infinite; }
.hero-service-item--2 { animation: heroServiceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards, heroServiceRotate 10s ease-in-out 2s infinite; animation-delay: 0.7s, 4s; }
.hero-service-item--3 { animation: heroServiceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards, heroServiceRotate 10s ease-in-out 2s infinite; animation-delay: 0.9s, 6s; }
.hero-service-item--4 { animation: heroServiceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s forwards, heroServiceRotate 10s ease-in-out 2s infinite; animation-delay: 1.1s, 8s; }
.hero-service-item--5 { animation: heroServiceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.3s forwards, heroServiceRotate 10s ease-in-out 2s infinite; animation-delay: 1.3s, 10s; }
.hero-service-item--6 { animation: heroServiceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards, heroServiceRotate 10s ease-in-out 2s infinite; animation-delay: 1.5s, 12s; }

@keyframes heroServiceRotate {
  0%, 14%, 100% {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(0) scale(1) rotateX(0);
  }
  6%, 10% {
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transform: translateY(-3px) scale(1.04) rotateX(1deg);
  }
}

@keyframes heroServiceIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-service-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: heroIconPulse 2.8s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.hero-service-item--1 .hero-service-icon { animation-delay: 0s; }
.hero-service-item--2 .hero-service-icon { animation-delay: 0.3s; }
.hero-service-item--3 .hero-service-icon { animation-delay: 0.6s; }
.hero-service-item--4 .hero-service-icon { animation-delay: 0.9s; }
.hero-service-item--5 .hero-service-icon { animation-delay: 1.2s; }
.hero-service-item--6 .hero-service-icon { animation-delay: 1.5s; }

.hero-service-item:hover .hero-service-icon {
  transform: scale(1.2);
  animation-play-state: paused;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes heroIconPulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero-service-icon svg {
  width: 100%;
  height: 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-service-label {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mockup-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: lowercase;
  margin: 0;
  opacity: 0;
  animation: heroTaglineIn 0.8s ease-out 1.3s forwards, heroTaglineGlow 2.5s ease-in-out 2s infinite;
}

@keyframes heroTaglineIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTaglineGlow {
  0%, 100% { color: rgba(255, 255, 255, 0.55); text-shadow: 0 0 0 transparent; }
  50% { color: rgba(255, 255, 255, 0.9); text-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
}

/* Benefit icons SVG container */
.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* Video section */
.video-section {
  padding: 4rem 0;
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-card);
  aspect-ratio: 16/9;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.video-overlay:hover {
  background: rgba(0,0,0,0.45);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-cta);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
  transition: transform 0.2s;
}

.play-btn:hover { transform: scale(1.1); }

.play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: #fff;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal.visible { display: flex; }

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-modal-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.video-modal-close:hover { background: var(--bg-elevated); }

/* Testimonial avatar */
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.testimonial-card .author-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-card .author-line .author { margin: 0; }

/* Gallery / exemplos */
.gallery-section {
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 16/10;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.9rem;
  font-weight: 600;
}

/* Scroll-in animation for cards */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Benefits grid */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.benefit-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gradient-cta);
  opacity: 0.9;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Variantes dos benefit cards */
.benefit-card--accent {
  position: relative;
  padding-left: 1.5rem;
}

.benefit-card--accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 2px;
  background: var(--gradient-cta);
}

.benefit-card--accent .benefit-icon {
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.benefit-card--outline .benefit-icon {
  background: transparent;
  border: 2px solid var(--accent-purple);
}

.benefit-card--outline .benefit-icon svg { color: var(--accent-purple); }

.benefit-card--featured {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(124, 58, 237, 0.08) 100%);
  border-color: rgba(139, 92, 246, 0.3);
}

.benefit-card--featured:hover { border-color: rgba(139, 92, 246, 0.6); }

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stat strong {
  animation: statFade 0.8s ease-out;
}

@keyframes statFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.08) 50%, transparent 100%);
  border-radius: var(--radius-lg);
}

.cta-section h2 {
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Cards (services, pricing) – flex para centralizar card sozinho na última linha */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card-grid > * {
  flex: 1 1 280px;
  max-width: 360px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
}

.card h3 { margin-bottom: 0.5rem; }
.card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin: 0.75rem 0;
}

.card ul {
  list-style: none;
  margin: 1rem 0;
}

.card li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.25rem;
}

.card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-weight: 700;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.site-footer .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  display: block;
  max-height: 200px;
  max-width: 300px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover { color: var(--text); }

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sticky-cta.visible { display: flex; }

/* Botão fechar: no desktop fica discreto no canto; no mobile vira etiqueta central */
.sticky-cta-close {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 28px;
  border: none;
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border);
  border-bottom: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.sticky-cta-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

@media (min-width: 769px) {
  .sticky-cta-close {
    display: none;
  }
}

@media (max-width: 768px) {
  .sticky-cta {
    padding-top: 1.25rem;
  }
  .sticky-cta-close {
    display: flex;
  }
}

/* Esconde a barra com efeito quando o rodapé entra na tela */
.sticky-cta.sticky-cta--at-footer {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

/* Escondido ao clicar em fechar (sessão) */
.sticky-cta.sticky-cta--dismissed {
  display: none !important;
}

/* WhatsApp float button – ícone oficial */
.wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--wa-green-bright) 0%, var(--wa-green) 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--wa-green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px var(--wa-green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.wa-float-icon {
  width: 28px;
  height: 28px;
}

/* Overlay do chat */
.wa-chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.wa-chat-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Painel estilo chat */
.wa-chat-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 95;
  width: 100%;
  max-width: 360px;
  max-height: calc(100vh - 6rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s ease-out;
  overflow: hidden;
}

.wa-chat-panel.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.wa-chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--wa-green-bright) 0%, var(--wa-green) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-chat-avatar svg {
  width: 24px;
  height: 24px;
}

.wa-chat-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.wa-chat-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0 0;
}

.wa-chat-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.wa-chat-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.wa-chat-body {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.wa-chat-home {
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-chat-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  white-space: nowrap;
}

.wa-chat-faq-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.5rem 0 0 0;
}

.wa-chat-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wa-chat-faq-item {
  display: block;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.wa-chat-faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
}

.wa-chat-faq-item {
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--border);
  font-family: inherit;
}

/* Vista conversa FAQ: esconder/mostrar home vs conversa */
.wa-chat-home.wa-chat-hidden,
.wa-chat-conversation.wa-chat-hidden {
  display: none !important;
}

.wa-chat-conversation {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.wa-chat-back {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.wa-chat-back:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.wa-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.wa-chat-bubble {
  max-width: 88%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  line-height: 1.45;
}

.wa-chat-bubble-text {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.wa-chat-bubble-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.wa-chat-bubble-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--wa-green-bright), var(--wa-green));
  color: #fff;
}

.wa-chat-bubble-user .wa-chat-bubble-text {
  color: #fff;
}

.wa-chat-bubble-atendente {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.wa-chat-conversation .wa-chat-attendee-btn {
  flex-shrink: 0;
  margin: 0 1.25rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsivo: painel em bottom sheet no celular (chat como app) */
@media (max-width: 480px) {
  .wa-chat-panel {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: none;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .wa-chat-body {
    min-height: 280px;
  }

  .wa-chat-back {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    min-height: 48px;
  }

  .wa-chat-messages {
    padding: 1rem 1rem 1.25rem;
  }

  .wa-chat-bubble {
    max-width: 92%;
    padding: 0.875rem 1.125rem;
  }

  .wa-chat-bubble-text {
    font-size: 1rem;
  }

  .wa-chat-conversation .wa-chat-attendee-btn {
    margin: 0 1rem 1rem;
    padding: 0.875rem 1.25rem;
    min-height: 48px;
  }

  .wa-float {
    bottom: 1.25rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }

  .wa-float-icon {
    width: 26px;
    height: 26px;
  }
}

/* Aviso de cookies (Google Ads / LGPD) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--accent-purple);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: var(--accent-pink);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.cookie-banner-link:hover {
  color: var(--text);
}

.cookie-banner-accept {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner-actions {
    justify-content: center;
  }
}

/* Páginas legais (Privacidade, Termos) */
.legal-page .legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-page .legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
}

.legal-page a {
  color: var(--accent-purple);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--accent-pink);
}

/* Form */
input, select, textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group { margin-bottom: 1rem; }

/* Chat preview (etapas estilo IA) */
.preview-chat {
  max-width: 560px;
  margin: 0 auto 2rem;
  height: 420px;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}

.chat-messages {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}

.chat-msg {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: chatIn 0.35s ease-out;
}

@keyframes chatIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg--bot .chat-bubble {
  background: var(--bg-dark);
  border: none;
  border-radius: 18px 18px 18px 4px;
  padding: 1rem 1.25rem;
  color: var(--text);
  max-width: 85%;
}

.chat-msg--user .chat-bubble {
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 18px 18px 4px 18px;
  padding: 0.75rem 1.25rem;
  margin-left: auto;
  max-width: 85%;
}

.chat-msg--user { flex-direction: row-reverse; }

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.chat-msg--user .chat-avatar { background: var(--bg-elevated); }

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.chat-options button {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.chat-options button:hover {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.15);
}

.chat-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.chat-input-wrap input {
  margin-bottom: 0;
  flex: 1;
}

.chat-outro-wrap {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chat-outro-input {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  outline: none;
}

.chat-outro-input:focus {
  border-color: var(--accent-purple);
}

.chat-outro-btn {
  flex-shrink: 0;
}

.chat-typing {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
}

/* ========== Proposta / Orçamento – Preloader e card ========== */
.proposal-preloader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 15, 0.85);
  border-radius: var(--radius-lg);
  z-index: 10;
  animation: proposalFadeIn 0.3s ease-out;
}

@keyframes proposalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.proposal-preloader-inner {
  text-align: center;
  padding: 2rem;
}

.proposal-preloader-spinner {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--border);
  border-top-color: var(--accent-purple);
  border-radius: 50%;
  animation: proposalSpin 0.9s linear infinite;
}

@keyframes proposalSpin {
  to { transform: rotate(360deg); }
}

.proposal-preloader-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem 0;
}

.proposal-preloader-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.proposal-result {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.proposal-result--visible {
  opacity: 1;
  transform: translateY(0);
}

.proposal-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.proposal-card--animate {
  animation: proposalCardIn 0.6s ease-out;
}

@keyframes proposalCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proposal-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.proposal-illustration {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--gradient-cta);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: proposalIconPulse 2s ease-in-out infinite;
}

.proposal-illustration-icon {
  font-size: 2rem;
}

@keyframes proposalIconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.proposal-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proposal-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
}

.proposal-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.proposal-value-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.proposal-value-block:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.proposal-value-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.proposal-value-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-purple);
}

.proposal-value-faixa {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.proposal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.proposal-actions .btn {
  min-width: 180px;
}

.proposal-actions .btn-whatsapp {
  margin-left: 0;
}

.proposal-nao-interesse-wrap {
  margin-top: 1rem;
  text-align: center;
}

.proposal-nao-interesse-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.proposal-nao-interesse-link:hover {
  color: var(--text);
}

.nao-interesse-ok-msg {
  margin-top: 1rem;
  color: var(--accent-purple);
  font-size: 0.95rem;
  text-align: center;
}

/* Modal "Não tenho interesse" */
.nao-interesse-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.nao-interesse-modal.nao-interesse-modal--visible {
  opacity: 1;
  visibility: visible;
}

.nao-interesse-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.nao-interesse-modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.nao-interesse-modal-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
}

.nao-interesse-modal-desc {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-nao-interesse .nao-interesse-opcoes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.nao-interesse-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}

.nao-interesse-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
}

.nao-interesse-option input {
  margin: 0;
}

.nao-interesse-outro-wrap {
  margin-bottom: 1rem;
}

.nao-interesse-outro-wrap label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.nao-interesse-outro-wrap textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  min-height: 60px;
}

.form-nao-interesse-erro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--accent-pink);
}

.nao-interesse-modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: stretch;
  margin-top: 1rem;
}

.nao-interesse-modal-actions .btn {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.proposal-finalizar-form {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.proposal-finalizar-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.form-finalizar-proposta .form-group {
  margin-bottom: 1rem;
}

.form-finalizar-proposta label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-finalizar-proposta input {
  width: 100%;
  max-width: 320px;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
}

.form-finalizar-proposta input:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.form-finalizar-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.form-finalizar-erro {
  color: var(--danger, #dc2626);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.form-finalizar-proposta button[type="submit"] {
  margin-top: 0.25rem;
}

.form-finalizar-proposta button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Página de sucesso da proposta */
.sucesso-proposta-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.sucesso-proposta-fireworks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.firework {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #fbbf24 0%, #f59e0b 40%, #dc2626 100%);
  box-shadow: 0 0 12px #fbbf24, 0 0 24px rgba(251, 191, 36, 0.5);
  animation: fireworkBurst 1.2s ease-out forwards;
  opacity: 0;
}

.firework-1 { left: 15%; top: 20%; animation-delay: 0.2s; }
.firework-2 { left: 50%; top: 10%; background: radial-gradient(circle, #a78bfa 0%, #8b5cf6 100%); box-shadow: 0 0 12px #a78bfa; animation-delay: 0.4s; }
.firework-3 { right: 15%; top: 25%; animation-delay: 0.6s; }
.firework-4 { left: 10%; top: 50%; background: radial-gradient(circle, #34d399 0%, #10b981 100%); box-shadow: 0 0 12px #34d399; animation-delay: 0.8s; }
.firework-5 { right: 12%; top: 50%; animation-delay: 1s; }
.firework-6 { left: 20%; bottom: 20%; background: radial-gradient(circle, #f472b6 0%, #ec4899 100%); box-shadow: 0 0 12px #f472b6; animation-delay: 1.2s; }
.firework-7 { left: 50%; bottom: 15%; animation-delay: 1.4s; }
.firework-8 { right: 18%; bottom: 22%; background: radial-gradient(circle, #60a5fa 0%, #3b82f6 100%); box-shadow: 0 0 12px #60a5fa; animation-delay: 1.6s; }

@keyframes fireworkBurst {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  40% {
    transform: scale(2.5);
    opacity: 0.9;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}

.sucesso-proposta-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
}

.sucesso-proposta-illustration {
  margin-bottom: 1.5rem;
}

.sucesso-proposta-figure {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.sucesso-proposta-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(139, 92, 246, 0.25));
}

.sucesso-proposta-svg .sucesso-head {
  animation: sucessoHeadIn 0.5s ease-out;
}

.sucesso-proposta-svg .sucesso-body {
  animation: sucessoBodyIn 0.5s ease-out 0.1s both;
}

.sucesso-proposta-svg .sucesso-doc {
  animation: sucessoDocIn 0.6s ease-out 0.2s both;
  transform-origin: center bottom;
}

.sucesso-proposta-svg .sucesso-check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: sucessoCheckDraw 0.5s ease-out 0.7s forwards;
}

.sucesso-proposta-svg .sucesso-arm {
  animation: sucessoArmIn 0.4s ease-out 0.35s both;
}

@keyframes sucessoHeadIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sucessoBodyIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sucessoDocIn {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes sucessoCheckDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes sucessoArmIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.sucesso-proposta-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sucesso-proposta-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sucesso-proposta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.sucesso-proposta-actions .btn-whatsapp {
  margin-left: 0;
}

.preview-result {
  margin-top: 2rem;
}

.preview-result-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.preview-result-card .preview-desc {
  color: var(--text-muted);
  margin: 0.5rem 0;
}

.preview-result-card .preview-valor {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin: 1rem 0;
}

.preview-result-card .preview-actions {
  margin-top: 1rem;
}

.preview-result-card .preview-actions .btn-whatsapp { margin-left: 0.5rem; }

/* Mockup interativo (estilo navegador) */
.preview-mock--interactive {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.mockup-browser {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1;
  max-width: 240px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.mockup-viewport {
  min-height: 320px;
  max-height: 480px;
  overflow-y: auto;
  padding: 0;
}

/* Imagem gerada pela IA (DALL-E) – preenche toda a tela do dispositivo */
.mockup-viewport.mockup-imagem {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #0a0a0a;
  min-height: 320px;
  max-height: 520px;
}

.mockup-imagem-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.mockup-aviso .mockup-aviso-texto {
  padding: 1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* HTML gerado pela IA (mockup_html) */
.mockup-viewport.mockup-ai {
  padding: 0.5rem;
  font-size: 0.7rem;
}

.mockup-ai .ai-sidebar,
.mockup-ai aside {
  background: rgba(0,0,0,0.2);
  padding: 0.5rem;
  border-radius: 6px;
}

.mockup-ai .ai-card,
.mockup-ai [class*="card"] {
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

.mockup--claro.mockup-ai .ai-card,
.mockup--claro.mockup-ai [class*="card"] {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}

.mockup-ai table,
.mockup-ai .ai-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.65rem;
}

.mockup-ai th,
.mockup-ai td {
  padding: 0.35rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mockup--claro.mockup-ai th,
.mockup--claro.mockup-ai td {
  border-bottom-color: rgba(0,0,0,0.08);
}

.mockup-ai h1, .mockup-ai h2, .mockup-ai h3 {
  margin: 0 0 0.35rem 0;
  font-size: 0.9em;
}

.mockup-ai p { margin: 0 0 0.25rem 0; }
.mockup-ai section, .mockup-ai article { margin-bottom: 0.5rem; }
.mockup-ai nav a, .mockup-ai .ai-nav a {
  display: block;
  padding: 0.25rem 0;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}

.mockup-ai button, .mockup-ai .ai-cta {
  padding: 0.35rem 0.6rem;
  font-size: 0.65rem;
  border-radius: 6px;
  border: none;
  background: var(--accent-purple);
  color: #fff;
  cursor: default;
}

/* Blocos do layout (seções do mockup) */
.mockup-block {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, transform 0.15s;
  cursor: default;
}

.mockup-block:hover {
  background: rgba(255,255,255,0.04);
}

.mockup-block:active {
  transform: scale(0.995);
}

.mockup-block-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}

.mockup-block-content {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

/* Temas do mockup (cores escolhidas) */
.mockup-viewport.mockup--escuro {
  background: #1a1a1e;
}

.mockup-viewport.mockup--claro {
  background: #f5f5f7;
}

.mockup-viewport.mockup--claro .mockup-block {
  border-bottom-color: rgba(0,0,0,0.08);
}

.mockup-viewport.mockup--claro .mockup-block:hover {
  background: rgba(0,0,0,0.04);
}

.mockup-viewport.mockup--claro .mockup-block-title {
  color: rgba(0,0,0,0.45);
}

.mockup-viewport.mockup--claro .mockup-block-content {
  color: rgba(0,0,0,0.85);
}

.mockup-viewport.mockup--azul {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.mockup-viewport.mockup--azul .mockup-block:hover {
  background: rgba(59, 130, 246, 0.12);
}

.mockup-viewport.mockup--verde {
  background: linear-gradient(180deg, #0f1f14 0%, #1a2e1f 100%);
}

.mockup-viewport.mockup--verde .mockup-block:hover {
  background: rgba(34, 197, 94, 0.12);
}

.mockup-viewport.mockup--roxo {
  background: linear-gradient(180deg, #1e1b2e 0%, #2d2640 100%);
}

.mockup-viewport.mockup--roxo .mockup-block:hover {
  background: rgba(139, 92, 246, 0.18);
}

/* Hero destacado (primeira seção após header) */
.mockup-block.mockup-block--hero {
  padding: 2rem 1.25rem;
  text-align: center;
}

.mockup-block--hero .mockup-block-content {
  font-size: 1.1rem;
}

.mockup-block.mockup-block--header {
  padding: 0.75rem 1.25rem;
}

.mockup-block.mockup-block--footer {
  padding: 0.75rem 1.25rem;
  border-bottom: none;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.mockup-viewport.mockup--claro .mockup-block.mockup-block--footer {
  color: rgba(0,0,0,0.5);
}

/* ========== Mockup Dashboard (CRM / Sistema / E-commerce) ========== */
.mockup-viewport.mockup-tpl--dashboard {
  background: #f8fafc;
  padding: 0;
}

.mockup-viewport.mockup-tpl--dashboard.mockup--escuro { background: #1e293b; }
.mockup-viewport.mockup-tpl--dashboard.mockup--claro { background: #f1f5f9; }
.mockup-viewport.mockup-tpl--dashboard.mockup--azul { background: #0f172a; }
.mockup-viewport.mockup-tpl--dashboard.mockup--verde { background: #0f1f14; }
.mockup-viewport.mockup-tpl--dashboard.mockup--roxo { background: #1e1b2e; }

.dm-layout {
  display: flex;
  min-height: 380px;
  font-size: 0.7rem;
}

.dm-sidebar {
  width: 52px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.25);
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.mockup--claro .dm-sidebar { background: rgba(0,0,0,0.08); }

.dm-logo {
  font-weight: 700;
  color: #fff;
  padding: 0.35rem;
  font-size: 0.65rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}

.mockup--claro .dm-logo { color: #334155; background: rgba(0,0,0,0.08); }

.dm-nav { display: flex; flex-direction: column; gap: 2px; width: 100%; }
.dm-nav-item {
  display: block;
  padding: 0.4rem 0.5rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 4px;
  transition: background 0.15s;
}

.dm-nav-item:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mockup--claro .dm-nav-item { color: #475569; }
.mockup--claro .dm-nav-item:hover { background: rgba(0,0,0,0.08); color: #0f172a; }

.dm-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.dm-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mockup--escuro .dm-topbar { background: rgba(255,255,255,0.06); border-bottom-color: rgba(255,255,255,0.08); }
.mockup--azul .dm-topbar { background: rgba(30,41,59,0.9); }
.mockup--roxo .dm-topbar { background: rgba(45,38,64,0.95); }
.mockup--verde .dm-topbar { background: rgba(26,46,31,0.95); }

.dm-search {
  flex: 1;
  max-width: 140px;
  padding: 0.3rem 0.5rem;
  font-size: 0.6rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  background: #fff;
}

.mockup--escuro .dm-search { background: rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.1); color: #e2e8f0; }

.dm-topbar-icons { font-size: 0.7rem; opacity: 0.8; }
.dm-content { padding: 0.6rem 0.75rem; flex: 1; overflow-y: auto; }
.dm-title { font-size: 0.85rem; margin: 0 0 0.1rem 0; color: #0f172a; font-weight: 700; }
.dm-subtitle { font-size: 0.55rem; color: #64748b; margin: 0 0 0.5rem 0; }
.mockup--escuro .dm-title { color: #f1f5f9; }
.mockup--escuro .dm-subtitle { color: #94a3b8; }
.mockup--azul .dm-title { color: #e2e8f0; }
.mockup--azul .dm-subtitle { color: #94a3b8; }
.mockup--roxo .dm-title { color: #e9d5ff; }
.mockup--verde .dm-title { color: #bbf7d0; }

.dm-cards {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.dm-card {
  flex: 1;
  padding: 0.5rem 0.6rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mockup--escuro .dm-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.mockup--azul .dm-card { background: rgba(30,41,59,0.6); border-color: rgba(71,85,105,0.5); }
.mockup--roxo .dm-card { background: rgba(69,60,103,0.5); border-color: rgba(139,92,246,0.25); }
.mockup--verde .dm-card { background: rgba(34,46,34,0.6); border-color: rgba(34,197,94,0.2); }

.dm-card-n { font-size: 1rem; font-weight: 700; color: #0f172a; }
.dm-card-l { font-size: 0.55rem; color: #64748b; }
.mockup--escuro .dm-card-n { color: #f1f5f9; }
.mockup--escuro .dm-card-l { color: #94a3b8; }
.mockup--azul .dm-card-n { color: #93c5fd; }
.mockup--roxo .dm-card-n { color: #c4b5fd; }
.mockup--verde .dm-card-n { color: #86efac; }

.dm-charts {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.dm-chart-main {
  flex: 1;
  min-height: 72px;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mockup--escuro .dm-chart-main { background: rgba(255,255,255,0.06); }
.dm-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}
.dm-chart-bars::before,
.dm-chart-bars::after { content: ''; display: block; height: 100%; width: 8px; background: var(--accent-purple); border-radius: 2px; opacity: 0.8; }
.dm-chart-bars::before { height: 60%; }
.dm-chart-bars::after { height: 85%; }

.dm-chart-label { font-size: 0.5rem; color: #64748b; margin-top: 0.25rem; }
.mockup--escuro .dm-chart-label { color: #94a3b8; }

.dm-chart-side { display: flex; flex-direction: column; gap: 0.35rem; width: 70px; flex-shrink: 0; }
.dm-mini-chart {
  padding: 0.35rem;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mockup--escuro .dm-mini-chart { background: rgba(255,255,255,0.06); }
.dm-mini-n { font-weight: 700; font-size: 0.75rem; color: #0f172a; }
.dm-mini-l { font-size: 0.5rem; color: #64748b; }
.mockup--escuro .dm-mini-n { color: #e2e8f0; }
.mockup--escuro .dm-mini-l { color: #94a3b8; }
.dm-mini-bars { height: 16px; display: flex; align-items: flex-end; gap: 2px; }
.dm-mini-bars::before { content: ''; width: 6px; height: 80%; background: #3b82f6; border-radius: 2px; }
.dm-mini-bars::after { content: ''; width: 6px; height: 50%; background: #94a3b8; border-radius: 2px; }
.dm-mini-line { height: 16px; background: linear-gradient(90deg, transparent 0%, #22c55e 100%); border-radius: 2px; opacity: 0.7; }

.dm-table-wrap { border: 1px solid rgba(0,0,0,0.08); border-radius: 6px; overflow: hidden; }
.mockup--escuro .dm-table-wrap { border-color: rgba(255,255,255,0.1); }
.dm-table-header { display: flex; justify-content: space-between; align-items: center; padding: 0.35rem 0.5rem; background: rgba(0,0,0,0.04); }
.mockup--escuro .dm-table-header { background: rgba(255,255,255,0.06); }
.dm-table-header h3 { font-size: 0.65rem; margin: 0; color: #475569; font-weight: 600; }
.mockup--escuro .dm-table-header h3 { color: #94a3b8; }
.dm-table-search { width: 70px; padding: 0.2rem 0.35rem; font-size: 0.5rem; border-radius: 4px; border: 1px solid rgba(0,0,0,0.1); }
.dm-table { width: 100%; border-collapse: collapse; font-size: 0.55rem; }
.dm-table th, .dm-table td { padding: 0.35rem 0.5rem; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.06); }
.dm-table th { background: rgba(0,0,0,0.03); color: #64748b; font-weight: 600; }
.mockup--escuro .dm-table th { background: rgba(255,255,255,0.05); color: #94a3b8; }
.mockup--escuro .dm-table td { border-bottom-color: rgba(255,255,255,0.06); color: #e2e8f0; }
.dm-badge { font-size: 0.5rem; padding: 0.15rem 0.35rem; border-radius: 10px; display: inline-block; }
.dm-badge-ok { background: rgba(34,197,94,0.2); color: #16a34a; }
.dm-badge-pend { background: rgba(234,179,8,0.2); color: #ca8a04; }
.mockup--escuro .dm-badge-ok { background: rgba(34,197,94,0.25); color: #4ade80; }
.mockup--escuro .dm-badge-pend { background: rgba(234,179,8,0.25); color: #facc15; }

/* ========== Mockup Landing ========== */
.lm-wrap { padding: 0.5rem; }
.lm-hero {
  text-align: center;
  padding: 1rem 0.75rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(236,72,153,0.15) 100%);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.lm-hero h2 { font-size: 0.9rem; margin: 0 0 0.25rem 0; color: #1e1b4b; }
.mockup--escuro .lm-hero h2 { color: #e9d5ff; }
.lm-hero p { font-size: 0.6rem; color: #64748b; margin: 0 0 0.5rem 0; }
.lm-cta { padding: 0.35rem 0.75rem; font-size: 0.6rem; border-radius: 6px; border: none; background: var(--accent-purple); color: #fff; cursor: pointer; }
.lm-sections { display: flex; flex-direction: column; gap: 0.35rem; }
.lm-block { padding: 0.5rem 0.6rem; background: rgba(0,0,0,0.04); border-radius: 6px; font-size: 0.6rem; color: #475569; }
.mockup--escuro .lm-block { background: rgba(255,255,255,0.06); color: #cbd5e1; }
.lm-label { display: block; font-size: 0.5rem; text-transform: uppercase; color: #94a3b8; margin-bottom: 0.2rem; }
.mockup--escuro .lm-label { color: #64748b; }

/* ========== Mockup App (celular) ========== */
.am-wrap { max-width: 200px; margin: 0 auto; padding: 0.5rem; background: #1e293b; border-radius: 12px; min-height: 320px; }
.am-statusbar { height: 18px; background: rgba(255,255,255,0.08); border-radius: 8px 8px 0 0; margin: 0 -0.5rem 0.5rem -0.5rem; }
.am-header { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; margin-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.am-back { font-size: 0.8rem; color: #94a3b8; cursor: pointer; }
.am-header h2 { font-size: 0.75rem; margin: 0; color: #f1f5f9; font-weight: 600; }
.am-list { display: flex; flex-direction: column; gap: 0.25rem; }
.am-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.6rem; background: rgba(255,255,255,0.06); border-radius: 8px; font-size: 0.65rem; color: #e2e8f0; }
.am-item:hover { background: rgba(255,255,255,0.1); }
.am-item-icon { font-size: 0.8rem; }

/* ========== Mockup Automação (fluxo) ========== */
.vm-wrap { padding: 0.75rem; }
.vm-title { font-size: 0.8rem; margin: 0 0 0.75rem 0; color: #f1f5f9; text-align: center; }
.vm-flow { display: flex; flex-direction: column; gap: 0.35rem; }
.vm-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border-left: 3px solid var(--accent-purple);
}
.vm-step-n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.vm-step-content { font-size: 0.65rem; color: #e2e8f0; }
.mockup--claro .vm-title { color: #0f172a; }
.mockup--claro .vm-step { background: rgba(0,0,0,0.05); border-left-color: var(--accent-purple); }
.mockup--claro .vm-step-content { color: #475569; }

/* Iframe responsivo */
.iframe-wrap {
  position: relative;
  padding-bottom: 80%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.step {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step .num {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* Processo (como trabalhamos) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.process-step:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.process-step h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

.process-step--outline .process-step-icon {
  background: transparent;
  border: 2px solid var(--accent-purple);
}

.process-step--outline .process-step-icon svg { color: var(--accent-purple); }

.process-step--accent {
  position: relative;
  padding-top: 1.75rem;
}

.process-step--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient-cta);
}

/* Bloco garantia / confiança */
.trust-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.trust-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item-icon svg { width: 24px; height: 24px; color: var(--accent-purple); }
.trust-item h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.trust-item p { font-size: 0.9rem; color: var(--text-muted); }

.trust-item--accent {
  border-left: 4px solid var(--accent-purple);
}

.trust-item--highlight {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124, 58, 237, 0.06) 100%);
  border-color: rgba(139, 92, 246, 0.25);
}

/* Card de serviço com ícone (home) */
.service-card-home {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card-home:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.service-card-home .card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card-home .card-icon svg { width: 26px; height: 26px; color: #fff; }
.service-card-home h3 { margin-bottom: 0.5rem; }
.service-card-home .card-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.5; }
.service-card-home .card-price { font-size: 1.25rem; font-weight: 700; color: var(--accent-purple); margin-bottom: 1rem; }

/* Variantes dos service cards (home) */
.service-card-home--accent {
  position: relative;
  padding-left: 2rem;
}

.service-card-home--accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 4px;
  border-radius: 2px;
  background: var(--gradient-cta);
}

.service-card-home--accent .card-icon {
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

.service-card-home--featured {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card-home--featured:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.service-card-home--minimal .card-icon {
  background: transparent;
  border: 2px solid var(--accent-pink);
}

.service-card-home--minimal .card-icon svg { color: var(--accent-pink); }

.service-card-home--minimal h3 {
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

/* FAQ accordion */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-purple);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
}

.faq-item[open] .faq-answer { padding-top: 1rem; }

/* Hero trust line */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-trust span { display: flex; align-items: center; gap: 0.4rem; }

/* Card com ícone (página serviços) */
.card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card .card-icon svg { width: 24px; height: 24px; color: #fff; }
.card .card-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.5; }
.card .card-ideal { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* CTA Home: Gerador de Landing Page – mobile sempre visível; desktop ao rolar */
.landing-ai-cta-home {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 769px) {
  .landing-ai-cta-home {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .landing-ai-cta-home.landing-ai-cta-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-ai-cta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(109, 40, 217, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.landing-ai-cta-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
  color: var(--text);
  transform: translateY(-1px);
}
.landing-ai-cta-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-ai-cta-icon svg { width: 22px; height: 22px; color: var(--accent-purple); }
.landing-ai-cta-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.landing-ai-cta-text strong { font-size: 1.05rem; color: var(--text); }
.landing-ai-cta-text span { font-size: 0.9rem; color: var(--text-muted); }
.landing-ai-cta-arrow {
  font-size: 1.25rem;
  color: var(--accent-purple);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .landing-ai-cta-card { flex-wrap: wrap; padding: 1rem; }
  .landing-ai-cta-text strong { font-size: 1rem; }
}

/* Modal/Banner: Visualize a prévia do seu site de graça (home, ao carregar) */
.preview-banner-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.preview-banner-overlay--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.preview-banner-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 14, 0.75);
  backdrop-filter: blur(6px);
}
.preview-banner-modal {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, rgba(26, 26, 36, 0.98) 0%, rgba(18, 18, 24, 0.99) 100%);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 40px rgba(139, 92, 246, 0.15);
  transform: scale(0.92) translateY(10px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.preview-banner-overlay--visible .preview-banner-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: previewBannerShine 2.5s ease-in-out 0.5s infinite alternate;
}
@keyframes previewBannerShine {
  from { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 40px rgba(139, 92, 246, 0.15); }
  to   { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 56px rgba(139, 92, 246, 0.22); }
}
.preview-banner-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.preview-banner-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.preview-banner-badge {
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.45);
  animation: previewBannerBadgePulse 2s ease-in-out infinite;
}
@keyframes previewBannerBadgePulse {
  0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 4px 14px rgba(34, 197, 94, 0.45); }
  50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.55); }
}
.preview-banner-graphic {
  text-align: center;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}
.preview-banner-illo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(139, 92, 246, 0.25));
}
.preview-illo-dot {
  animation: previewIlloDot 1.5s ease-in-out infinite;
}
.preview-illo-dot:nth-of-type(1) { animation-delay: 0s; }
.preview-illo-dot:nth-of-type(2) { animation-delay: 0.2s; }
.preview-illo-dot:nth-of-type(3) { animation-delay: 0.4s; }
@keyframes previewIlloDot {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.preview-illo-line {
  transform-origin: left center;
  animation: previewIlloLine 2s ease-in-out infinite;
}
.preview-illo-line-1 { animation-delay: 0.3s; }
.preview-illo-line-2 { animation-delay: 0.6s; }
.preview-illo-line-3 { animation-delay: 0.9s; }
@keyframes previewIlloLine {
  0%, 100% { opacity: 0.4; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}
.preview-illo-check {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: previewIlloCheck 1.2s ease-out 0.5s forwards;
}
@keyframes previewIlloCheck {
  to { stroke-dashoffset: 0; }
}
.preview-illo-spark {
  animation: previewIlloSpark 1.8s ease-in-out infinite;
}
.preview-illo-spark-1 { animation-delay: 0s; transform-origin: 28px 32px; }
.preview-illo-spark-2 { animation-delay: 0.6s; transform-origin: 96px 55px; }
.preview-illo-spark-3 { animation-delay: 1.2s; transform-origin: 23px 58px; }
@keyframes previewIlloSpark {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}
.preview-banner-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.preview-banner-title-accent {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.preview-banner-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}
.preview-banner-text strong {
  color: rgba(255, 255, 255, 0.9);
}
.preview-banner-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: previewBannerCtaGlow 2.5s ease-in-out infinite;
}
.preview-banner-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}
@keyframes previewBannerCtaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(236, 72, 153, 0.4); }
}
@media (prefers-reduced-motion: reduce) {
  .preview-banner-modal { transition: opacity 0.2s ease; }
  .preview-banner-overlay--visible .preview-banner-modal { animation: none; }
  .preview-banner-badge,
  .preview-illo-dot,
  .preview-illo-line,
  .preview-illo-check,
  .preview-illo-spark,
  .preview-banner-cta { animation: none; }
  .preview-illo-check { stroke-dashoffset: 0; }
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: -4px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .site-header .wrap {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-card); padding: 1rem; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  .hero { padding: 3rem 0 2.5rem; }
  .section { padding: 3rem 0; }
  .wa-float { bottom: 4.5rem; right: 1rem; }
}

@media (min-width: 769px) {
  .site-footer .wrap {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
    align-items: center;
    gap: 2rem 3rem;
  }
  .footer-links { justify-content: flex-start; }
}
