/* ============================================================
   Centro de Treinamentos EAG — Design Tokens
   Fonte da verdade: /design.md §14.1 (EAG Copiloto Design System)
   ============================================================ */

:root {
  /* ---- Cores primárias ---- */
  --eag-yellow:        #FFBE2B;
  --eag-black:         #021017;
  --eag-off:           #EBEBEB;

  /* ---- Cores secundárias ---- */
  --eag-light-yellow:  #F6E38C;
  --eag-grey:          #989795;
  --eag-dark-grey:     #333333;
  --eag-gradient-dark: #08182C;

  /* ---- Gradientes oficiais ---- */
  --gradient-yellow:     linear-gradient(180deg, #FFBE2B 0%, #F6E38C 100%);
  --gradient-dark:       linear-gradient(180deg, #08182C 0%, #021017 100%);
  --gradient-dark-glow:  radial-gradient(ellipse at center, rgba(255,190,43,0.18) 0%, #021017 60%);

  /* ---- Tipografia ---- */
  --font-display: "Neue Haas Grotesk Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Neue Haas Grotesk Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-script:  "Architects Daughter", "Caveat", cursive;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;

  /* ---- Escala tipográfica (desktop) ---- */
  --fs-hero:    88px;
  --fs-h1:      56px;
  --fs-h2:      40px;
  --fs-h3:      28px;
  --fs-h4:      20px;
  --fs-body-lg: 18px;
  --fs-body:    16px;
  --fs-body-sm: 14px;
  --fs-label:   12px;

  /* ---- Espaçamento (base 8) ---- */
  --space-xxs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* ---- Border-radius ---- */
  --radius-sm:   4px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* ---- Sombras ---- */
  --shadow-sm: 0 2px 4px rgba(2, 16, 23, 0.08);
  --shadow-md: 0 8px 24px rgba(2, 16, 23, 0.12);
  --shadow-lg: 0 16px 40px rgba(2, 16, 23, 0.18);

  /* ---- Container ---- */
  --container-max: 1200px;

  /* ---- Easing ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- Reset minimal ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--eag-black);
  background: var(--eag-off);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ---- Foco acessível ---- */
:focus-visible {
  outline: 2px solid var(--eag-yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- Container utilitário (lp- prefix evita conflito com Tailwind .container) ---- */
.lp-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
@media (min-width: 768px) {
  .lp-container { padding: 0 var(--space-xl); }
}
