/* Efeito breathing glow para CTAs importantes */
@keyframes breathingGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.3), 0 0 40px rgba(124, 92, 255, 0.1);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 30px rgba(124, 92, 255, 0.5), 0 0 60px rgba(124, 92, 255, 0.2);
    transform: scale(1.02);
  }
}

.breathing-glow {
  animation: breathingGlow 3s ease-in-out infinite;
}

/* Hover state para botões com breathing glow */
.breathing-glow:hover {
  animation-play-state: paused;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(124, 92, 255, 0.6), 0 0 80px rgba(124, 92, 255, 0.3);
}

/* Pulse effect para elementos importantes */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Floating effect para cards */
@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

/* Animações de entrada modernas */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classes para elementos que serão animados */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-fadeInUp {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-on-scroll.animate-fadeInLeft {
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-on-scroll.animate-fadeInRight {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-on-scroll.animate-scaleIn {
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-on-scroll.animate-slideInDown {
  animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Animação com delay para elementos sequenciais */
.animate-delay-100 {
  animation-delay: 0.1s !important;
}

.animate-delay-200 {
  animation-delay: 0.2s !important;
}

.animate-delay-300 {
  animation-delay: 0.3s !important;
}

.animate-delay-400 {
  animation-delay: 0.4s !important;
}

.animate-delay-500 {
  animation-delay: 0.5s !important;
}

/* Garante que elementos com delay não apareçam antes da animação */
.animate-delay-100.animate-on-scroll,
.animate-delay-200.animate-on-scroll,
.animate-delay-300.animate-on-scroll,
.animate-delay-400.animate-on-scroll,
.animate-delay-500.animate-on-scroll {
  animation-fill-mode: both;
}

/* Responsividade das animações */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

:root {
  --bg: #0b0b0c;
  --card: #121214;
  --muted: #0f0f10;
  --text: #e7e7ea;
  --sub: #a1a1aa;
  --brand: #7c5cff;
  --brand-2: #4cc38a;
  --border: #232326;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Padding adicional para o body em telas pequenas */
@media (max-width: 640px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
  padding-inline: 16px;
}

/* Responsividade aprimorada do container */
@media (max-width: 768px) {
  .container {
    width: min(1120px, 94%);
    padding-inline: 20px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 96%);
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1120px, 98%);
    padding-inline: 12px;
  }
}

@media (max-width: 380px) {
  .container {
    width: 100%;
    padding-inline: 8px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(11, 11, 12, .96);
  backdrop-filter: saturate(180%) blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background, backdrop-filter;
  isolation: isolate;
  padding-top: 12px;
  transform: translateZ(0);
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

.site-header.scrolled {
  background: rgba(11, 11, 12, .98);
  backdrop-filter: saturate(180%) blur(24px);
}

main {
  position: relative;
  z-index: 1;
}

section[style*="position: relative"] {
  z-index: auto !important;
}

.blur-bg-warm,
.blur-bg-cool,
.blur-bg-subtle,
.blur-bg-accent,
.blur-bg-data {
  z-index: auto !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: padding 0.4s ease;
}

.header-box {
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(18, 18, 20, .92);
  backdrop-filter: saturate(180%) blur(24px);
  border-radius: 14px;
  padding: 10px 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, background, border, box-shadow;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, .25),
    0 1px 3px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.site-header.scrolled .header-box {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(18, 18, 20, .95);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, .3),
    0 2px 4px rgba(0, 0, 0, .4),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.brand {
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.brand.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0
}

.site-header.scrolled .brand.logo {
  transform: scale(0.95);
}

.brand.logo .logo-text,
.brand.logo .logo-mark {
  font-size: 18px
}

.logo-text {
  display: inline-block;
  letter-spacing: -.3px
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: inherit;
  transform: translateY(0.02em)
}

.logo-mark svg {
  width: .85em;
  height: .85em
}

.nav {
  display: none;
  gap: 8px;
  align-items: center;
}

/* Navegação principal com mega menu */
.nav-item {
  position: relative;
}

.nav-link {
  color: var(--sub);
  transition: all 0.2s ease;
  position: relative;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  color: #ffffff;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-item.active .dropdown-icon {
  transform: rotate(180deg);
}

/* Mega Menu - Sistema Click Only */
.nav-item.dropdown {
  position: relative;
}

/* Garantir que o trigger seja clicável */
.dropdown-trigger {
  cursor: pointer !important;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  background: transparent !important;
  pointer-events: auto !important;
  z-index: 10;
}

/* Hover mais bonito e sutil - SEM background */
.dropdown-trigger:hover {
  background: transparent !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Estado ativo (quando mega menu está aberto) - SEM borda e fundo roxo */
.nav-item.dropdown.active .dropdown-trigger {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-trigger::after {
  content: '▼';
  font-size: 11px;
  transition: all 0.3s ease;
  color: currentColor;
  opacity: 0.8;
  margin-left: 4px;
  font-weight: 600;
  transform: scale(0.9);
}

/* Animação da setinha no hover */
.dropdown-trigger:hover::after {
  opacity: 1;
  transform: scale(1) translateY(-1px);
}

/* Rotação da setinha quando ativo */
.nav-item.dropdown.active .dropdown-trigger::after {
  transform: rotate(180deg) scale(1);
  opacity: 1;
  color: #ffffff;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 90vw;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
}

/* Mega menu ativo (aberto) - animação mais bonita */
.nav-item.dropdown.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 32px 24px;
}

.mega-menu-section {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.mega-menu-section:last-child {
  border-right: none;
}

.mega-menu-section h4 {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-section li {
  margin-bottom: 4px;
}

.mega-menu-section a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--sub);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.mega-menu-section a:hover {
  color: var(--text);
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.mega-menu-section a i {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mega-menu-section a:hover i {
  transform: scale(1.1);
  color: var(--brand);
}

/* Overlay para fechar mega menu */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Efeitos de hover aprimorados */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: 2px;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::after {
  opacity: 1;
}

/* Responsividade do mega menu */
@media (max-width: 1024px) {
  .mega-menu {
    width: 700px;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-width: none;
    transform: translateY(-100%);
    border-radius: 0;
    overflow-y: auto;
    background: var(--bg);
  }

  .nav-item.dropdown.active .mega-menu {
    transform: translateY(0);
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
    padding-top: 3rem;
  }

  .mega-menu-section {
    border-right: none;
    border-bottom: 2px solid var(--border);
    padding: 0 0 2rem 0;
  }

  .mega-menu-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .mega-menu-section a {
    padding: 12px 16px;
    font-size: 16px;
  }

  .mega-menu-section h4 {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}

/* Remover inputs de busca indesejados */
.mega-menu input[type="search"],
.mega-menu input[placeholder*="Buscar"],
.mega-menu .search-input {
  display: none !important;
}

/* Melhorias de cursor e interação */
.dropdown-trigger,
.mega-menu-section a {
  -webkit-tap-highlight-color: transparent;
}

/* Smooth cursor para touch devices */
@media (hover: none) and (pointer: coarse) {

  .dropdown-trigger:hover,
  .mega-menu-section a:hover {
    background: transparent;
    transform: none;
  }
}

/* Legacy nav styles para compatibilidade */
.nav a {
  color: var(--sub);
  transition: all 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.nav a:hover {
  color: #ffffff;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center
}

.link-muted {
  color: var(--sub)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: .2s;
  gap: 8px
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-primary {
  background: var(--text);
  color: #000;
  border-color: transparent;
  font-weight: 600
}

.btn-ghost {
  background: transparent;
  color: var(--text)
}

.btn-block {
  width: 100%
}

/* Header responsivo */
@media (max-width: 640px) {
  .brand.logo {
    font-size: 1.6rem !important;
  }

  .brand.logo .logo-text,
  .brand.logo .logo-mark {
    font-size: 1.6rem !important;
  }

  .header-cta .link-muted {
    display: none;
    /* Esconde "Contato" em telas muito pequenas */
  }

  .header-cta .btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .header-cta .btn svg {
    width: 14px;
    height: 14px;
  }

  .header-box {
    padding: 8px 12px;
  }

  .menu-toggle {
    padding: 6px;
  }

  .container {
    width: min(1120px, 94%);
  }
}

@media (max-width: 480px) {
  .brand.logo {
    font-size: 1.4rem !important;
  }

  .brand.logo .logo-text,
  .brand.logo .logo-mark {
    font-size: 1.4rem !important;
  }

  .header-cta .btn-primary {
    padding: 6px 8px;
    font-size: 13px;
  }

  .header-cta .btn-primary svg {
    display: none;
    /* Esconde ícone em telas muito pequenas */
  }

  .header-box {
    padding: 6px 8px;
  }

  .menu-toggle {
    padding: 4px;
  }

  .header-cta {
    gap: 6px;
  }

  .container {
    width: min(1120px, 96%);
  }
}

@media (max-width: 380px) {
  .brand.logo {
    font-size: 1.2rem !important;
  }

  .brand.logo .logo-text,
  .brand.logo .logo-mark {
    font-size: 1.2rem !important;
  }

  .header-cta .btn-primary {
    padding: 5px 6px;
    font-size: 12px;
  }

  .header-cta {
    gap: 4px;
  }

  .menu-toggle {
    padding: 2px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
  }

  .container {
    width: min(1120px, 98%);
  }

  .header-box {
    padding: 4px 6px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
  margin-right: 0;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #cfcfd6;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Melhoria do X quando menu está aberto */
.menu-toggle.active {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
}

.menu-toggle.active span {
  background: #fff;
  width: 20px;
  height: 2px;
}

/* Hero */
.hero {
  padding: 100px 0 60px;
  position: relative
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: -300px;
  /* Estende o background para cobrir a seção dos cards */
  pointer-events: none;
  background: radial-gradient(800px 400px at 70% 20%, rgba(124, 92, 255, .12), transparent 60%)
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center
}

.hero h1 {
  font-size: 72px;
  line-height: 1.03;
  margin: 0 0 16px
}

/* Melhor responsividade para hero */
@media (max-width: 980px) {
  .hero {
    padding: 80px 0 60px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 0 30px;
  }
}

/* Blur effects - efeitos sutis de fundo */
.blur-bg-subtle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at 30% 50%, rgba(124, 92, 255, .04), transparent 70%);
  z-index: -1;
}

.blur-bg-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px 250px at 80% 30%, rgba(76, 195, 138, .06), transparent 60%);
  z-index: -1;
}

.blur-bg-warm::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px 350px at 20% 70%, rgba(255, 107, 107, .05), transparent 65%);
  z-index: -1;
}

.blur-bg-cool::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(450px 200px at 70% 80%, rgba(59, 130, 246, .04), transparent 55%);
  z-index: -1;
}

.blur-bg-data::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(124, 92, 255, .06), transparent 60%),
    radial-gradient(400px 200px at 20% 80%, rgba(76, 195, 138, .04), transparent 50%);
  z-index: -1;
}

.floating-blur {
  position: relative;
}

.floating-blur::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 92, 255, .08), transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  25% {
    transform: translateY(-10px) translateX(5px);
  }

  50% {
    transform: translateY(-5px) translateX(-5px);
  }

  75% {
    transform: translateY(-15px) translateX(3px);
  }
}

.breathing-glow {
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(124, 92, 255, .1), 0 0 40px rgba(124, 92, 255, .05);
  }

  50% {
    box-shadow: 0 0 30px rgba(124, 92, 255, .15), 0 0 60px rgba(124, 92, 255, .08);
  }
}

.hero p {
  color: var(--sub);
  margin: 0 0 28px
}

.hero-actions {
  display: flex;
  gap: 12px
}

.hero-art {
  perspective: 1600px
}

.hero-art {
  perspective: 1600px
}

.browser {
  background: linear-gradient(180deg, #101012, #0b0b0c);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .02) inset;
  transform: rotate(-8deg) rotateX(8deg);
  transform-origin: 60% 40%;
}

.browser {
  position: relative;
  background: linear-gradient(180deg, #101012, #0b0b0c);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 50px 140px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .03) inset;
  transform: rotate(-12deg) rotateX(10deg);
  transform-origin: 60% 40%;
}

.browser:after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -14px;
  height: 40px;
  background: radial-gradient(60% 100% at 50% 0, rgba(0, 0, 0, .5), transparent 70%);
  filter: blur(6px);
  z-index: -1
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border)
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  opacity: .9
}

.dot.red {
  background: #ff5f56;
  box-shadow: 0 0 0 2px rgba(255, 95, 86, .15)
}

.dot.yellow {
  background: #ffbd2e;
  box-shadow: 0 0 0 2px rgba(255, 189, 46, .15)
}

.dot.green {
  background: #27c93f;
  box-shadow: 0 0 0 2px rgba(39, 201, 63, .15)
}

.address-bar {
  margin-left: auto;
  background: #151518;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 7px 14px;
  color: #b5b5be;
  font-size: 12px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06) inset, 0 -6px 20px rgba(0, 0, 0, .6) inset
}

.address-bar {
  margin-left: auto;
  background: linear-gradient(180deg, #1b1b20, #151518);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 8px 16px;
  color: #d7d7db;
  font-size: 12px;
  letter-spacing: .2px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .18) inset, 0 -10px 18px rgba(0, 0, 0, .65) inset, 0 6px 20px rgba(0, 0, 0, .35)
}

.browser-body {
  padding: 18px
}

.order-panel {
  background: linear-gradient(180deg, #0e0e11, #0b0b0c);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .5)
}

.order-panel {
  background: linear-gradient(180deg, #0f0f12, #0b0b0c);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55)
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0f0f12;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #141417, #0f0f12);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05) inset, 0 20px 40px rgba(0, 0, 0, .35)
}

.order-left {
  display: flex;
  gap: 12px;
  align-items: center
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1e1e24;
  color: #c8c8d1;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, .06)
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1e1e24;
  color: #c8c8d1;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, .06)
}

.order-texts {
  display: grid
}

.order-title {
  font-weight: 700
}

.order-title {
  font-weight: 700;
  font-size: 16px
}

.order-sub {
  font-size: 12px;
  color: var(--sub);
  margin-top: -2px
}

.order-status {
  font-size: 13px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px
}

.order-status {
  font-size: 13px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px
}

.order-status.ok {
  color: #36c98e
}

.order-status .status-icon {
  width: 16px;
  height: 16px;
  display: inline-block
}

.order-status .status-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(54, 201, 142, .35))
}

.order-right {
  text-align: right
}

.price {
  font-weight: 700
}

.price {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .2px
}

.time {
  font-size: 12px;
  color: var(--sub)
}

/* Sections */
.section {
  padding: 64px 0
}

/* Removido .section-muted para que herde o background da hero */

/* Garante que o conteúdo das seções apareça sobre o background da hero */
.section {
  position: relative;
  z-index: 1;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.feature h3 {
  margin: 0 0 10px
}

.feature p {
  margin: 0;
  color: var(--sub)
}

/* faixa de features */
.feature-band {
  box-shadow: 0 1px 0 rgba(255, 255, 255, .03) inset, 0 -1px 0 rgba(0, 0, 0, .4) inset
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3)
}

.price-card ul {
  margin: 0;
  padding: 0;
  color: var(--sub);
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none
}

.price-card.destaque {
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.05), var(--card))
}

.price-card.destaque:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.2)
}

.price-big {
  font-size: 36px;
  font-weight: 800;
  color: var(--text)
}

.price-big span {
  font-size: 16px;
  font-weight: 500;
  color: var(--sub)
}

.pricing-tab {
  transition: all 0.2s ease;
  border: 1px solid var(--border) !important;
  font-size: 14px;
  padding: 8px 12px;
}

.pricing-tab:hover {
  border-color: var(--brand) !important;
  transform: translateY(-1px)
}

.pricing-tab.active {
  border-color: var(--brand) !important
}

.price-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub)
}

.price-discount {
  font-weight: 600
}

/* Melhor responsividade para pricing tabs */
@media (max-width: 768px) {
  #pricing-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .pricing-tab {
    font-size: 12px;
    padding: 6px 8px;
  }

  .pricing-tab span {
    display: none;
  }
}

@media (max-width: 640px) {
  #pricing-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .pricing-tab {
    font-size: 11px;
    padding: 5px 6px;
  }
}

/* CTA Section */
input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}

/* Botão WhatsApp responsivo */
.whatsapp-btn {
  min-height: 48px;
  white-space: nowrap;
  overflow: hidden;
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

.whatsapp-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .whatsapp-btn {
    padding: 12px 16px !important;
    font-size: 14px !important;
    gap: 8px !important;
  }

  .whatsapp-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    padding: 10px 12px !important;
    font-size: 13px !important;
    gap: 6px !important;
  }

  .whatsapp-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}

@media (max-width: 360px) {
  .whatsapp-btn span {
    font-size: 12px !important;
  }
}

/* Responsividade da seção CTA final */
.whatsapp-btn {
  white-space: nowrap !important;
  min-width: max-content;
}

.whatsapp-btn span {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    font-size: 0.95rem !important;
    padding: 0.875rem 1.25rem !important;
    gap: 0.5rem !important;
  }

  #comecar .tw-text-5xl {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
  }

  #comecar .tw-py-20 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #comecar .tw-p-8 {
    padding: 1.5rem !important;
  }

  #comecar .tw-gap-8 {
    gap: 1rem !important;
  }

  #comecar .tw-gap-3 {
    gap: 0.5rem !important;
  }
}

@media (max-width: 640px) {
  .whatsapp-btn {
    font-size: 0.9rem !important;
    padding: 0.75rem 1rem !important;
  }

  #comecar .tw-text-5xl {
    font-size: 2rem !important;
  }

  #comecar .tw-text-xl {
    font-size: 1.1rem !important;
  }

  #comecar .tw-py-4 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  #comecar .tw-px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #comecar .tw-flex-wrap {
    flex-wrap: wrap;
  }

  #comecar .tw-justify-center {
    flex-direction: column;
    align-items: center;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    font-size: 0.85rem !important;
    padding: 0.625rem 0.875rem !important;
  }

  #comecar .tw-text-5xl {
    font-size: 1.75rem !important;
  }

  #comecar .tw-p-8 {
    padding: 1rem !important;
  }

  #comecar .tw-gap-3 {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  #comecar .tw-w-6 {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  #comecar .tw-text-sm {
    font-size: 0.8rem !important;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid #2a2a2a;
  padding: 4rem 0 1.5rem;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: #e5e5e5;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7c5cff, transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-description {
  color: #a3a3a3;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 8px;
  color: #7c5cff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(124, 92, 255, 0.2);
  border-color: #7c5cff;
  transform: translateY(-2px);
}

.footer-social a i {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: #7c5cff;
  border-radius: 1px;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links nav a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.footer-links nav a:hover {
  color: #7c5cff;
  padding-left: 0.5rem;
  border-bottom-color: rgba(124, 92, 255, 0.3);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #7c5cff;
}

.footer-copy {
  color: #737373;
  font-size: 0.9rem;
}

/* Footer Responsive - Tablet */
@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* Footer Responsive - Desktop */
@media (min-width: 1024px) {
  .site-footer {
    padding: 5rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .hero h1 {
    font-size: 42px
  }

  .pricing {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 80px 20px 40px;
    animation: slideDown 0.3s ease-out;
  }

  .nav.show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10000;
  }

  .nav a {
    display: block;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 280px;
    position: relative;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .nav a::after {
    display: none;
    /* Remove o underline no mobile */
  }

  .menu-toggle {
    display: inline-flex
  }
}

/* Mobile específico */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 36px
  }

  .nav {
    padding: 70px 15px 30px;
  }

  .nav a {
    padding: 16px 35px;
    font-size: 18px;
    min-width: 250px;
  }

  .nav.show {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px
  }

  .nav {
    padding: 60px 10px 20px;
  }

  .nav a {
    padding: 14px 30px;
    font-size: 16px;
    min-width: 220px;
  }

  .nav.show {
    gap: 16px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 981px) {
  .nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* Garantir que o mega menu funcione em desktop */
  .mega-menu {
    display: block;
  }

  .nav-item {
    display: block;
  }
}

/* ========================================
   SVG PATTERNS PARA BACKGROUNDS
   ======================================== */

/* Classe base para seções com patterns */
.section-with-pattern {
  position: relative;
  overflow: hidden;
}

.section-with-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0; /* pattern entre o blur (z:-1) e o conteúdo (z:1) */
}

/* Conteúdo fica acima do pattern */
.section-with-pattern > * {
  position: relative;
  z-index: 1; 
}

/* Pattern 1: Grid Moderno - Hero Section */
.pattern-modern-grid::after {
  background-image: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="none"/><circle cx="20" cy="20" r="1.5" fill="rgba(124, 92, 255, 0.1)"/><circle cx="0" cy="0" r="1" fill="rgba(124, 92, 255, 0.05)"/><circle cx="40" cy="0" r="1" fill="rgba(124, 92, 255, 0.05)"/><circle cx="0" cy="40" r="1" fill="rgba(124, 92, 255, 0.05)"/><circle cx="40" cy="40" r="1" fill="rgba(124, 92, 255, 0.05)"/></svg>');
  background-size: 40px 40px;
  animation: patternFloat 20s linear infinite;
}

/* Pattern 2: Hexágonos - Features Section */
.pattern-hexagon::after {
  background-image: url('data:image/svg+xml,<svg width="60" height="52" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="52" fill="none"/><polygon points="30,2 45,13 45,35 30,46 15,35 15,13" fill="none" stroke="rgba(124, 92, 255, 0.08)" stroke-width="0.5"/><polygon points="0,28 15,39 15,61 0,72 -15,61 -15,39" fill="none" stroke="rgba(124, 92, 255, 0.05)" stroke-width="0.5"/><polygon points="60,28 75,39 75,61 60,72 45,61 45,39" fill="none" stroke="rgba(124, 92, 255, 0.05)" stroke-width="0.5"/></svg>');
  background-size: 60px 52px;
  animation: patternSlide 25s linear infinite;
}

/* Pattern 3: Pontos Conectados - About Section */
.pattern-connected-dots::after {
  background-image: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><rect width="80" height="80" fill="none"/><circle cx="20" cy="20" r="2" fill="rgba(124, 92, 255, 0.15)"/><circle cx="60" cy="20" r="2" fill="rgba(124, 92, 255, 0.1)"/><circle cx="20" cy="60" r="2" fill="rgba(124, 92, 255, 0.1)"/><circle cx="60" cy="60" r="2" fill="rgba(124, 92, 255, 0.15)"/><line x1="20" y1="20" x2="60" y2="20" stroke="rgba(124, 92, 255, 0.05)" stroke-width="1"/><line x1="20" y1="20" x2="20" y2="60" stroke="rgba(124, 92, 255, 0.05)" stroke-width="1"/><line x1="60" y1="20" x2="60" y2="60" stroke="rgba(124, 92, 255, 0.05)" stroke-width="1"/><line x1="20" y1="60" x2="60" y2="60" stroke="rgba(124, 92, 255, 0.05)" stroke-width="1"/></svg>');
  background-size: 80px 80px;
  animation: patternPulse 15s ease-in-out infinite;
}

/* Pattern 4: Grade Diagonal - Pricing Section */
.pattern-diagonal-grid::after {
  background-image: url('data:image/svg+xml,<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg" transform="rotate(45)"><rect width="30" height="30" fill="none"/><line x1="0" y1="15" x2="30" y2="15" stroke="rgba(124, 92, 255, 0.06)" stroke-width="0.5"/><line x1="15" y1="0" x2="15" y2="30" stroke="rgba(124, 92, 255, 0.06)" stroke-width="0.5"/><circle cx="15" cy="15" r="1" fill="rgba(124, 92, 255, 0.1)"/></svg>');
  background-size: 30px 30px;
  animation: patternRotate 30s linear infinite;
}

/* Pattern 5: Triângulos - Testimonials */
.pattern-triangles::after {
  background-image: url('data:image/svg+xml,<svg width="60" height="52" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="52" fill="none"/><polygon points="30,5 25,15 35,15" fill="rgba(124, 92, 255, 0.08)"/><polygon points="10,25 5,35 15,35" fill="rgba(124, 92, 255, 0.05)"/><polygon points="50,25 45,35 55,35" fill="rgba(124, 92, 255, 0.05)"/><polygon points="30,45 25,55 35,55" fill="rgba(124, 92, 255, 0.08)" transform="rotate(180 30 50)"/></svg>');
  background-size: 60px 52px;
  animation: patternBounce 18s ease-in-out infinite;
}

/* Pattern 6: Ondas - Footer */
.pattern-waves::after {
  background-image: url('data:image/svg+xml,<svg width="100" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="20" fill="none"/><path d="M0,10 Q25,5 50,10 T100,10" fill="none" stroke="rgba(124, 92, 255, 0.08)" stroke-width="1"/><path d="M0,15 Q25,10 50,15 T100,15" fill="none" stroke="rgba(124, 92, 255, 0.05)" stroke-width="0.5"/></svg>');
  background-size: 100px 20px;
  animation: patternWave 12s ease-in-out infinite;
}

/* Animações para os patterns */
@keyframes patternFloat {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

@keyframes patternSlide {
  0% { background-position: 0 0; }
  100% { background-position: 60px 52px; }
}

@keyframes patternPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.02); }
}

@keyframes patternRotate {
  0% { background-position: 0 0; transform: rotate(0deg); }
  100% { background-position: 30px 30px; transform: rotate(360deg); }
}

@keyframes patternBounce {
  0%, 100% { background-position: 0 0; }
  25% { background-position: 15px 13px; }
  50% { background-position: 30px 26px; }
  75% { background-position: 45px 39px; }
}

@keyframes patternWave {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 50px 10px; }
}

/* Variações de opacidade para diferentes seções */
.pattern-subtle::after {
  opacity: 0.3;
}

.pattern-medium::after {
  opacity: 0.5;
}

.pattern-strong::after {
  opacity: 0.8;
}

/* Responsive - reduz patterns em mobile */
@media (max-width: 768px) {
  .section-with-pattern::after {
    opacity: 0.3;
    background-size: 20px 20px !important;
  }
}

/* Intensificadores (boost) e modos de mesclagem */
.pattern-boost-low { --pattern-opacity: 0.75; }
.pattern-boost-med { --pattern-opacity: 0.85; }
.pattern-boost-high { --pattern-opacity: 0.95; }

.pattern-boost-low.section-with-pattern::after { filter: brightness(1.08) contrast(1.08); }
.pattern-boost-med.section-with-pattern::after { filter: brightness(1.18) contrast(1.15) saturate(1.05); }
.pattern-boost-high.section-with-pattern::after { filter: brightness(1.3) contrast(1.25) saturate(1.1); }

.pattern-blend-screen.section-with-pattern::after { mix-blend-mode: screen; }
.pattern-blend-overlay.section-with-pattern::after { mix-blend-mode: overlay; }
.pattern-blend-soft.section-with-pattern::after { mix-blend-mode: soft-light; }

/* Escala opcional via variável utilizada pelo JS */
.pattern-scale-105 { --pattern-scale: 1.05; }
.pattern-scale-110 { --pattern-scale: 1.10; }
.pattern-scale-125 { --pattern-scale: 1.25; }

/* ================================
   Legal pages (termos/privacidade)
   ================================ */
.legal-page .container {
  max-width: 880px;
}

.legal-card {
  background: rgba(18,18,20,.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.03);
}

.legal-breadcrumb { color: var(--sub); margin-bottom: 16px; }
.legal-breadcrumb a { color: #cbd5e1; text-decoration: none; }
.legal-breadcrumb a:hover { color: #fff; }

.legal-title { margin: 0 0 6px; }
.legal-updated { color: var(--sub); margin: 0 0 24px; }

.legal-content h2 { margin: 28px 0 12px; font-size: 1.25rem; }
.legal-content p { color: #e5e7eb; line-height: 1.7; margin: 10px 0; }
.legal-content ul, .legal-content ol { margin: 10px 0 18px 22px; }
.legal-content li { margin: 6px 0; }