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

@font-face {
  font-family: 'Stolzl';
  src: url('assets/fonts/stolzl_book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Stolzl';
  src: url('assets/fonts/stolzl_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

strong {
  font-weight: 700;
  font-family: 'Stolzl', sans-serif;
}

body {
  background-color: #34339A;
  color: #E0DCD2;
  font-family: Stolzl, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Stolzl', sans-serif;
  font-weight: 400; /* default: Regular */
  color: #E0DCD2;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo-mini {
  width: 40px;
}

.left nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.left nav a,
.right a {
  color: #E0DCD2;
  text-decoration: none;
  font-size: 13px;
}

.right {
  text-align: right;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* MAIN */
main {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.logo-grande-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* para o slogan alinhar à direita */
  justify-content: flex-end; /* empurra tudo para baixo */
  padding: 0 24px 24px; /* ← Lado, Lado, Fundo */
  box-sizing: border-box;
}

.logo-grande {
  width: 100%;
  height: auto;
  display: block;
}

.slogan {
  font-size: 30px;
  text-align: right;
  color: #E0DCD2;
  line-height: 1.2;
  margin-bottom: 48px; /* DISTÂNCIA entre slogan e logo */
  z-index: 2;
  position: static; /* Remove absolute, agora é fluxo normal no flex */
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .right {
    text-align: left;
    margin-top: 20px; /* opcional: espaçamento entre blocos */
  }

   .left nav a,
  .right p,
  .right a {
    font-size: 12px;
  }

   .left nav a {
    padding: 0px 0; /* só no mobile */
  }

  .slogan {
    font-size: 23px; /* garante tamanho menor */
  }
}
