@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --solteck-black: #0a0c10;
  --solteck-dark: #0d1b2a;
  --solteck-blue: #163a5f;
  --solteck-green: #21d07a;
  --solteck-white: #f5f7fb;
  --glass: rgba(255, 255, 255, 0.08);
}

* {
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--solteck-black);
  color: var(--solteck-white);
}

a {
  text-decoration: none;
}

.bg-dark {
  background-color: var(--solteck-dark) !important;
}

.btn-cta {
  background: linear-gradient(135deg, var(--solteck-green), #2fe3a7);
  color: #0b0f14;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
}

.hero {
  background: radial-gradient(circle at top, rgba(22, 58, 95, 0.6), transparent),
    linear-gradient(135deg, rgba(15, 22, 35, 0.95), rgba(9, 12, 16, 0.95)),
    url('../img/hero.svg') center/cover no-repeat;
  padding: 6rem 0;
  position: relative;
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.section-title {
  font-weight: 700;
  color: #fff;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.stats {
  background: linear-gradient(120deg, rgba(33, 208, 122, 0.15), rgba(22, 58, 95, 0.2));
  border-radius: 24px;
  padding: 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--solteck-green);
  color: #081018;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 27, 42, 0.98);
  padding: 12px 0;
  display: none;
  z-index: 1000;
  font-size: 0.9rem;
}

.cookie-banner.show {
  display: block;
}

.admin-sidebar {
  min-height: 100vh;
  background: #0e1a28;
}

.admin-sidebar a {
  color: rgba(255, 255, 255, 0.75);
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  color: #fff;
}

.table-dark th,
.table-dark td {
  color: #fff;
}
