:root {
  --bg-dark: #0a0e17;
  --bg-card: #131a26;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.4);
  --accent-blue: #3b82f6;
  --border-light: rgba(255, 255, 255, 0.1);
  --success: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo-text, .container-id, .stat-number, .dash-title {
  font-family: 'Orbitron', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 23, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo-icon {
  color: var(--accent-cyan);
}

.logo-accent {
  color: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent-cyan);
}

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

.btn-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-login:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 5% 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(10, 14, 23, 0.7), var(--bg-dark)), url('assets/hero_bg.png') center/cover no-repeat;
}

.hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--accent-cyan);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  color: var(--accent-cyan);
}

.hero-benefits {
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.benefit-check {
  color: var(--accent-cyan);
}

.hero-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--accent-cyan);
  color: #000;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  box-shadow: 0 0 20px var(--accent-cyan-glow);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  color: #fff;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-container-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  perspective: 1000px;
}

.container-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.container-body {
  position: absolute;
  width: 280px;
  height: 140px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 2px solid #334155;
  border-radius: 8px;
  top: 130px;
  left: 60px;
  box-shadow: 20px 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  transform: rotateY(-15deg) rotateX(10deg);
}

.container-stripe {
  position: absolute;
  top: 0;
  left: 20px;
  width: 30px;
  height: 100%;
  background: var(--accent-cyan);
  opacity: 0.8;
}

.container-logo-mark {
  font-size: 2rem;
  color: #fff;
  margin-left: 50px;
}

.container-details {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  font-weight: bold;
}

.container-id {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.container-signal {
  position: absolute;
  top: 80px;
  left: 180px;
}

.signal-ring {
  position: absolute;
  border: 1px solid var(--accent-cyan);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: ripple 3s infinite linear;
}

.r1 { width: 40px; height: 40px; animation-delay: 0s; }
.r2 { width: 80px; height: 80px; animation-delay: 1s; }
.r3 { width: 120px; height: 120px; animation-delay: 2s; }

.signal-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.container-data {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--accent-cyan);
  padding: 15px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.8rem;
  backdrop-filter: blur(5px);
}

.data-line { display: flex; justify-content: space-between; margin-bottom: 5px; gap: 20px;}
.data-label { color: var(--text-muted); }
.green { color: var(--success); }
.cyan { color: var(--accent-cyan); }

/* STATS BAR */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem 5%;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.stat-plus {
  font-size: 2rem;
  color: var(--accent-cyan);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
}

/* GENERAL SECTIONS */
.section {
  padding: 6rem 5%;
}

.section-dark {
  background: var(--bg-card);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--accent-cyan);
  padding-bottom: 5px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--accent-cyan);
}

.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* QUEM SOMOS */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 3rem;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.5rem;
}

.about-content .img-premium {
  margin-bottom: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.about-lead {
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.7;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.75;
}

.about-quote {
  border-left: 3px solid var(--accent-cyan);
  padding: 1rem 0 1rem 1.2rem;
  margin-top: 0.5rem;
  font-style: italic;
  color: #fff;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(6, 182, 212, 0));
  border-radius: 0 12px 12px 0;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  align-content: start;
  grid-auto-rows: 1fr;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border-light);
  padding: 1.7rem;
  border-radius: 14px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.7rem;
  border-radius: 12px;
  margin-bottom: 0;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.35;
  color: #fff;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ESTRUTURA */
.estrutura-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.estrutura-card {
  background: var(--bg-dark);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s;
}

.estrutura-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ecard-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  font-family: 'Orbitron', sans-serif;
}

.ecard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.5rem;
}

.estrutura-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.estrutura-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* PARCEIROS */
.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.parceiro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.parceiro-card:hover {
  border-color: var(--text-muted);
}

.parceiro-logo-area {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.parceiro-sigla {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0.7;
}

.parceiro-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.parceiro-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FALE CONOSCO */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-items {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-icon-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.contact-icon-pin svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.contact-icon-pin .pin-ring {
  fill: none;
  stroke: #1d4ed8;
  stroke-width: 2.2;
}

.contact-icon-pin .pin-ring-inner {
  fill: none;
  stroke: #1d4ed8;
  stroke-width: 1.8;
}

.contact-icon-pin .pin-stem {
  fill: #111827;
}

.contact-icon-pin .pin-stem-highlight {
  fill: rgba(255, 255, 255, 0.2);
}

.contact-icon-pin .pin-head {
  fill: #f48fb1;
}

.contact-icon-pin .pin-head-outline {
  fill: none;
  stroke: rgba(17, 24, 39, 0.22);
  stroke-width: 1;
}

.contact-icon-pin .pin-shine {
  fill: none;
  stroke: #111827;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.contact-icon-satellite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.contact-icon-satellite svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.contact-icon-satellite .satellite-base,
.contact-icon-satellite .satellite-dish,
.contact-icon-satellite .satellite-stroke {
  fill: none;
  stroke: #f8fafc;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-satellite .satellite-node {
  fill: none;
  stroke: #f8fafc;
  stroke-width: 2;
}

.contact-icon-satellite .satellite-wave {
  fill: none;
  stroke: #1d4ed8;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.contact-icon-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.contact-icon-lock svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.contact-icon-lock .lock-shackle {
  fill: none;
  stroke: #1d4ed8;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-lock .lock-body {
  fill: none;
  stroke: #f8fafc;
  stroke-width: 2;
}

.contact-icon-lock .lock-keyhole {
  fill: none;
  stroke: #f8fafc;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contato-form {
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* FOOTER */
.footer {
  background: #05070a;
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.status-dot.active {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-tech {
  color: var(--accent-cyan);
  font-family: 'Orbitron', sans-serif;
}

/* MODAL LOGIN */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-overlay.active {
  display: flex;
}

.login-modal {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

.login-logo {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.login-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.login-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.login-hint {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

/* DASHBOARD */
#dashboard {
  display: flex;
  height: 100vh;
  background: var(--bg-dark);
}

.dash-sidebar {
  width: 280px;
  background: var(--bg-card);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.dash-logo {
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border-light);
  font-family: 'Orbitron', sans-serif;
}

.dash-nav {
  padding: 1.5rem 0;
  flex: 1;
}

.dash-nav-section {
  padding: 0 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.dash-nav-section:first-child {
  margin-top: 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  color: var(--text-main);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.dash-nav-item:hover {
  background: rgba(255,255,255,0.02);
}

.dash-nav-item.active {
  background: rgba(6, 182, 212, 0.1);
  border-left-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.dash-sidebar-status {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
  letter-spacing: 1px;
}

.sidebar-status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}

.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dash-header {
  height: 70px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.dash-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dash-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.dash-title {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.dash-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dash-header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.dash-time {
  font-family: monospace;
  color: var(--accent-cyan);
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dash-avatar {
  width: 35px;
  height: 35px;
  background: var(--accent-cyan);
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.dash-logout {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.dash-logout:hover {
  background: rgba(255,255,255,0.1);
}

.dash-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

/* CARDS DO PAINEL */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
}

.pcard-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pcard-value {
  font-size: 2rem;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

.pcard-value.highlight {
  color: var(--accent-cyan);
}

.panel-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.box-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

/* TABELA */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.data-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-ok {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.status-warn {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}

/* MAPA DASHBOARD */
.satellite-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.live-map-shell,
.map-side-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}

.live-map-toolbar,
.map-side-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  background: rgba(10, 14, 23, 0.78);
}

.live-map-toolbar__badge,
.map-side-panel__header span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-map-toolbar__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.live-map-canvas {
  width: 100%;
  height: 420px;
  background: #0b1220;
}

.map-side-panel {
  display: flex;
  flex-direction: column;
}

.map-side-panel__header h4 {
  font-size: 1rem;
  color: #fff;
}

.map-location-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.map-location-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.map-location-card:hover,
.map-location-card.active {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-1px);
}

.map-location-card__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #fff;
}

.map-location-card__name {
  font-size: 0.9rem;
  color: var(--text-main);
}

.map-location-card__meta,
.map-location-card__status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dashboard-map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-map-marker__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.18);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #0f172a;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.leaflet-popup-content {
  margin: 0.85rem 1rem;
  line-height: 1.5;
}

.leaflet-control-zoom a {
  background: #0f172a;
  color: #fff;
  border-bottom-color: var(--border-light);
}

.leaflet-control-zoom a:hover {
  background: #111827;
}

/* FORM DASHBOARD */
.dash-form .form-row {
  margin-bottom: 0;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--success);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  font-weight: 600;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* NOVAS IMAGENS GERADAS */
.img-premium {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: block;
}

.premium-banner {
  padding: 8rem 5%;
  background: linear-gradient(rgba(10, 14, 23, 0.5), rgba(10, 14, 23, 0.95)), url('assets/container_premium.png') center/cover fixed;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4rem;
}

/* ÍCONES LUCIDE (SVG) */
.lucide {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
}

.about-card-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ecard-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.about-card-icon .icon-stroke,
.ecard-icon .icon-stroke {
  fill: none;
  stroke: #f8fafc;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-icon .icon-muted-stroke,
.ecard-icon .icon-muted-stroke {
  fill: none;
  stroke: rgba(248, 250, 252, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-icon .icon-accent-stroke,
.ecard-icon .icon-accent-stroke {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-icon .icon-panel,
.ecard-icon .icon-panel {
  fill: rgba(59, 130, 246, 0.22);
  stroke: rgba(59, 130, 246, 0.45);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-icon .icon-accent-fill,
.ecard-icon .icon-accent-fill {
  fill: #3b82f6;
}

.contact-icon svg {
  color: var(--accent-cyan);
}

.dash-nav-item svg {
  margin-right: 0.5rem;
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(-15deg) rotateX(10deg); }
  50% { transform: translateY(-20px) rotateY(-15deg) rotateX(10deg); }
}

@keyframes pulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  70% { opacity: 0.5; box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  body.device-mobile .hero-container-visual {
    display: none;
  }
  body.device-mobile .hero-content {
    max-width: 100%;
    text-align: center;
  }
  body.device-mobile .hero-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body.device-mobile .hero-cta {
    justify-content: center;
  }
  body.device-mobile .about-grid,
  body.device-mobile .contato-grid {
    grid-template-columns: 1fr;
  }
  body.device-mobile .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.device-mobile .nav-menu {
    display: none;
  }
  body.device-mobile .hamburger {
    display: flex;
  }
  body.device-mobile .hero-title {
    font-size: 2.2rem;
  }
  body.device-mobile .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
  body.device-mobile .stat-divider {
    width: 50px;
    height: 1px;
  }
  body.device-mobile .dash-sidebar {
    position: fixed;
    left: -280px;
    height: 100%;
    z-index: 1000;
    transition: 0.3s;
  }
  body.device-mobile .dash-sidebar.open {
    left: 0;
  }
  body.device-mobile .dash-menu-btn {
    display: block;
  }
  body.device-mobile .form-row {
    grid-template-columns: 1fr;
  }
  body.device-mobile .footer-grid {
    grid-template-columns: 1fr;
  }
}

body.device-mobile {
  overflow-x: hidden;
}

body.device-mobile .navbar {
  background: rgba(10, 14, 23, 0.96);
}

body.device-mobile .nav-container {
  padding: 0.9rem 1rem;
}

body.device-mobile .nav-logo {
  font-size: 1.15rem;
}

body.device-mobile .btn-login {
  display: none;
}

body.device-mobile .hamburger {
  display: flex;
}

body.device-mobile .nav-menu {
  display: none;
}

body.device-mobile .hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5.8rem 1rem 1.5rem;
}

body.device-mobile .hero-content {
  order: 2;
  max-width: 100%;
  text-align: left;
}

body.device-mobile .hero-container-visual {
  order: 1;
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

body.device-mobile .container-3d {
  transform: none;
  width: min(100%, 340px);
  margin: 0 auto;
}

body.device-mobile .container-data {
  right: 1rem;
  bottom: -1rem;
  width: calc(100% - 2rem);
}

body.device-mobile .hero-badge {
  width: fit-content;
  max-width: 100%;
  font-size: 0.72rem;
}

body.device-mobile .hero-title {
  font-size: 2.15rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

body.device-mobile .hero-sub {
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

body.device-mobile .hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

body.device-mobile .benefit-item {
  align-items: flex-start;
  font-size: 0.92rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-bottom: 0;
}

body.device-mobile .hero-cta {
  flex-direction: column;
  gap: 0.85rem;
}

body.device-mobile .hero-cta .btn-primary,
body.device-mobile .hero-cta .btn-secondary {
  width: 100%;
  justify-content: center;
}

body.device-mobile .hero-scroll {
  display: none;
}

body.device-mobile .stats-bar {
  padding: 0 1rem 1rem;
}

body.device-mobile .stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

body.device-mobile .stat-item {
  padding: 1rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

body.device-mobile .stat-divider {
  display: none;
}

body.device-mobile .section {
  padding: 3.5rem 0;
}

body.device-mobile .container {
  padding: 0 1rem;
}

body.device-mobile .section-header {
  margin-bottom: 2rem;
  text-align: left;
}

body.device-mobile .section-title {
  font-size: 1.85rem;
}

body.device-mobile .section-sub {
  font-size: 0.95rem;
}

body.device-mobile .about-grid,
body.device-mobile .contato-grid,
body.device-mobile .satellite-panel-layout {
  grid-template-columns: 1fr;
}

body.device-mobile .about-grid {
  gap: 2rem;
}

body.device-mobile .about-content {
  padding-right: 0;
  gap: 0.9rem;
}

body.device-mobile .about-content .img-premium {
  aspect-ratio: 4 / 3;
}

body.device-mobile .about-cards,
body.device-mobile .estrutura-grid,
body.device-mobile .parceiros-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

body.device-mobile .about-card,
body.device-mobile .estrutura-card,
body.device-mobile .parceiro-card {
  padding: 1.25rem;
}

body.device-mobile .premium-banner {
  padding: 3rem 0;
}

body.device-mobile .premium-banner h2 {
  font-size: 1.8rem !important;
}

body.device-mobile .contato-grid {
  gap: 1.5rem;
}

body.device-mobile .contato-info {
  order: 2;
}

body.device-mobile .contato-form {
  order: 1;
  padding: 1.5rem;
}

body.device-mobile .form-row {
  grid-template-columns: 1fr;
  gap: 0;
}

body.device-mobile .footer {
  padding: 3rem 0 1.5rem;
}

body.device-mobile .footer-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

body.device-mobile .footer-bottom {
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

body.device-mobile #dashboard {
  height: auto;
  min-height: 100vh;
}

body.device-mobile .dash-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  height: 100vh;
  z-index: 1200;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.35);
}

body.device-mobile .dash-sidebar.open {
  left: 0;
}

body.device-mobile .dash-main {
  width: 100%;
  min-width: 0;
}

body.device-mobile .dash-header {
  height: auto;
  padding: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

body.device-mobile .dash-header-left,
body.device-mobile .dash-header-right {
  width: 100%;
}

body.device-mobile .dash-header-left {
  gap: 0.75rem;
}

body.device-mobile .dash-header-right {
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

body.device-mobile .dash-menu-btn {
  display: block;
}

body.device-mobile .dash-time {
  font-size: 0.8rem;
}

body.device-mobile .dash-user span {
  display: none;
}

body.device-mobile .dash-content {
  padding: 1rem;
}

body.device-mobile .panel-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

body.device-mobile .panel-card,
body.device-mobile .panel-box {
  padding: 1.1rem;
}

body.device-mobile .data-table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

body.device-mobile .live-map-canvas {
  height: 320px;
}

body.device-mobile .map-location-list {
  max-height: none;
}
