@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0&display=swap");

:root {
  /* Colors from style.css */
  --bg: #f8fafc;
  --surface: #ffffff;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --accent: #6366f1;
  --text: #0f172a;
  --text-soft: #64748b;
  --border: #e5e7eb;

  /* Spacing & Shape */
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.05);

  /* Layout */
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  scroll-behavior: smooth;
  min-height: 100vh;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

/* Utilities */
.section { padding: 84px 0; }
.section-sm { padding: 44px 0; }

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-desc {
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt] {
  transform-style: preserve-3d;
}

.hidden {
  display: none !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ENVIA LMS V9.4.3 | Mobile-first design token standard */
:root {
  --primary-color: #031B63;
  --secondary-color: #1D63FF;
  --accent-color: #5A22FF;
  --dark-surface: #011342;
  --app-bg: #F5F7FB;
  --card-bg: #FFFFFF;
  --border-color: #D9E1EE;
  --text-color: #0B153A;
  --muted-text: #64748B;
  --primary: var(--secondary-color);
  --primary-hover: #164FDB;
  --accent: var(--accent-color);
  --bg: var(--app-bg);
  --surface: var(--card-bg);
  --border: var(--border-color);
  --text: var(--text-color);
  --text-soft: var(--muted-text);
  --gradient-main: linear-gradient(135deg, #1D63FF 0%, #5A22FF 100%);
}
