/**
 * TrinFit App - Estilos globais
 */

/* Fonte Sporten – títulos principais (arquivo em assets/fonts/) */
@font-face {
  font-family: 'Sporten';
  src: url('../assets/fonts/SportenPersonalUse-nRYDV.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Títulos: Sporten (principal), Bebas Neue (fallback) */
.fonte-sporten,
.login-titulo,
.dashboard-header__logo-texto {
  font-family: 'Sporten', 'Bebas Neue', sans-serif;
}

/* Reset e base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #0d0d0d;
  min-height: 100%;
  min-height: 100vh;
}

/* Páginas com layout fixo (ex.: login) podem usar overflow: hidden no próprio body */
body.login-page {
  height: 100%;
  overflow: hidden;
}

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

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

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

input,
label {
  font-family: inherit;
}
