@import url('https://fonts.googleapis.com/css2?family=Luxurious+Script&family=Manrope:wght@500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

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

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #050e1c; /* Azul marinho profundo de fundo */
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* Utilitários de Tipografia */
.font-body {
  font-family: 'Open Sans', sans-serif;
}

.font-accent {
  font-family: 'Instrument Serif', serif;
}

.font-manrope {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.font-luxurious {
  font-family: 'Luxurious Script', cursive;
}
