﻿@font-face {
  font-family: 'Nasalization RG';
  src: url('../../fonts/nasalization/Nasalization%20Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #050507;
  color: #F0EEF8;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: var(--purple) var(--black);
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; font-family: inherit; border: none; background: none; }

/* â”€â”€â”€ CSS VARIABLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --purple:        #7F00B4;
  --purple-light:  #A855F7;
  --purple-glow:   #B06BFF;
  --purple-dark:   #4B006A;
  --purple-deeper: #1E0030;
  --green:         #00C853;
  --green-dark:    #00783A;
  --black:         #050507;
  --white:         #F0EEF8;
  --gray-900:      #111115;
  --gray-800:      #1A1A20;
  --gray-700:      #2A2A35;
  --gray-400:      #6B6B80;
  --gray-300:      #9999AA;
  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* â”€â”€â”€ NOISE GRAIN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028; pointer-events: none;
}

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 999px;
  border: 4px solid var(--black);
}

/* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(5,5,7,0.85);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(127,0,180,0.15);
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-image {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--gray-300); letter-spacing: 0.5px;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--purple-light);
  transition: width 0.3s var(--ease-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green); color: #050507;
  padding: 10px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
}
.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,200,83,0.4);
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
body.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
}
#star-canvas {
  position: absolute; inset: 0; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 1;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(127,0,180,0.35) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(20px,-20px)} 66%{transform:translate(-20px,20px)} }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 48px; max-width: 1280px; margin: 0 auto; width: 100%;
  padding-top: 100px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(127,0,180,0.15);
  border: 1px solid rgba(127,0,180,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease-expo) forwards;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,200,83,0.4)} 50%{box-shadow:0 0 0 6px rgba(0,200,83,0)} }

.hero-title {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.92; letter-spacing: -3px;
  color: var(--white); margin-bottom: 32px;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .line-inner {
  display: block;
  opacity: 0; transform: translateY(100%);
  animation: slideUp 0.9s var(--ease-expo) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.65s; }
.hero-title .accent { color: var(--purple-light); }
.hero-title .green { color: var(--green); }

@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray-300); max-width: 560px;
  line-height: 1.7; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.8s 1.1s var(--ease-expo) forwards;
}
.hero-actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  opacity: 0; animation: fadeUp 0.8s 1.25s var(--ease-expo) forwards;
}
.btn-primary {
  background: var(--green); color: #050507;
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,200,83,0.3), 0 0 0 1px rgba(0,200,83,0.5);
}
.btn-primary .arrow { transition: transform 0.3s var(--ease-expo); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 500;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--purple-light);
  background: rgba(127,0,180,0.1);
}

.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 1.8s var(--ease-expo) forwards;
}
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); }
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* â”€â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-section {
  padding: 20px 0;
  background: var(--purple-deeper);
  border-top: 1px solid rgba(127,0,180,0.3);
  border-bottom: 1px solid rgba(127,0,180,0.3);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 32px;
  padding: 0 32px; white-space: nowrap;
  font-family: 'Nasalization RG', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(168,85,247,0.7);
}
.marquee-item .dot { color: var(--green); font-size: 8px; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* â”€â”€â”€ SECTION BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section { position: relative; overflow: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-padding { padding: clamp(80px, 12vw, 140px) 0; }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 20px;
}
.section-number {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: 11px; color: var(--purple); opacity: 0.5;
  letter-spacing: 3px; text-transform: uppercase;
}

/* â”€â”€â”€ REVEAL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* â”€â”€â”€ MANIFESTO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#manifesto { background: var(--gray-900); }
.manifesto-content { max-width: 900px; }
.manifesto-text {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.1; letter-spacing: -1px;
  color: var(--gray-700);
}
.manifesto-text .word {
  display: inline-block;
  transition: color 0.4s ease, text-shadow 0.4s ease;
  margin-right: 0.25em;
}
.manifesto-text .word.lit {
  color: var(--white);
}
.manifesto-text .word.lit.accent { color: var(--purple-light); }
.manifesto-text .word.lit.green { color: var(--green); }

/* â”€â”€â”€ SERVIÃ‡OS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#servicos { background: var(--black); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.services-title {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1; letter-spacing: -1px;
}
.services-desc { color: var(--gray-300); max-width: 300px; font-size: 15px; line-height: 1.7; }

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}

.service-card {
  background: var(--gray-900);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  cursor: none;
  transform-style: preserve-3d;
  transition: background 0.3s;
  border: 1px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(127,0,180,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(127,0,180,0.25); }

.service-num {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: 14px; letter-spacing: 3px; color: var(--purple);
  margin-bottom: 40px; display: block;
}
.service-icon {
  font-size: 40px; margin-bottom: 24px; display: block;
  filter: drop-shadow(0 0 12px rgba(127,0,180,0.5));
  transition: transform 0.4s var(--ease-bounce), filter 0.4s;
}
.service-icon-svg {
  width: 40px;
  height: 40px;
}
.service-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card:hover .service-icon {
  transform: scale(1.2) translateY(-4px);
  filter: drop-shadow(0 0 20px rgba(127,0,180,0.8));
}
.service-name {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: 1.3rem; margin-bottom: 16px; line-height: 1.2;
}
.service-desc { font-size: 15px; color: var(--gray-300); line-height: 1.7; margin-bottom: 32px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--purple-light); background: rgba(127,0,180,0.1);
  border: 1px solid rgba(127,0,180,0.2);
  padding: 4px 12px; border-radius: 100px;
}
.service-link {
  position: absolute; bottom: 32px; right: 32px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray-400);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-bounce), background 0.3s;
}
.service-card:hover .service-link {
  border-color: var(--green); color: var(--green); background: rgba(0,200,83,0.1);
  transform: rotate(-45deg);
}

/* â”€â”€â”€ NÃšMEROS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.numeros-intro {
  padding: 0 0 56px;
  scroll-margin-top: 120px;
}
.numeros-panel {
  background: var(--purple-deeper);
  border-top: 1px solid rgba(127,0,180,0.2);
  border-bottom: 1px solid rgba(127,0,180,0.2);
}
.numeros-header {
  display: flex;
  justify-content: center;
  text-align: center;
}
.numeros-title {
  font-family: 'Nasalization RG', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}
.numeros-title-accent {
  color: var(--purple-light);
}
.numeros-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(127,0,180,0.15);
}
.numero-item {
  background: var(--purple-deeper);
  padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.numero-item::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
}
.numero-val {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--white); line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.numero-suffix { color: var(--green); font-size: 0.6em; }
.numero-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple-light); margin-top: 12px;
}

/* â”€â”€â”€ PROCESSO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#processo { background: var(--gray-900); }
.processo-title {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -1px; margin-bottom: 80px;
}
.processo-steps { display: flex; flex-direction: column; gap: 1px; }
.step {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.step:hover { background: rgba(127,0,180,0.04); }
.step-num {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: 3.5rem; color: var(--purple);
  opacity: 0.25; line-height: 1;
  transition: opacity 0.3s;
}
.step:hover .step-num { opacity: 0.6; }
.step-name {
  font-family: 'Nasalization RG', sans-serif; font-weight: 700;
  font-size: 1.4rem;
}
.step-desc { font-size: 15px; color: var(--gray-300); line-height: 1.7; }

/* â”€â”€â”€ MASCOTE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#mascote {
  background: var(--black);
  padding: clamp(80px, 10vw, 120px) 0;
}
.mascote-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.mascote-text .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.25);
  color: var(--green); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 32px;
}
.mascote-text h2 {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px;
}
.mascote-text p { color: var(--gray-300); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.mascote-text .cta-mascote {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; color: var(--purple-light); font-weight: 600;
  font-size: 15px; border-bottom: 1px solid rgba(168,85,247,0.3);
  padding-bottom: 4px; transition: color 0.3s, border-color 0.3s;
}
.mascote-text .cta-mascote:hover { color: var(--white); border-color: var(--white); }

.mascote-visual {
  position: relative; height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.mascote-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
}
.mascote-ring-1 {
  width: 380px; height: 380px;
  border-color: rgba(127,0,180,0.2);
  animation: ringPulse 4s ease-in-out infinite;
}
.mascote-ring-2 {
  width: 280px; height: 280px;
  border-color: rgba(127,0,180,0.15);
  animation: ringPulse 4s ease-in-out infinite 0.5s;
}
.mascote-ring-3 {
  width: 180px; height: 180px;
  border-color: rgba(127,0,180,0.1);
  animation: ringPulse 4s ease-in-out infinite 1s;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}
.mascote-center {
  position: relative; z-index: 2;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(127,0,180,0.3), rgba(5,5,7,0.8));
  border: 2px solid var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: mascoteFloat 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(127,0,180,0.4), inset 0 0 40px rgba(127,0,180,0.1);
}
.mascote-center-image {
  width: 88%;
  height: 88%;
  object-fit: contain;
}
@keyframes mascoteFloat {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}
.orbit-satellite {
  position: absolute; width: 48px; height: 48px;
  background: var(--gray-900); border: 1px solid rgba(127,0,180,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  animation: satelliteOrbit 6s linear infinite;
  transform-origin: 0 190px;
}
@keyframes satelliteOrbit { to { transform: rotate(360deg); } }
.orbit-satellite:nth-child(2) { animation-delay: -2s; }
.orbit-satellite:nth-child(3) { animation-delay: -4s; }

/* â”€â”€â”€ CONTATO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#contato {
  background: var(--black);
  padding: clamp(80px, 12vw, 140px) 0;
}
.contato-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contato-text h2 {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 24px;
}
.contato-text h2 em { color: var(--purple-light); font-style: normal; }
.contato-text p { color: var(--gray-300); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }
.contato-info { display: flex; flex-direction: column; gap: 20px; }
.contato-link {
  display: flex; align-items: center; gap: 16px;
  color: var(--gray-300); font-size: 14px;
  transition: color 0.3s;
}
.contato-link:hover { color: var(--white); }
.contato-link .icon {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-bounce);
}
.contato-box-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}
.contato-link:hover .icon {
  border-color: var(--purple);
  background: rgba(127,0,180,0.15);
  transform: translateY(-3px);
}

.form-card {
  background: var(--gray-900);
  border: 1px solid rgba(127,0,180,0.15);
  border-radius: 24px; padding: 48px;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--purple), var(--purple-light), transparent);
}
.form-card h3 {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: 1.4rem; margin-bottom: 8px;
}
.form-card p { font-size: 14px; color: var(--gray-400); margin-bottom: 32px; }

.form-group { margin-bottom: 16px; }
.form-group-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.form-group label {
  display: block; font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px; color: var(--gray-300); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: none;
  -webkit-appearance: none;
}
.form-group textarea {
  min-height: 132px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: none;
  background: rgba(127,0,180,0.04);
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  border-color: var(--purple-light);
  outline: none;
  box-shadow: none;
}
.form-group select option { background: #1A1A20; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
  width: 100%; margin-top: 24px;
  background: var(--green); color: #050507;
  padding: 16px; border-radius: 12px;
  font-family: 'Nasalization RG', sans-serif; font-weight: 700; font-size: 15px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s, opacity 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,200,83,0.25);
}
.form-submit:disabled { opacity: 0.6; transform: none; }
/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(127,0,180,0.15);
  padding: 60px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .logo {
  font-family: 'Nasalization RG', sans-serif; font-weight: 800;
  font-size: 20px; color: var(--white); margin-bottom: 16px;
}
.footer-logo-image {
  width: auto;
  height: 42px;
  object-fit: contain;
}
.footer-brand p { font-size: 13px; color: var(--gray-400); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gray-800); border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-bounce);
}
.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.footer-social a:hover {
  border-color: var(--purple); background: rgba(127,0,180,0.15);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: 'Nasalization RG', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.5px; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: var(--gray-400); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 48px; padding-top: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--gray-400); }

/* â”€â”€â”€ WHATSAPP FLOAT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  opacity: 0; transform: scale(0) translateY(20px);
  animation: floatIn 0.5s 3s var(--ease-bounce) forwards;
}
#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.whatsapp-float-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
@keyframes floatIn { to { opacity: 1; transform: scale(1) translateY(0); } }

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; flex-wrap: wrap; gap: 16px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  body.nav-open .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px 16px;
    background: rgba(5,5,7,0.96);
    border: 1px solid rgba(127,0,180,0.18);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
  }
  body.nav-open .nav-cta {
    display: inline-flex;
    order: 4;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .hero-content { padding: 0 24px; padding-top: 80px; }
  .hero-scroll {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    align-items: center;
  }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .mascote-inner { grid-template-columns: 1fr; }
  .mascote-visual { height: 320px; }
  .contato-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .step {
    grid-template-columns: 60px 1fr;
    gap: 18px 20px;
    align-items: start;
  }
  .step-desc {
    display: block;
    grid-column: 2 / 3;
    margin-top: -6px;
  }
  body { cursor: auto; }
  #cursor { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

/* Extracted from inline styles in HTML */
.services-title-dot { color: var(--purple-light); }
.numero-prefix { font-size: 1em; color: var(--purple-light); }
.accent-inline { color: var(--purple-light); font-style: normal; }
.orbit-satellite-delay-2 { animation-delay: -2s; transform-origin: 0 140px; }
.orbit-satellite-delay-4 { animation-delay: -4s; transform-origin: 0 170px; }
.contato-section { border-top: 1px solid rgba(127,0,180,0.1); }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #cursor {
    display: none;
  }

  .hero-orb,
  .hero-badge .pulse,
  .hero-title .line-inner,
  .hero-subtitle,
  .hero-actions,
  .hero-scroll,
  .marquee-track,
  .mascote-rings span,
  .mascote-placeholder,
  .orbit-satellite,
  #whatsapp-float {
    animation: none !important;
  }

  .hero-title .line-inner,
  .hero-subtitle,
  .hero-actions,
  .hero-scroll,
  .reveal,
  .reveal-left {
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee-track {
    transform: none !important;
  }

  .service-card,
  .mascote-placeholder,
  .process-card,
  .contact-item,
  #whatsapp-float {
    transform: none !important;
  }
}
