/* GSM RST PRO — Premium Fintech Theme */

:root {
  --neon: #00A8FF;
  --dark: #071B34;
  --royal: #005EFF;
  --white: #FFFFFF;
  --metal: #C7D0D9;
  --dark-2: #0a2342;
  --dark-3: #0d2d52;
  --glass: rgba(7, 27, 52, 0.55);
  --glass-border: rgba(0, 168, 255, 0.18);
  --shadow-neon: 0 0 40px rgba(0, 168, 255, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }

.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Background effects */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 94, 255, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 168, 255, 0.12), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(0, 94, 255, 0.15), transparent),
    var(--dark);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.tech-lines {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(0, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 27, 52, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 168, 255, 0.35));
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.login-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 168, 255, 0.4));
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--metal);
  transition: color var(--transition);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--royal));
  transition: width var(--transition);
}

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

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(7, 27, 52, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 0.75rem;
  border-radius: 8px;
  color: var(--metal);
  transition: var(--transition);
}

.nav-mobile a:hover {
  background: rgba(0, 168, 255, 0.1);
  color: var(--white);
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon), var(--royal));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0, 168, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 168, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0, 168, 255, 0.12);
  border-color: rgba(0, 168, 255, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--metal);
  border: 1px solid transparent;
}

.btn-ghost:hover { color: var(--white); }

.btn-block { width: 100%; }

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Glass card */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Section shared */
section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.25);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white), var(--metal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--metal);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon);
  background: rgba(0, 168, 255, 0.08);
  border: 1px solid rgba(0, 168, 255, 0.2);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0, 168, 255, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--neon) 0%, var(--royal) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--metal);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero-desc {
  color: rgba(199, 208, 217, 0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

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

.hero-visual { position: relative; }

.hero-dashboard {
  padding: 1.5rem;
  position: relative;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s ease;
}

.hero-dashboard:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.dashboard-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.2), transparent 70%);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #febc2e; }
.dashboard-dots span:nth-child(3) { background: #28c840; }

.dashboard-title {
  font-size: 0.8rem;
  color: var(--metal);
  font-weight: 600;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 94, 255, 0.08);
  border: 1px solid rgba(0, 168, 255, 0.12);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(0, 168, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
}

.stat-card.highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.15), rgba(0, 94, 255, 0.1));
}

.stat-label {
  font-size: 0.75rem;
  color: var(--metal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.stat-value.neon { color: var(--neon); }

.stat-trend {
  font-size: 0.75rem;
  color: #28c840;
  margin-top: 0.25rem;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

/* Plans */
#planos { background: rgba(0, 94, 255, 0.03); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  transform-style: preserve-3d;
}

.plan-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-neon);
  border-color: rgba(0, 168, 255, 0.35);
}

.plan-card.featured {
  border-color: rgba(0, 168, 255, 0.45);
  background: linear-gradient(160deg, rgba(0, 168, 255, 0.12), rgba(7, 27, 52, 0.6));
  transform: scale(1.02);
}

.plan-card.featured:hover { transform: scale(1.02) translateY(-8px); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-badge.popular {
  background: linear-gradient(135deg, var(--neon), var(--royal));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 168, 255, 0.4);
}

.plan-badge.best {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: var(--dark);
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--metal);
}

.plan-save {
  font-size: 0.85rem;
  color: #28c840;
  font-weight: 600;
  margin-bottom: 1.5rem;
  min-height: 1.25rem;
}

.plan-features {
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  color: rgba(199, 208, 217, 0.9);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li::before {
  content: '✓';
  color: var(--neon);
  font-weight: 700;
  flex-shrink: 0;
}

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

.service-card {
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon), var(--royal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 255, 0.3);
  box-shadow: var(--shadow-neon);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--metal);
  font-size: 0.95rem;
}

/* DHRU Integration */
#integracao {
  background: linear-gradient(180deg, transparent, rgba(0, 94, 255, 0.05), transparent);
}

.flow-container {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-node {
  padding: 1.25rem 2rem;
  min-width: 220px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.flow-node:hover {
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: var(--shadow-neon);
  transform: scale(1.03);
}

.flow-node.primary {
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.2), rgba(0, 94, 255, 0.15));
  border-color: rgba(0, 168, 255, 0.4);
}

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--neon);
  font-size: 1.5rem;
  padding: 0.5rem 0;
  animation: arrowBounce 2s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(4px); opacity: 1; }
}

.flow-desc {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  color: var(--metal);
  font-size: 1.05rem;
}

/* Dashboard Preview */
.dashboard-preview {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.preview-toolbar h3 {
  font-size: 1rem;
  font-weight: 700;
}

.preview-tabs {
  display: flex;
  gap: 0.5rem;
}

.preview-tabs span {
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--metal);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: var(--transition);
}

.preview-tabs span.active {
  background: rgba(0, 168, 255, 0.15);
  color: var(--neon);
  border: 1px solid rgba(0, 168, 255, 0.3);
}

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

.preview-metric {
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.preview-metric:hover {
  border-color: rgba(0, 168, 255, 0.25);
  background: rgba(0, 168, 255, 0.06);
}

.preview-metric .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--metal);
  margin-bottom: 0.5rem;
}

.preview-metric .value {
  font-size: 1.4rem;
  font-weight: 800;
}

.preview-chart {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(0, 94, 255, 0.06);
  border: 1px solid var(--glass-border);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
}

.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--neon), var(--royal));
  opacity: 0.7;
  transition: var(--transition);
  animation: barGrow 1s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

.chart-bar:hover { opacity: 1; }

@keyframes barGrow {
  to { transform: scaleY(1); }
}

.chart-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 90%; animation-delay: 0.6s; }
.chart-bar:nth-child(7) { height: 75%; animation-delay: 0.7s; }

/* Login */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-wrapper {
  width: min(440px, 100%);
}

.login-card {
  padding: 2.5rem;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header .login-logo {
  margin: 0 auto 1.5rem;
}

.login-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: var(--metal);
  font-size: 0.9rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--metal);
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.15);
}

.form-group input::placeholder { color: rgba(199, 208, 217, 0.4); }

.form-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.form-links a {
  color: var(--neon);
  transition: var(--transition);
}

.form-links a:hover { color: var(--white); }

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--metal);
  font-size: 0.8rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(0, 168, 255, 0.1);
  border-color: rgba(0, 168, 255, 0.3);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.back-home {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--metal);
  font-size: 0.85rem;
  transition: var(--transition);
}

.back-home:hover { color: var(--neon); }

/* Footer */
.site-footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(4, 15, 30, 0.6);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 30px rgba(0, 168, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: var(--metal);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-cta { padding: 1.5rem; }

.footer-cta h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-cta p {
  color: var(--metal);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--metal);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28c840;
  animation: pulse 2s infinite;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.trust-chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--metal);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-chip:hover {
  border-color: rgba(0, 168, 255, 0.35);
  color: var(--neon);
}

/* Specs bar */
.specs-bar {
  padding: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.specs-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 168, 255, 0.15);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-neon);
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.25rem 1rem;
  text-align: center;
  background: rgba(7, 27, 52, 0.92);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.spec-item:hover {
  background: rgba(0, 94, 255, 0.12);
}

.spec-item strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--neon);
}

.spec-item span {
  font-size: 0.75rem;
  color: var(--metal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hospedagem / Servers */
#hospedagem {
  background: linear-gradient(180deg, rgba(0, 94, 255, 0.04), transparent 60%);
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.server-card {
  padding: 1.5rem;
  transition: var(--transition);
}

.server-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 255, 0.35);
  box-shadow: var(--shadow-neon);
}

.server-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.server-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #28c840;
  margin-bottom: 0.5rem;
}

.server-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.35rem;
}

.server-type-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neon);
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.2);
  margin-bottom: 0.35rem;
}

.server-host {
  font-size: 0.78rem;
  color: var(--metal);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  opacity: 0.85;
}

.server-region {
  font-size: 0.85rem;
  color: var(--metal);
  margin-top: 0.25rem;
}

.server-uptime {
  text-align: right;
}

.server-uptime span {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--neon);
}

.server-uptime small {
  font-size: 0.7rem;
  color: var(--metal);
  text-transform: uppercase;
}

.server-specs {
  margin-bottom: 1.25rem;
}

.server-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.server-specs li span {
  color: var(--metal);
}

.server-specs li strong {
  font-weight: 600;
  color: var(--white);
  text-align: right;
  max-width: 60%;
}

.server-load .load-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--metal);
  margin-bottom: 0.5rem;
}

.load-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.load-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--royal), var(--neon));
  box-shadow: 0 0 12px rgba(0, 168, 255, 0.5);
  transition: width 1.2s ease;
}

.hospedagem-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hosp-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.hosp-feat:hover {
  border-color: rgba(0, 168, 255, 0.3);
  transform: translateX(4px);
}

.hosp-feat-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.hosp-feat h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.hosp-feat p {
  font-size: 0.85rem;
  color: var(--metal);
  line-height: 1.5;
}

.infra-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.12), rgba(0, 94, 255, 0.08));
  border-color: rgba(0, 168, 255, 0.3);
}

.infra-banner h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0.75rem 0;
  max-width: 520px;
}

.infra-banner p {
  color: var(--metal);
  font-size: 0.9rem;
  max-width: 560px;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.hero-panel-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(0, 94, 255, 0.06);
  border: 1px solid rgba(0, 168, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.hero-panel-item:hover {
  border-color: rgba(0, 168, 255, 0.3);
  background: rgba(0, 168, 255, 0.1);
}

.hero-panel-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-panel-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.78rem;
  color: var(--metal);
}

.stack-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.server-card .stack-desc {
  color: var(--metal);
  font-size: 0.9rem;
  line-height: 1.55;
}

.server-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cpanel-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.cpanel-preview-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.cpanel-preview-item:hover {
  border-color: rgba(0, 168, 255, 0.25);
  background: rgba(0, 168, 255, 0.06);
}

.cpanel-preview-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cpanel-preview-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.cpanel-preview-item p {
  font-size: 0.8rem;
  color: var(--metal);
  line-height: 1.45;
}

/* Cron Jobs Section */
.cron-section {
  background: linear-gradient(180deg, rgba(0, 168, 255, 0.06), transparent);
}

.cron-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.cron-card {
  padding: 1.75rem 1.5rem;
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.cron-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 255, 0.35);
  box-shadow: var(--shadow-neon);
}

.cron-card.cron-featured {
  border-color: rgba(0, 168, 255, 0.45);
  background: linear-gradient(160deg, rgba(0, 168, 255, 0.14), rgba(7, 27, 52, 0.6));
}

.cron-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cron-badge.fastest {
  background: linear-gradient(135deg, var(--neon), var(--royal));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 168, 255, 0.4);
}

.cron-badge.fast {
  background: rgba(0, 168, 255, 0.15);
  color: var(--neon);
  border: 1px solid rgba(0, 168, 255, 0.3);
}

.cron-badge.standard,
.cron-badge.basic {
  background: rgba(255, 255, 255, 0.06);
  color: var(--metal);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cron-time {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.cron-featured .cron-time {
  background: linear-gradient(135deg, var(--neon), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cron-desc {
  font-size: 0.85rem;
  color: var(--metal);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  min-height: 3.5rem;
}

.cron-for {
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.cron-for span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--metal);
  margin-bottom: 0.35rem;
}

.cron-for strong {
  font-size: 0.8rem;
  color: var(--neon);
  font-weight: 600;
}

.cron-compare {
  padding: 2rem;
  text-align: center;
}

.cron-compare h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cron-compare-grid {
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.cron-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--metal);
}

.cron-compare-row.highlight {
  background: rgba(0, 168, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 168, 255, 0.25);
  color: var(--white);
  margin: 0.5rem 0;
}

.cron-compare-row.highlight strong {
  color: var(--neon);
}

.cron-note {
  font-size: 0.85rem;
  color: var(--metal);
  margin-bottom: 1.5rem;
}

.section-desc strong {
  color: var(--neon);
  font-weight: 600;
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .hero-panel-grid { grid-template-columns: 1fr; }
  .hero-dashboard { transform: none; }
  .plan-card.featured { transform: none; }
  .social-login { grid-template-columns: 1fr; }
  .specs-bar { margin-top: 0; }
  .infra-banner { flex-direction: column; text-align: center; }
  .infra-banner .btn { width: 100%; }
}
