/* ============================================================
   TECSTAR - Estilos Principais
   ============================================================ */

:root {
  --primary: #0066FF;
  --primary-dark: #0044CC;
  --primary-light: #3385FF;
  --secondary: #00D4AA;
  --accent: #FF6B35;
  --dark: #0A0F1E;
  --dark-2: #111827;
  --dark-3: #1F2937;
  --text: #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --border-dark: #374151;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --gradient: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  --gradient-dark: linear-gradient(135deg, #0044CC 0%, #009980 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* ===== UTILITÁRIOS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0, 102, 255, 0.15);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-full { width: 100%; justify-content: center; }

.btn-nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.navbar:not(.scrolled) .logo-text { color: white; }
.navbar:not(.scrolled) .logo-text strong { color: var(--secondary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); background: rgba(0, 102, 255, 0.06); }

.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.navbar:not(.scrolled) .nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #050d1f 0%, #0a1a3d 40%, #061630 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; left: -200px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: var(--secondary);
  bottom: -150px; right: -100px;
}
.shape-3 {
  width: 350px; height: 350px;
  background: #8B5CF6;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--secondary); }

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  max-width: 750px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 8px 28px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-item > span:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.bounce { animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark-2);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}

.trust-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.trust-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
}
.trust-item i { color: var(--secondary); font-size: 0.9rem; }

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: var(--bg-white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  position: relative;
  height: 450px;
}

.sobre-card-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  width: 320px;
  color: white;
  box-shadow: var(--shadow-xl);
}

.card-icon-big {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  margin: 0 auto 20px;
}

.sobre-card-main h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.sobre-card-main p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.card-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.card-badges span {
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-badges span i { color: var(--secondary); font-size: 0.7rem; }

.sobre-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.sobre-card-float i {
  font-size: 1.4rem;
  color: var(--primary);
}

.sobre-card-float strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.sobre-card-float small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.float-1 { top: 40px; left: 0; }
.float-2 { bottom: 60px; right: 0; }

.sobre-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.sobre-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sobre-features { margin: 28px 0; }
.feature-row { display: flex; gap: 12px; margin-bottom: 12px; }

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
}
.feature-chip i { color: var(--primary); }

/* ===== SOLUÇÕES ===== */
.solucoes {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.solucao-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.solucao-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.solucao-card.featured {
  background: linear-gradient(135deg, #0a1a3d 0%, #061630 100%);
  border-color: transparent;
  color: white;
}

.solucao-card.featured h3 { color: white; }
.solucao-card.featured p { color: rgba(255,255,255,0.65); }
.solucao-card.featured .solucao-features li { color: rgba(255,255,255,0.8); }
.solucao-card.featured .solucao-features li i { color: var(--secondary); }

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-tag.soon {
  background: var(--accent);
}

.solucao-icon {
  width: 58px;
  height: 58px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.solucao-card.featured .solucao-icon {
  background: rgba(255,255,255,0.1);
  color: var(--secondary);
}

.solucao-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.solucao-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.65;
}

.solucao-features {
  list-style: none;
  margin-bottom: 28px;
}
.solucao-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text);
  padding: 5px 0;
}
.solucao-features li i {
  color: var(--primary);
  font-size: 0.8rem;
  width: 16px;
}
.solucao-features li i.fa-clock { color: var(--text-muted); }

.solucao-card.coming-soon { opacity: 0.85; }

/* ===== PRODUTO DESTAQUE ===== */
.produto-destaque {
  padding: 100px 0;
  background: white;
}

.destaque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.destaque-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.destaque-lead {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px !important;
}

.destaque-text p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.75;
}

.destaque-pilares {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pilar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pilar:hover {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.03);
}

.pilar-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.pilar strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.pilar span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.destaque-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* MOCKUP */
.destaque-visual { display: flex; align-items: center; justify-content: center; }

.mockup-container { position: relative; }

.mockup-screen {
  width: 420px;
  background: #1a1f2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.mockup-bar {
  background: #252b3b;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }

.mockup-content { padding: 20px; }

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-logo {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-logo i { color: #00D4AA; }
.dash-user { color: rgba(255,255,255,0.4); font-size: 1.2rem; }

.dash-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.kpi {
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kpi.green { background: rgba(0, 212, 170, 0.12); border: 1px solid rgba(0, 212, 170, 0.2); }
.kpi.blue { background: rgba(0, 102, 255, 0.12); border: 1px solid rgba(0, 102, 255, 0.2); }
.kpi.orange { background: rgba(255, 107, 53, 0.12); border: 1px solid rgba(255, 107, 53, 0.2); }
.kpi.purple { background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.2); }

.kpi-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.kpi.green .kpi-icon { background: rgba(0, 212, 170, 0.2); color: #00D4AA; }
.kpi.blue .kpi-icon { background: rgba(0, 102, 255, 0.2); color: #3385FF; }
.kpi.orange .kpi-icon { background: rgba(255, 107, 53, 0.2); color: #FF6B35; }
.kpi.purple .kpi-icon { background: rgba(139, 92, 246, 0.2); color: #8B5CF6; }

.kpi strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}
.kpi small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}

.dash-list { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px; }
.dash-list-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.dash-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.dash-item:last-child { border: none; }

.badge-os {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
}
.badge-os.andamento { background: rgba(0,102,255,0.2); color: #3385FF; }
.badge-os.pronto { background: rgba(0,212,170,0.2); color: #00D4AA; }
.badge-os.aguardando { background: rgba(255,107,53,0.2); color: #FF8C64; }

.mockup-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100px;
  background: var(--primary);
  filter: blur(50px);
  opacity: 0.25;
  border-radius: 50%;
}

/* ===== TECNOLOGIA ===== */
.tecnologia {
  padding: 100px 0;
  background: var(--bg-light);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  text-align: center;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,212,170,0.1));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.tech-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== PORQUE ===== */
.porque {
  padding: 100px 0;
  background: white;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.porque-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.porque-text > p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.75;
}

.diferenciais { display: flex; flex-direction: column; gap: 20px; }

.diferencial-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dif-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.diferencial-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.diferencial-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.porque-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.numero-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.numero-card:hover {
  border-color: var(--primary);
  background: rgba(0,102,255,0.03);
  transform: translateY(-2px);
}

.numero {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.numero-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--bg-light);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #FCD34D;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.depoimento-card > p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor-avatar {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.depoimento-autor strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.depoimento-autor small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: white;
}

.cta-card {
  background: linear-gradient(135deg, #050d1f 0%, #0a1a3d 60%, #0d1f40 100%);
  border-radius: var(--radius-xl);
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--secondary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== CONTATO ===== */
.contato {
  padding: 100px 0;
  background: var(--bg-light);
}

.contato-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.info-card:hover { border-color: var(--primary); }

.info-icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.info-card span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* FORM */
.contato-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type { margin-bottom: 20px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea { resize: vertical; }

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-light);
}

.consent-check input {
  margin-top: 3px;
  accent-color: var(--primary);
  flex: 0 0 auto;
}

.consent-check a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success {
  display: none;
  text-align: center;
  color: #059669;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 8px;
  margin-top: 12px;
}
.form-success.show { display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-success.error {
  color: #b42318;
  background: rgba(217, 45, 32, 0.08);
  border-color: rgba(217, 45, 32, 0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { color: white; }
.footer-brand .logo-text strong { color: var(--secondary); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.45);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h5 {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: white; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 4px 16px rgba(0,102,255,0.35);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== AUTH, AGENDA PUBLICA E ADMIN ===== */
.auth-body {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 10%, rgba(0, 212, 170, 0.16), transparent 28%),
              radial-gradient(circle at 85% 15%, rgba(0, 102, 255, 0.18), transparent 30%),
              var(--dark);
  color: white;
}

.auth-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 72px 24px 40px;
}

.auth-shell.compact .auth-panel { max-width: 520px; }

.auth-panel {
  width: min(100%, 760px);
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow-xl);
}

.auth-logo { margin-bottom: 26px; }
.auth-panel h1 { color: var(--dark); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.12; margin-bottom: 12px; }
.auth-panel > p { color: var(--text-light); margin-bottom: 24px; }
.auth-form { display: grid; gap: 16px; }
.auth-alert {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.28);
  color: #B53A16;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.auth-switch { text-align: center; margin-top: 18px; color: var(--text-light); }
.auth-switch a { color: var(--primary); font-weight: 700; }

.auth-body-modern {
  background: radial-gradient(circle at 12% 10%, rgba(0, 102, 255, 0.26), transparent 26%),
              radial-gradient(circle at 84% 12%, rgba(0, 212, 170, 0.16), transparent 24%),
              linear-gradient(135deg, #081127 0%, #0c1734 52%, #101b3e 100%);
}

.auth-shell-modern {
  gap: 18px;
  align-content: center;
  width: min(100%, 760px);
  margin-inline: auto;
  padding-top: 24px;
  justify-items: center;
}

.auth-topline {
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-backlink,
.auth-domain-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: var(--transition);
}

.auth-backlink:hover,
.auth-domain-link:hover {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.06);
}

.auth-domain-link {
  background: rgba(0, 102, 255, 0.18);
  font-weight: 700;
  color: #fff;
}

.auth-panel-modern {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(161, 183, 255, 0.32);
  padding: 30px;
  box-shadow: 0 32px 90px rgba(4, 11, 28, 0.42);
}

.auth-panel-modern .logo-icon {
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.25);
}

.auth-panel-modern > p {
  margin-bottom: 18px;
}

.auth-panel-modern > p strong {
  color: var(--primary-dark);
}

.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.auth-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #F4F8FF;
  border: 1px solid rgba(0, 102, 255, 0.12);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.auth-panel-modern .form-group {
  display: grid;
  gap: 8px;
}

.auth-panel-modern .form-group label {
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.auth-panel-modern .form-group input {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #DBE5F7;
  border-radius: 14px;
  background: #fff;
  color: var(--dark);
  transition: var(--transition);
}

.auth-panel-modern .form-group input:focus {
  outline: none;
  border-color: rgba(0, 102, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

.auth-panel-modern .btn-primary {
  box-shadow: 0 14px 36px rgba(0, 102, 255, 0.32);
}

.auth-links-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.auth-links-row a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.admin-body {
  background: #F4F7FB;
  min-height: 100vh;
  color: var(--text);
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 274px;
  background: var(--dark);
  padding: 24px;
  color: white;
  overflow-y: auto;
}

.admin-logo { margin-bottom: 30px; }
.admin-logo .logo-text { color: white; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active { background: rgba(255,255,255,0.1); color: white; }

.admin-main {
  margin-left: 274px;
  padding: 30px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.admin-topbar h1 { color: var(--dark); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 4px; }
.admin-topbar p { color: var(--text-light); }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.admin-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.admin-section h2 { color: var(--dark); margin-bottom: 8px; }
.admin-section.split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.admin-kpi {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #F9FAFB);
  display: grid;
  gap: 8px;
}
.admin-kpi i { color: var(--primary); font-size: 1.3rem; }
.admin-kpi span { color: var(--text-light); font-size: 0.88rem; }
.admin-kpi strong { color: var(--dark); font-size: 1.45rem; }

.link-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.link-box code { color: var(--dark); word-break: break-all; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th,
.admin-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table th { color: var(--text-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.admin-table small { display: block; color: var(--text-light); margin-top: 3px; }

.status-pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}
.status-pill.pending { background: rgba(255, 107, 53, 0.12); color: #A23D18; }
.status-pill.confirmed { background: rgba(0, 212, 170, 0.14); color: #04745F; }
.status-pill.cancelled { background: rgba(107, 114, 128, 0.16); color: #4B5563; }

.inline-actions { display: flex; gap: 8px; }
.inline-actions button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--primary);
  cursor: pointer;
}

.module-grid,
.leads-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.module-grid article,
.lead-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.module-grid article i { color: var(--secondary); font-size: 1.4rem; margin-bottom: 12px; }
.module-grid article h3 { color: var(--dark); margin-bottom: 8px; }
.module-grid article p,
.lead-card p { color: var(--text-light); }
.leads-grid { grid-template-columns: 1fr 1fr; }
.leads-grid h2 { margin-bottom: 14px; color: var(--dark); }
.lead-card { margin-bottom: 12px; }
.lead-card strong { display: block; color: var(--dark); }
.lead-card span { display: block; color: var(--text-light); font-size: 0.9rem; margin: 4px 0 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sobre-grid,
  .destaque-grid,
  .porque-grid { grid-template-columns: 1fr; gap: 48px; }

  .sobre-visual { height: 360px; }

  .solucoes-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .mockup-screen { width: 100%; max-width: 420px; }
  .destaque-visual { justify-content: center; }

  .contato-grid { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; width: 100%; }
  .admin-main { margin-left: 0; padding: 22px; }
  .admin-kpi-grid,
  .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-section.split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 30, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: white !important;
    font-size: 1.1rem;
  }
  .btn-nav-cta { font-size: 1rem; padding: 12px 24px; }

  .nav-toggle { display: flex; z-index: 1000; }

  .hero { padding: 100px 0 60px; }
  .hero-stats { padding: 20px; gap: 0; }
  .stat-item { padding: 8px 16px; }
  .stat-divider { display: none; }

  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .cta-card { padding: 48px 28px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sobre-card-float { display: none; }
  .porque-numbers { grid-template-columns: 1fr 1fr; }
  .auth-shell {
    padding: 18px 16px 24px;
  }

  .auth-shell-modern {
    width: min(100%, 760px);
    gap: 12px;
    padding-top: 0;
  }

  .auth-topline {
    display: none;
  }

  .auth-panel {
    padding: 24px;
  }

  .auth-panel-modern {
    padding: 22px;
    border-radius: 20px;
  }

  .auth-panel-modern > p {
    margin-bottom: 16px;
  }

  .auth-benefits {
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
  }

  .auth-benefits span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .auth-panel-modern .form-group input {
    min-height: 50px;
  }

  .auth-links-row {
    flex-direction: column;
    align-items: center;
  }
  .admin-topbar { align-items: flex-start; flex-direction: column; }
  .admin-kpi-grid,
  .module-grid,
  .leads-grid { grid-template-columns: 1fr; }
  .link-box { align-items: stretch; flex-direction: column; }
}

@media (max-width: 480px) {
  .tech-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .destaque-actions { flex-direction: column; }
  .porque-numbers { grid-template-columns: 1fr; }
}
