@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   DESIGN SYSTEM & VARIABLES (OBSIDIAN & EMERALD CYBER THEME)
   ============================================================ */
:root {
  --bg-primary: #050811;
  --bg-secondary: #080d1a;
  --bg-tertiary: #0c1224;
  --bg-card: rgba(10, 16, 32, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent: #00d2ff;
  --accent-dim: rgba(0, 210, 255, 0.08);
  --accent-glow: rgba(0, 210, 255, 0.25);
  --accent-border: rgba(0, 210, 255, 0.2);
  --accent-secondary: #007aff; /* Darker Lime Green */
  
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 210, 255, 0.3);

  --gradient-hero: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.07) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
                    linear-gradient(135deg, #04060d 0%, #070c18 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-accent: 0 0 30px rgba(0, 210, 255, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASICS
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-border);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.text-neon {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 35px rgba(0, 210, 255, 0.2);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 210, 255, 0.05);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-header p {
  font-size: 1.15rem;
  margin-top: 1rem;
}

/* ============================================================
   BUTTONS (PREMIUM HIGH-TECH)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #03050c;
  box-shadow: 0 4px 20px var(--accent-glow);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 210, 255, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.15);
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.15rem 2.75rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   NAVBAR (GLASSMORPHIC)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 8, 17, 0.75);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-img {
  max-height: 48px;
  transition: var(--transition);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.logo-img:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 4px 15px rgba(0, 210, 255, 0.3));
}

.logo span {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-links .nav-cta {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent) !important;
  margin-left: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 210, 255, 0.08);
}

.nav-links .nav-cta:hover {
  background: var(--gradient-accent);
  color: #03050c !important;
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.25);
  transform: translateY(-2px);
}

/* Hamburger Menu Mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(5, 8, 17, 0.95) 0%, 
    rgba(5, 8, 17, 0.7) 45%, 
    rgba(5, 8, 17, 0.1) 100%
  );
  z-index: -1;
}

/* High-tech glowing circles */
.hero-glow, .hero-glow-left {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.hero-glow {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, transparent 70%);
  bottom: -150px;
  right: -50px;
  animation: floatGlow 15s ease infinite alternate;
}

.hero-glow-left {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  top: 100px;
  left: -100px;
}

.hero .container {
  padding-top: 8rem;
  padding-bottom: 4rem;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero h1 {
  margin-bottom: 1.75rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Hero Stats Section */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 3.5rem;
  margin-top: 5.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-number span {
  color: var(--accent);
  -webkit-text-fill-color: initial;
  margin-left: 0.15rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.6rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounceUp 2.5s ease infinite;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* ============================================================
   QUEM SOMOS (ABOUT US)
   ============================================================ */
.quem-somos {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 2;
}

.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.quem-somos-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.quem-somos-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -1.5rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 60%);
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.quem-somos-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.quem-somos-img:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.08);
}

.quem-somos-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  z-index: 2;
  background: rgba(13, 21, 41, 0.9);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quem-somos-badge-icon {
  font-size: 1.75rem;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quem-somos-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 700;
}

.quem-somos-badge-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
}

.quem-somos-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.quem-somos-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.quem-somos-feature:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-border);
  transform: translateX(5px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.05);
}

.feature-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.feature-text span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ============================================================
   SOLUÇÕES (SOLUTIONS - MOTORISTA & NEGÓCIOS)
   ============================================================ */
.solucoes {
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.solucao-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.solucao-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.solucao-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(0, 210, 255, 0.06);
}

.solucao-card:hover::before {
  opacity: 1;
}

.solucao-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}

.solucao-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.05);
}

.solucao-card:hover .solucao-icon {
  background: var(--gradient-accent);
  color: #03050c;
  box-shadow: var(--shadow-accent);
  border-color: var(--accent);
}

.solucao-card h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.solucao-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.solucao-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.solucao-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.solucao-list li::before {
  content: '⚡';
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  text-shadow: 0 0 5px var(--accent);
}

.solucao-list strong {
  color: var(--text-primary);
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.solucao-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: auto;
  display: block;
  height: 200px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

/* ============================================================
   MAPA SECTION (PREMIUM INTERACTIVE LOOK)
   ============================================================ */
.mapa-section {
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
}

.mapa-container {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-image: url('images/mapa_3d.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mapa-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 17, 0.45);
}

.mapa-overlay {
  position: relative;
  z-index: 2;
  background: rgba(10, 16, 32, 0.85);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.mapa-overlay h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mapa-overlay p {
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.mapa-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-dim);
  border: 1.5px solid var(--accent-border);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mapa-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseNeon 2s infinite;
}

/* ============================================================
   FOOTER (PROFESSIONAL & CLEAN)
   ============================================================ */
.footer {
  background: #03050a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 6rem 0 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 290px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.footer-contact-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-contact-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom > p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-agency-inline p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.footer-agency-inline a {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.footer-agency-inline a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* ============================================================
   PARCEIRO PAGE (HIGH CONVERSION STRATEGY)
   ============================================================ */
.parceiros-hero {
  background-image: linear-gradient(180deg, rgba(5, 8, 17, 0.6) 0%, rgba(5, 8, 17, 0.95) 100%), url('images/b2b_drone.png');
  background-size: cover;
  background-position: center;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.numero-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.numero-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.numero-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 210, 255, 0.05);
}

.numero-card:hover::before {
  transform: scaleX(1);
}

.numero-card h3 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}

.numero-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.segmento-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.segmento-card:hover {
  background: var(--bg-glass-hover);
  transform: translateX(6px);
  border-left-color: var(--accent-secondary);
  box-shadow: var(--shadow-sm);
}

.segmento-card h3 {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.segmento-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Timeline/Process */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-secondary), transparent);
}

.timeline-item {
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  left: calc(-3rem + 1px);
  top: 2.5rem;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent);
  z-index: 2;
}

.timeline-item:hover {
  border-color: var(--accent-border);
  background: var(--bg-glass-hover);
  transform: translateX(4px);
}

.timeline-item h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Conversion Form */
.form-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 210, 255, 0.02);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  padding-right: 3rem !important;
}

select.form-control option {
  background: #0b0f19;
  color: var(--text-primary);
  padding: 1rem;
}

/* ============================================================
   CLIENT AREA STYLING
   ============================================================ */
.client-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.client-dashboard-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

.client-info-bar {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.client-info-item {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.client-info-item strong {
  color: var(--text-primary);
}

.client-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.client-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

.client-stat-card .stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.client-stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.client-table-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.client-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.client-table th {
  padding: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.client-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}

.client-table tr:last-child td {
  border-bottom: none;
}

.payment-status {
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

.payment-status.pendente {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.payment-status.pago {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.payment-status.vencido {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.action-btn-group {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  transition: var(--transition);
}

.action-btn-pix {
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.action-btn-pix:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.action-btn-boleto {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1);
}

.action-btn-boleto:hover {
  background: rgba(255,255,255,0.1);
}

/* Modal Pix Copy */
.pix-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.pix-modal.active {
  display: flex;
}

.pix-modal-content {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  text-align: center;
}

.pix-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.pix-code-area {
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background: var(--gradient-hero);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 4.5rem;
  box-shadow: var(--shadow-lg);
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.legal-content .legal-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  display: block;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.legal-content p, .legal-content li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 1.75rem;
  margin-bottom: 1.75rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

/* ============================================================
   ADMIN DASHBOARD & STYLES (CLEAN & MODERN)
   ============================================================ */
.admin-layout {
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
}

/* Sidebar Navbar */
.admin-sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar-menu {
  flex: 1;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.admin-sidebar-link:hover, .admin-sidebar-link.active {
  background: rgba(0, 210, 255, 0.08);
  color: var(--accent);
}

/* Main Content Area */
.admin-main {
  flex: 1;
  padding: 3rem 4rem;
  overflow-x: hidden;
}

.admin-header {
  margin-bottom: 3rem;
}

.admin-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.admin-header p {
  color: var(--text-muted);
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.admin-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.admin-card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-card-title h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.admin-card-title .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.admin-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 210, 255, 0.06);
  color: var(--accent);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border: 1px solid var(--accent-border);
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-alert::before {
  content: '✓';
  font-weight: 800;
}

/* File Input Customization */
.custom-file-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  background: rgba(255,255,255,0.01);
  gap: 0.5rem;
}

.custom-file-upload:hover {
  border-color: var(--accent);
  background: rgba(0, 210, 255, 0.03);
  color: var(--text-primary);
}

.custom-file-upload input[type="file"] {
  display: none;
}

.preview-thumb {
  max-height: 80px;
  border-radius: 8px;
  margin-top: 1.5rem;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Split Screen Login Layout */
.admin-login-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-primary);
}

.admin-login-hero {
  flex: 1;
  display: none;
  background-image: url('images/hero_banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.admin-login-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,8,17,0.85) 0%, rgba(0,210,255,0.15) 100%);
}

.admin-login-form-container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--bg-secondary);
  border-left: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 1024px) {
  .admin-login-hero { display: block; }
}

/* ============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceUp {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulseNeon {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 8px rgba(0, 210, 255, 0); }
  100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

@keyframes floatGlow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(18deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVENESS (PERFECT MOBILE LAYOUTS)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-col:last-child {
    grid-column: span 3;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  /* Navbar Mobile Hamburger */
  .nav-hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    background: rgba(5, 8, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 999;
    border-left: none;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    width: auto;
    padding: 1rem;
    text-align: center;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 2rem;
    width: auto;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

  /* Hero Mobile */
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .hero-stat-number {
    font-size: 2rem;
  }

  /* Grids Stacked */
  .quem-somos-grid,
  .solucoes-grid,
  .numeros-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .quem-somos-badge {
    right: 0;
    bottom: -1rem;
  }

  .solucao-card {
    padding: 2.5rem;
  }

  /* Footer Mobile */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-col:last-child {
    grid-column: span 1;
    margin-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-container {
    padding: 2.5rem 2rem;
  }

  /* Admin */
  .admin-nav {
    padding: 1rem 1.5rem;
  }
  .admin-main {
    padding: 2rem 1rem;
  }
  .admin-card {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-stat {
    align-items: center;
    text-align: center;
  }

  .legal-content {
    padding: 2.5rem 1.5rem;
  }
}
