@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&display=swap');

:root {
  --primary:       #DC2626;
  --primary-dark:  #B91C1C;
  --primary-light: #EF4444;
  --cobalt:        #DC2626;
  --cobalt-dark:   #B91C1C;
  --cobalt-light:  #EF4444;
  --coral:         #DC2626;
  --coral-dark:    #B91C1C;
  --coral-light:  #EF4444;
  --bg:            #FAFAFA;
  /* Se usa en 8 sitios (navbar, tarjetas, menu movil...) pero nunca estaba
     definida: var(--surface) resolvia a transparente. Se notaba sobre todo en
     el menu hamburguesa del movil, que dejaba ver el contenido de la pagina
     a traves. En el navbar pasaba desapercibido porque --bg ya es casi blanco. */
  --surface:       #FFFFFF;
  --text:          #171717;
  --text-secondary:#525252;
  --text-muted:    #A3A3A3;
  --border:        #E5E5E5;
  --border-light:  #F5F5F5;
  --shadow-md:     0 4px 12px rgba(220,38,38,0.08);
  --shadow-lg:     0 12px 40px rgba(220,38,38,0.12);
  --shadow-coral:  0 8px 30px rgba(220,38,38,0.25);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     20px;
  --transition:    all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Geist', system-ui, -apple-system, sans-serif;
  --success: #10B981;
  --warning: #F59E0B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(220,38,38,0.2); }
  50% { box-shadow: 0 0 40px rgba(220,38,38,0.4); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}