﻿/* ==============================================
   Orbtalyt — Landing Page Futurista
   ============================================== */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #05050e;
  --bg-secondary: #0a0a1a;
  --bg-card: rgba(10, 12, 28, 0.65);
  --text-primary: #e8eaf0;
  --text-secondary: #8892b4;
  --text-muted: #4a5578;
  --accent-cyan: #00e5ff;
  --accent-purple: #7b2ff7;
  --accent-blue: #3b82f6;
  --accent-pink: #ff2d92;
  --gradient-primary: linear-gradient(135deg, #00e5ff 0%, #7b2ff7 50%, #ff2d92 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(123, 47, 247, 0.15) 100%);
  --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.3), 0 0 60px rgba(0, 229, 255, 0.1);
  --glow-purple: 0 0 20px rgba(123, 47, 247, 0.3), 0 0 60px rgba(123, 47, 247, 0.1);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --border-subtle: 1px solid rgba(0, 229, 255, 0.08);
  --border-glow: 1px solid rgba(0, 229, 255, 0.25);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Scroll Bar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 229, 255, 0.4); }

/* ---------- Utilities ---------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Horizontal Comets Animation (Right to Left) */
.comets-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.comet {
  position: absolute;
  right: -100px;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.4));
  animation: fly linear infinite;
}

.comet::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(to left, rgba(0, 229, 255, 0.6), transparent);
  transform: translateY(-50%);
  animation: tail 1s ease-in-out infinite;
}

@keyframes fly {
  0% {
    transform: translateX(100px) rotate(-20deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(-110vw) rotate(-20deg);
    opacity: 0;
  }
}

@keyframes tail {
  0%, 100% {
    width: 100px;
    opacity: 0.6;
  }
  50% {
    width: 150px;
    opacity: 0.3;
  }
}

.comet-1 {
  top: 20%;
  animation-duration: 6s;
  animation-delay: 0s;
}

.comet-2 {
  top: 40%;
  animation-duration: 4s;
  animation-delay: 1.5s;
}

.comet-3 {
  top: 60%;
  animation-duration: 5s;
  animation-delay: 0.5s;
}

.comet-4 {
  top: 80%;
  animation-duration: 3s;
  animation-delay: 2s;
}

.comet-5 {
  top: 10%;
  animation-duration: 4.5s;
  animation-delay: 1s;
}

/* ---------- Particle Canvas ---------- */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Grid Overlay ---------- */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: none;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background: rgba(5, 5, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 0.15em;
}

.logo-icon {
  width: 215px;
  height: 45px;
  color: var(--accent-cyan);
  transition: filter 0.3s ease;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.logo:hover .logo-icon {
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-cyan);
  transition: width 0.3s var(--ease-out);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.nav a:hover { color: var(--accent-cyan); }
.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.header-social-link:hover {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-1px);
}

.btn-primary-outline {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  text-decoration: none;
  border: var(--border-glow);
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary-outline:hover {
  background: rgba(0, 229, 255, 0.08);
  box-shadow: var(--glow-cyan);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gradient-primary);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(123,47,247,0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3), 0 0 60px rgba(123, 47, 247, 0.15);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
   font-family: var(--font-heading);
   font-size: 0.85rem;
   font-weight: 600;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--text-primary);
   text-decoration: none;
   border: var(--border-glow);
   padding: 0.9rem 2rem;
   border-radius: 4px;
   transition: all 0.3s ease;
}

.btn-secondary:hover {
   color: var(--accent-cyan);
   border-color: var(--accent-cyan);
   background: rgba(0, 229, 255, 0.05);
   box-shadow: var(--glow-cyan);
}

/* Link button for "Leia Mais" */
.btn-link {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   font-family: var(--font-heading);
   font-size: 0.85rem;
   font-weight: 600;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--accent-cyan);
   text-decoration: none;
   border: none;
   background: transparent;
   padding: 0;
   transition: all 0.3s ease;
}

.btn-link:hover {
   color: var(--accent-pink);
   transform: translateY(-2px);
}

.btn-link svg {
   transition: transform 0.3s ease;
}

.btn-link:hover svg {
   transform: translateX(4px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  border: var(--border-glow);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
  background: rgba(0, 229, 255, 0.04);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.6); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(0, 229, 255, 0); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.2), transparent);
}

/* ---------- Hero Visual ---------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
}

.ring-outer {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  animation: orbit-spin 60s linear infinite;
}

.orbit-center {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.planet-ring {
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-1 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    animation: orbit-spin 20s linear infinite;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    margin: -170px 0 0 -170px;
    animation: orbit-spin 35s linear infinite reverse;
}

.orbit-3 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
    animation: orbit-spin 15s linear infinite;
}

.orbit-4 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    animation: orbit-spin 25s linear infinite;
}

.ring-outer {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation: orbit-spin 60s linear infinite;
}

.orbit-2 {
   width: 340px;
   height: 340px;
   margin: -170px 0 0 -170px;
   animation: orbit-spin 35s linear infinite reverse;
 }

.orbit-3 {
   width: 220px;
   height: 220px;
   margin: -110px 0 0 -110px;
   animation: orbit-spin 15s linear infinite;
 }

.orbit-4 {
   width: 260px;
   height: 260px;
   margin: -130px 0 0 -130px;
   animation: orbit-spin 25s linear infinite;
 }

.orbit-ring-outer {
   width: 400px;
   height: 400px;
   margin: -200px 0 0 -200px;
   animation: orbit-spin 60s linear infinite;
 }

.orbit-2 {
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  animation: orbit-spin 35s linear infinite reverse;
}

.orbit-3 {
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  animation: orbit-spin 15s linear infinite;
}

.planet {
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.planet-1 {
   width: 12px;
   height: 12px;
   background: var(--accent-cyan);
   box-shadow: 0 0 20px rgba(0, 229, 255, 0.6), 0 0 40px rgba(0, 229, 255, 0.3);
 }

.planet-2 {
   width: 8px;
   height: 8px;
   background: var(--accent-purple);
   box-shadow: 0 0 20px rgba(123, 47, 247, 0.6), 0 0 40px rgba(123, 47, 247, 0.3);
 }

.planet-3 {
   width: 10px;
   height: 10px;
   background: var(--accent-pink);
   box-shadow: 0 0 20px rgba(255, 45, 146, 0.6), 0 0 40px rgba(255, 45, 146, 0.3);
 }

/* Saturn Planet */
.orbit-4 .planet-ring-saturn {
   position: absolute;
   width: 30px;
   height: 30px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   pointer-events: none;
}

.orbit-4 .planet-ring-saturn::before,
.orbit-4 .planet-ring-saturn::after {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.orbit-4 .planet-ring-saturn::before {
   width: 20px;
   height: 20px;
   background: var(--accent-cyan);
   border-radius: 50%;
   box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

.orbit-4 .planet-ring-saturn::after {
   width: 34px;
   height: 8px;
   border: 2px solid var(--accent-cyan);
   border-radius: 50%;
   transform: rotate(15deg);
   box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.planet-4 {
   width: 14px;
   height: 14px;
   background: var(--accent-cyan);
   box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 2;
}

/* Data Panels */
.data-panel {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(5, 5, 14, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}

.panel-1 { top: 10%; left: -20px; }
.panel-2 { bottom: 30%; right: -15px; }
.panel-3 { bottom: 5%; left: -10px; }

.panel-label {
  display: block;
  color: var(--accent-cyan);
  opacity: 0.7;
  margin-bottom: 0.15rem;
}

.panel-value {
  display: block;
  color: var(--text-primary);
}

/* Scanline effect over data panels */
.panel-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-cyan);
  animation: scan 3s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes scan {
  0% { top: 0; opacity: 0; }
  50% { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ---------- Section Common ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent-cyan);
  opacity: 0.8;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Animation ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ---------- Services Section ---------- */
.services {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.08);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 0.8rem; }

/* ---------- Technology Section ---------- */
.technology {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.02), transparent);
}

.tech-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.tech-ring-1 {
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  animation: orbit-spin 30s linear infinite;
  border-top-color: rgba(0, 229, 255, 0.25);
}

.tech-ring-2 {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  animation: orbit-spin 45s linear infinite reverse;
  border-left-color: rgba(123, 47, 247, 0.2);
  border-top-color: rgba(123, 47, 247, 0.15);
}

.tech-ring-3 {
  width: 450px;
  height: 450px;
  margin: -225px 0 0 -225px;
  animation: orbit-spin 60s linear infinite;
  border-right-color: rgba(255, 45, 146, 0.1);
}

.ring-dot {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.tech-core {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.core-ring:nth-child(2) {
  inset: 10px;
  border-color: rgba(0, 229, 255, 0.25);
}

.core-ring:nth-child(3) {
  inset: 20px;
  border-color: rgba(0, 229, 255, 0.35);
}

.core-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-text 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.connection-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.2), transparent);
  height: 1px;
  width: 150px;
  top: 50%;
}

.line-1 { left: 50%; transform-origin: left; animation: lines-pulse 3s ease-in-out infinite; }
.line-2 { right: 50%; transform-origin: right; animation: lines-pulse 3s 1s ease-in-out infinite; }
.line-3 { left: 50%; top: 30%; width: 80px; transform-origin: left; animation: lines-pulse 3s 2s ease-in-out infinite; }

@keyframes lines-pulse {
  0%, 100% { opacity: 0.3; width: 150px; }
  50% { opacity: 0.8; width: 180px; }
}

/* Tech Items */
.tech-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tech-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 8px;
  border: var(--border-subtle);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: rgba(0, 229, 255, 0.15);
  background: rgba(0, 229, 255, 0.03);
}

.tech-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  opacity: 0.8;
  min-width: 28px;
  padding-top: 0.2rem;
}

.tech-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- About Section ---------- */
.about {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-card {
  position: relative;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 16px;
  padding: 3rem;
  overflow: hidden;
}

.about-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.about-card .since-badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-feature svg { color: var(--accent-cyan); flex-shrink: 0; }

.about-text {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  white-space: pre-line;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-value {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 229, 255, 0.03);
  border: var(--border-subtle);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-value:hover {
  border-color: rgba(0, 229, 255, 0.15);
  background: rgba(0, 229, 255, 0.06);
}

.value-counter {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 5rem 3rem;
  border-radius: 20px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06) 0%, rgba(123, 47, 247, 0.08) 50%, rgba(255, 45, 146, 0.06) 100%);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 20px;
}

.cta-decoration {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 4px 4px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-box > p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-glow);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: all 0.3s ease;
}

.cta-input::placeholder { color: var(--text-muted); }

.cta-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(255, 255, 255, 0.06);
}

.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.cta-contact a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-contact a:hover { color: var(--accent-cyan); }
.cta-divider { opacity: 0.3; }

/* ---------- Projetos Carousel ---------- */
.projetos-section {
  position: relative;
  z-index: 2;
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 30px 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.25);
  background: rgba(5,5,14,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.carousel-btn svg { width: 20px; height: 20px }
.carousel-btn:hover { background: rgba(0,229,255,0.1); border-color: var(--accent-cyan); box-shadow: 0 0 24px rgba(0,229,255,0.25); transform: translateY(-50%) scale(1.1); }
.carousel-btn:active { transform: translateY(-50%) scale(0.95); }

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Card */
.projeto-card {
  flex: 0 0 300px;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.08);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.projeto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.projeto-card:hover {
  border-color: rgba(0,229,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,229,255,0.08);
}
.projeto-card:hover::before { transform: scaleX(1); }

/* Logo */
.projeto-logo-wrap {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0,229,255,0.025);
  border: 1px solid rgba(0,229,255,0.07);
  margin-bottom: 0.25rem;
}

.projeto-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
}

.projeto-placehold {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,229,255,0.2);
  transition: opacity 0.4s ease;
}
.proj-ph-icon { width: 48px; height: 48px }
.proj-logo-show { opacity: 0; }

/* Info */
.projeto-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.projeto-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.projeto-domain {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--accent-cyan);
  opacity: 0.7;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}
.projeto-domain svg { width: 13px; height: 13px }

.projeto-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* ---------- Nossa Mídia ---------- */
.midia-section {
  position: relative;
  z-index: 2;
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.midia-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .midia-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.midia-video-col {
  border-radius: 14px;
  overflow: hidden;
}

.midia-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,229,255,0.12);
}

.midia-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.midia-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(123,47,247,0.06));
  z-index: 1;
  pointer-events: none;
}

.midia-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 480px) {
  .midia-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  border-top: var(--border-subtle);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 0.95rem;
}

.footer-logo .logo-icon { width: 215px; height: 45px; }

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col { min-width: 130px; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--accent-cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 1.5rem 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-socials a:hover { color: var(--accent-cyan); }

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-row .heart {
  color: var(--accent-pink);
}

/* ---------- WhatsApp Float Button ---------- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 58px;
  height: 58px;
}

.wa-float-core {
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 0 20px rgba(37, 211, 102, 0.5),
    0 0 60px rgba(37, 211, 102, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.wa-float-core svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
}

.wa-float:hover .wa-float-core {
  transform: scale(1.12);
  box-shadow:
    0 0 30px rgba(37, 211, 102, 0.7),
    0 0 80px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Planet ring */
.wa-float-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.35);
  animation: wa-orbit 4s linear infinite;
  z-index: 1;
}

.wa-float-ring-2 {
  inset: -14px;
  border-color: rgba(37, 211, 102, 0.15);
  border-style: dashed;
  animation: wa-orbit 8s linear infinite reverse;
}

@keyframes wa-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Pulse glow behind */
.wa-float-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.25) 0%, transparent 70%);
  animation: wa-pulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 0.3; }
}

/* Tooltip */
.wa-float::after {
  content: 'Fale conosco no WhatsApp';
  position: absolute;
  right: 70px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(5, 5, 14, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(6px);
  backdrop-filter: blur(10px);
}

.wa-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .orbit-container { width: 300px; height: 300px; }
  .ring-outer { width: 300px; height: 300px; margin: -150px 0 0 -150px; }
  .orbit-1 { width: 210px; height: 210px; margin: -105px 0 0 -105px; }
  .orbit-2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
  .orbit-3 { width: 170px; height: 170px; margin: -85px 0 0 -85px; }
  .data-panel { display: none; }

  .tech-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tech-visual { height: 300px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    background: rgba(5, 5, 14, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
  }

  .nav.open {
    display: flex;
  }

  .nav a { font-size: 0.95rem; padding: 0.5rem 0; }

  .header-actions { gap: 0.5rem; }
  .btn-primary-outline { font-size: 0.7rem; padding: 0.45rem 0.9rem; }
  .menu-toggle { display: flex; }

  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }

  .services, .technology, .projetos-section, .about, .cta-section {
    padding: 5rem 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-bottom,
  .footer-bottom-row {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .cta-box { padding: 3rem 1.5rem; }
  .cta-form { flex-direction: column; }

  .wa-float {
    right: 1.2rem;
    bottom: 1.2rem;
    width: 50px;
    height: 50px;
  }

  .wa-float-core {
    width: 50px;
    height: 50px;
  }

  .wa-float-core svg {
    width: 26px;
    height: 26px;
  }

  .wa-float:hover .wa-float-core {
    transform: scale(1.08);
  }

  /* Projetos carousel mobile */
  .carousel-btn { display: none; }
  .projeto-card { flex: 0 0 260px; }
  .projeto-logo-wrap { height: 120px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .projeto-card { flex: 0 0 240px; padding: 1.2rem; }
  .projeto-logo-wrap { height: 100px; }
  .projeto-name { font-size: 0.92rem; }
}

/* ═══════════════════════════════════════════════════════
   LEADS FORM — frontend (index.php)
   ═══════════════════════════════════════════════════════ */
.lead-form-section {
  position: relative;
  z-index: 2;
  padding: 6rem 0 8rem;
}

.lead-form-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  backdrop-filter: blur(8px);
  position: relative;
}

.lead-form-box::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 4px 4px;
}

.lead-form-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: -0.7rem auto 1.8rem;
  text-align: center;
  max-width: 520px;
}

/* responsive grid */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
}

.lead-field {
  display: flex; flex-direction: column;
}

.lead-col-1 { grid-column: span 1; }
.lead-col-2 { grid-column: span 2; }

.lead-field label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.required { color: var(--accent-pink); }
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); opacity: 0.7; }

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder { color: #ffffff; opacity: 0.72; }

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0, 229, 255, 0.04);
}

.lead-field select { cursor: pointer; -webkit-appearance: auto; color: #000; }
#lead-estado option[value=""],
#lead-tipo     option[value=""] { color: #fff !important; }

.lead-field textarea { resize: vertical; min-height: 100px; }

.lead-domain-wrap { opacity: 0.65; transition: opacity .2s; }
.lead-domain-wrap:focus-within { opacity: 1; }

/* Submit row */
.lead-submit-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem;
}

.lead-submit-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-primary);
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  padding: 0.88rem 2.2rem;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}

.lead-submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 229, 255, 0.25), 0 4px 12px rgba(123, 47, 247, 0.18);
}

.lead-submit-btn.sending { opacity: 0.6; pointer-events: none; }

.lead-submit-btn .sub-icon { color: var(--bg-primary); }

.lead-submit-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Toast */
.lead-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: rgba(10, 12, 28, 0.95);
  border: 1px solid var(--accent-cyan);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.15);
  backdrop-filter: blur(16px);
  transform: translateY(20px);
  opacity: 0;
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-toast.hidden      { transform: translateY(20px); opacity: 0; pointer-events: none; }
.lead-toast:not(.hidden) { transform: translateY(0); opacity: 1; }
.lead-toast.success { border-color: var(--green); color: var(--green); }
.lead-toast.error   { border-color: var(--accent-pink); color: var(--accent-pink); }

/* responsive */
@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .projeto-card { flex: 0 0 260px; }
  .projeto-logo-wrap { height: 120px; }
}

@media (max-width: 480px) {
  .projeto-card { flex: 0 0 240px; padding: 1.2rem; }
  .projeto-logo-wrap { height: 100px; }
}

/* ---------- Carrossel de Marcas ---------- */
.marcas-section {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.marcas-carousel-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.marcas-carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.marcas-carousel-track::-webkit-scrollbar { display: none; }
.marcas-carousel-track { -ms-overflow-style: none; scrollbar-width: none; }

.marca-card {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  scroll-snap-align: start;
  padding: 1.2rem;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 12px;
  transition: all 0.35s var(--ease-out);
  filter: grayscale(60%) brightness(0.85);
  cursor: pointer;
}

.marca-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  filter: grayscale(0%) brightness(1.1);
  transform: translateY(-4px);
}

.marca-logo-wrap {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.marca-logo {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s var(--ease-out);
}

.marca-card:hover .marca-logo { transform: scale(1.12); }

.marca-placehold {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,229,255,0.25);
}

.marca-placehold svg { width: 44px; height: 44px }

.marca-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.marca-card:hover .marca-name { color: var(--accent-cyan); }

.marcas-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 12, 28, 0.8);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.marcas-carousel-btn svg { width: 20px; height: 20px; }

.marcas-carousel-btn:hover {
  background: rgba(0,229,255,0.1);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}

.marcas-carousel-btn:active {
  transform: translateY(-50%) scale(0.92);
}

.marcas-prev { left: -10px; }
.marcas-next { right: -10px; }

@media (max-width: 768px) {
  .marcas-section { padding: 3rem 0 4rem; }
  .marca-card { width: 130px; padding: 0.9rem; }
  .marca-logo-wrap { height: 56px; }
  .marca-logo { max-height: 56px; }
  .marca-name { font-size: 0.75rem; }
  .marcas-carousel-btn { width: 34px; height: 34px; }
  .marcas-prev { left: 2px; }
  .marcas-next { right: 2px; }
}

@media (max-width: 480px) {
  .marca-card { width: 110px; padding: 0.7rem; }
  .marca-logo-wrap { height: 44px; }
  .marca-logo { max-height: 44px; }
  .marca-name { font-size: 0.68rem; }
}

/* ---------- Carrossel de Vídeos (Nossa Mídia) ---------- */
.midia-carousel-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.midia-carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.midia-carousel-track::-webkit-scrollbar { display: none; }
.midia-carousel-track { -ms-overflow-style: none; scrollbar-width: none; }

.midia-video-card {
  flex: 0 0 auto;
  width: 560px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}

.midia-video-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

.midia-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.midia-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.midia-video-info {
  padding: 1.2rem 1.4rem 1.4rem;
}

.midia-video-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.midia-video-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.midia-carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 12, 28, 0.85);
  border: 1px solid rgba(0,229,255,0.35);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.midia-carousel-btn svg { width: 20px; height: 20px; }

.midia-carousel-btn:hover {
  background: rgba(0,229,255,0.12);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 22px rgba(0,229,255,0.3);
}

.midia-carousel-btn:active {
  transform: translateY(-50%) scale(0.92);
}

.midia-prev { left: -12px; }
.midia-next { right: -12px; }

.midia-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.midia-hint {
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-align: center;
  margin: 0.75rem 0 0.25rem;
}

@media (max-width: 768px) {
  .midia-video-card { width: 88vw; }
  .midia-carousel-btn { width: 36px; height: 36px; }
  .midia-prev { left: 4px; }
  .midia-next { right: 4px; }
}

@media (max-width: 480px) {
  .midia-video-card { width: 92vw; }
  .midia-video-info { padding: 1rem; }
  .midia-video-title { font-size: 1rem; }
}

.marcas-carousel-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.marcas-section .section-desc {
  text-align: center;
  margin-top: 0.3rem;
}

.marcas-carousel-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.marcas-carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.marcas-carousel-track::-webkit-scrollbar {
  display: none;
}

.marcas-carousel-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.marca-card {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  scroll-snap-align: start;
  padding: 1.2rem;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 12px;
  transition: all 0.35s var(--ease-out);
  filter: grayscale(60%) brightness(0.85);
  cursor: pointer;
}

.marca-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  filter: grayscale(0%) brightness(1.1);
  transform: translateY(-4px);
}

.marca-logo-wrap {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.marca-logo {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s var(--ease-out);
}

.marca-card:hover .marca-logo {
  transform: scale(1.12);
}

.marca-placehold {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,229,255,0.25);
}

.marca-placehold svg { width: 44px; height: 44px }

.marca-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.marca-card:hover .marca-name {
  color: var(--accent-cyan);
}

.marcas-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 12, 28, 0.8);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.marcas-carousel-btn svg { width: 20px; height: 20px; }

.marcas-carousel-btn:hover {
  background: rgba(0,229,255,0.1);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}

.marcas-carousel-btn:active {
  transform: translateY(-50%) scale(0.92);
}

.marcas-prev { left: -10px; }
.marcas-next { right: -10px; }

@media (max-width: 768px) {
  .marcas-section {
    padding: 3rem 0 4rem;
  }
  .marca-card {
    width: 130px;
    padding: 0.9rem;
  }
  .marca-logo-wrap {
    height: 56px;
  }
  .marca-logo {
    max-height: 56px;
  }
  .marca-name {
    font-size: 0.75rem;
  }
  .marcas-carousel-btn {
    width: 34px;
    height: 34px;
  }
  .marcas-prev { left: 2px; }
  .marcas-next { right: 2px; }
}

@media (max-width: 480px) {
  .marca-card {
    width: 110px;
    padding: 0.7rem;
  }
  .marca-logo-wrap {
    height: 44px;
  }
  .marca-logo {
    max-height: 44px;
  }
  .marca-name {
    font-size: 0.68rem;
  }
}


@media (max-width: 480px) {
  .lead-form-section { padding: 4rem 0 6rem; }
}

/* ═══════════════════════════════════════════════════════
   CONTENT PAGES — Ajuda, Parceiros, Carreiras, Blog, Imprensa
   ═══════════════════════════════════════════════════════ */
.page-section {
  position: relative; z-index: 2;
  padding: 4rem 0 6rem;
}
.page-container {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  backdrop-filter: blur(8px);
}
.page-container::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 4px 4px;
}
.page-block { margin-bottom: 2.2rem; }
.page-block:last-child { margin-bottom: 0; }
.page-block h2 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.page-block p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.page-block p:last-child { margin-bottom: 0; }
.page-block strong { color: var(--text-primary); font-weight: 600; }
.page-block ul,
.page-block ol {
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
}
.page-block li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.page-block li strong { color: var(--text-primary); }
.page-block a {
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  transition: border-color 0.2s;
}
.page-block a:hover { border-color: var(--accent-cyan); }
.page-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2); border-radius: 6px;
  padding: 0.4rem 0.9rem; margin-bottom: 1.5rem; text-decoration: none; transition: all 0.2s;
}
.page-back:hover { background: rgba(0, 229, 255, 0.08); border-color: var(--accent-cyan); }

/* ── Help Hub cards ── */
.help-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; margin-bottom: 2rem;
}
.help-card {
  background: rgba(0, 229, 255, 0.03); border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 10px; padding: 1.3rem; transition: all .25s;
}
.help-card:hover { border-color: var(--accent-cyan); background: rgba(0, 229, 255, 0.07); }
.help-card-icon { font-size: 1.8rem; margin-bottom: .6rem; }
.help-card h3 { font-family: var(--font-display); font-size: .82rem; color: var(--text-primary); margin-bottom: .3rem; }
.help-card p { font-size: .76rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: .6rem; }
.help-card a { font-size: .72rem; font-weight: 600; letter-spacing: .05em; }

/* ── Partners ── */
.partner-tier { margin-bottom: 2rem; }
.partner-tier h3 { font-family: var(--font-display); font-size: 1rem; color: var(--accent-purple); margin-bottom: .6rem; }
.partner-perks { list-style: none; padding: 0; }
.partner-perks li { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--text-secondary); margin-bottom: .4rem; }
.partner-perks li::before { content: '✦'; color: var(--accent-cyan); font-size: .7rem; margin-top: .25rem; flex-shrink: 0; }

/* ── Careers ── */
.career-hero { text-align: center; padding: 2.5rem 2rem; background: rgba(0, 229, 255, 0.03); border: 1px solid rgba(0, 229, 255, 0.08); border-radius: 14px; margin-bottom: 2rem; }
.career-hero h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent-cyan); margin-bottom: .6rem; }
.career-hero p { color: var(--text-secondary); font-size: .9rem; }
.job-list { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.job-card {
  background: rgba(0, 229, 255, 0.03); border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 10px; padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: all .25s;
}
.job-card:hover { border-color: var(--accent-cyan); }
.job-info h3 { font-family: var(--font-display); font-size: .9rem; color: var(--text-primary); margin-bottom: .2rem; }
.job-info p { font-size: .78rem; color: var(--text-muted); }
.job-tag { font-size: .7rem; font-weight: 700; letter-spacing: .08em; color: var(--accent-cyan); border: 1px solid rgba(0,229,255,.25); border-radius: 99px; padding: .2rem .7rem; white-space: nowrap; flex-shrink: 0; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem; margin-bottom: 2rem; }
.blog-card {
  background: var(--bg-card); border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 12px; padding: 1.5rem; transition: all .25s;
}
.blog-card:hover { border-color: rgba(0, 229, 255, 0.2); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.blog-card-tag { font-size: .65rem; font-weight: 700; letter-spacing: .12em; color: var(--accent-purple); text-transform: uppercase; margin-bottom: .5rem; }
.blog-card h3 { font-family: var(--font-display); font-size: .88rem; color: var(--text-primary); line-height: 1.4; margin-bottom: .5rem; }
.blog-card p { font-size: .78rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: .75rem; }
.blog-card-meta { font-size: .7rem; color: var(--text-muted); }

/* ── Press ── */
.press-list { display: flex; flex-direction: column; gap: .9rem; }
.press-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(0, 229, 255, 0.03); border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 10px; padding: 1.2rem 1.4rem; transition: all .2s;
}
.press-item:hover { border-color: rgba(0, 229, 255, 0.18); }
.press-date { font-size: .72rem; font-weight: 700; color: var(--accent-purple); white-space: nowrap; padding-top: .15rem; }
.press-content h3 { font-family: var(--font-display); font-size: .85rem; color: var(--text-primary); margin-bottom: .25rem; }
.press-content p { font-size: .78rem; color: var(--text-secondary); line-height: 1.55; }
.press-content a { font-size: .72rem; color: var(--accent-cyan); font-weight: 600; }

@media (max-width: 768px) {
  .page-container { padding: 1.8rem 1.5rem; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .page-section { padding: 3rem 0 5rem; }
  .help-grid { grid-template-columns: 1fr; }
}



/* ═══════════════════════════════════════════════════════
   SEO UTILITIES
   ═══════════════════════════════════════════════════════ */

/* Breadcrumb (visível, em todas as páginas) */
.breadcrumb {
  display: flex; align-items: center; gap: .45rem;
  padding: .7rem 0; font-size: .78rem;
  color: var(--text-muted); flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-secondary); text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--accent-cyan); }
.breadcrumb .bc-sep { color: rgba(255,255,255,.18); font-size:.6rem; }
.breadcrumb .bc-current { color: var(--accent-cyan); font-weight: 600; }

/* Skip to main content — acessibilidade SEO */
.skip-link {
  position:absolute; top:-80px; left:0;
  background:var(--accent-cyan); color:var(--bg-primary);
  padding:.5rem 1rem; font-size:.78rem; font-weight:700;
  z-index:99999; transition:top .2s;
}
.skip-link:focus { top:0; }

/* Max-width garante que o robots.xml não seja truncado em servidores pequenos */
.robots-txt-preview { max-width:800px; margin:0 auto; }

