/* ===========================
   main.css — Estilos globales
   =========================== */

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  background: #0f0f12;
  color: #E6E6E6;
  overflow-x: hidden;
  animation: page-fade-in 0.5s ease-out;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Variables CSS globales */
:root {
  --text-color: #E6E6E6;
  --text-hover: #FFFFFF;
  --bg-dark: #0f0f12;
  --accent: #c81e1e;
  --accent-hover: #ff3c3c;
  --transition-speed: 0.3s;
}

/* Text shadow para legibilidad */
body, h1, h2, h3, a, button {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

/* Links sin decoración por defecto */
a {
  color: inherit;
  text-decoration: none;
}

/* Botones base */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

