/* =========================================
   TECH ZONE — GLOBAL CSS
   Base general del proyecto
   ========================================= */

/* ---------- RESET ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f1115;
  color: #ffffff;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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


/* ---------- CONTENEDOR GENERAL ---------- */

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}


/* ---------- BOTONES BASE ---------- */

button {
  border: none;
}

.primary {
  background: #ffffff;
  color: #0f1115;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s ease;
}

.primary:hover {
  transform: translateY(-2px);
}

.secondary {
  background: #272c36;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s ease;
}

.secondary:hover {
  background: #343b48;
  transform: translateY(-2px);
}


/* ---------- UTILIDADES ---------- */

.hidden {
  display: none;
}

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

.full-width {
  width: 100%;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .container {
    width: min(94%, 1200px);
  }

  .primary,
  .secondary {
    padding: 11px 18px;
  }
}