/* ================================================
   Cruza2TV - Variables, Reset & Typography
   ================================================ */

:root {
  --background: 0 0% 100%;
  --foreground: 215 50% 15%;
  --card: 0 0% 100%;
  --card-foreground: 215 50% 15%;
  --primary: 0 85% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 35 30% 95%;
  --secondary-foreground: 215 50% 15%;
  --muted: 35 15% 92%;
  --muted-foreground: 215 20% 35%; /* Mejorado: antes era 45%, ahora 35% para mejor contraste */
  --accent: 215 65% 18%;
  --accent-foreground: 0 0% 100%;
  --border: 35 20% 88%;
  --ring: 0 85% 45%;
  --radius: 0.75rem;
  --gradient-red: linear-gradient(135deg, hsl(0, 85%, 50%) 0%, hsl(25, 100%, 50%) 100%);
  --shadow-soft: 0 4px 30px hsl(215 65% 18% / 0.1);
  --shadow-card: 0 10px 40px hsl(215 65% 18% / 0.08);
  --shadow-elevated: 0 20px 60px hsl(215 65% 18% / 0.15);
}

/* === Reset === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { color: hsl(var(--muted-foreground)); }
