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

/* Estilo geral */
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background-color: #00cacd2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Header */
.header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.header{
  margin-top: 2rem;
}

/* Conteúdo principal */
.main-content {
  text-align: center;
  padding: 1rem;
  margin-top: -100px;
}

.construction {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.construction-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.text-construction {
  font-size: 1.7rem;
  color: #ff6200;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.text-amazon{
  font-size: 1.6rem;
  color: #089294;
  font-weight: bold;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 1rem;
  color: #838383;
  text-align: center;
}

.logo {
  max-width: 320px;
  height: auto;
  margin-bottom: 1rem;
}

.amazon-image{
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

/* Responsividade */
@media (min-width: 768px) {
  .header h1 {
    font-size: 3rem;
  }

  .text-construction {
    font-size: 2rem;
  }

  .subtext {
    font-size: 1.2rem;
  }
  .text-construction {
    font-size: 1.8rem;
  }
}
