* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(0,140,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  height: 40px;
}

/* HERO (CENTRALIZAÇÃO TOTAL) */
.hero {
  height: 100vh; /* ocupa tela toda */
  display: flex;
  align-items: center; /* vertical */
  justify-content: center; /* horizontal */
}

/* IMAGEM */
.image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image img {
  max-width: 900px;
  width: 100%;
  height: auto;
}