/* ==========================================================================
   Planincheck Informática - Funny Under Construction Page Stylesheet
   Theme: High-Tech Cyber Dark Mode with Vibrant Accents
   ========================================================================== */

:root {
  --bg-color: #0b0f19;
  --card-bg: #151c2c;
  --primary-blue: #00b0ff;
  --accent-green: #00e676;
  --warning-amber: #ffab00;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border-glow: rgba(0, 176, 255, 0.25);
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-code: 'Consolas', 'Courier New', monospace;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  position: relative;
}

/* Background Animated Matrix Grid */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 176, 255, 0.12), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 230, 118, 0.08), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header & Logo
   ========================================================================== */

header {
  text-align: center;
  margin-bottom: 30px;
}

.logo-card {
  display: inline-block;
  background: #ffffff;
  padding: 16px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25), 0 0 15px rgba(0, 176, 255, 0.3);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.logo-card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.logo-img {
  max-width: 220px;
  height: auto;
  display: block;
}

.badge-30 {
  display: inline-block;
  background: linear-gradient(135deg, #00b0ff, #00e676);
  color: #0b0f19;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

/* ==========================================================================
   Hero & Humor Titles
   ========================================================================== */

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
}

.main-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #00b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}

.humor-quote {
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--accent-green);
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 15px;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

/* ==========================================================================
   Interactive Terminal Console
   ========================================================================== */

.terminal-box {
  background: #050811;
  border: 1px solid #1e293b;
  border-radius: 10px;
  text-align: left;
  font-family: var(--font-code);
  font-size: 14px;
  color: #38bdf8;
  margin-bottom: 35px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.terminal-header {
  background: #0f172a;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #1e293b;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title {
  color: var(--text-muted);
  font-size: 12px;
  margin-left: 10px;
}

.terminal-body {
  padding: 20px;
  min-height: 140px;
  line-height: 1.8;
}

.prompt {
  color: var(--accent-green);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--primary-blue);
  animation: blink 0.8s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==========================================================================
   Counters Grid
   ========================================================================== */

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.counter-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.counter-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.counter-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-green);
  font-family: var(--font-code);
}

.counter-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ==========================================================================
   Emergency Panic Button Component
   ========================================================================== */

.panic-section {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px dashed #ef4444;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin-bottom: 35px;
}

.btn-panic {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
}

.btn-panic:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.7);
}

.panic-response {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #f87171;
  min-height: 24px;
}

/* ==========================================================================
   Footer Contacts
   ========================================================================== */

footer {
  border-top: 1px solid #1e293b;
  padding: 30px 0;
  background: #070a12;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 600px) {
  .main-title { font-size: 26px; }
  .subtitle { font-size: 15px; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
}
