/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: white;
  color: #1a1a1a;
}

/* Container principal */
#logo {
  width: 256px;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Responsivo para telas grandes */
@media (min-width: 1024px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Títulos e textos */
h1 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 1.875rem;
  }
}

p {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
  color: #666970;
}

@media (min-width: 1024px) {
  p {
    font-size: 1.5rem;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  gap: 0.5rem;
}

.footer span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #666970;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer span {
    font-size: 1.25rem;
  }
}
