/* ================ RESET ================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
  color: #000;
}
/* Remove estilo padrão de listas */
ul, ol {
  list-style: none;
}
/* Remove sublinhado e herda cor */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove bordas e estilos padrão de botões e inputs */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}
/* Normaliza cabeçalhos */
h1, h2, h3, h4, h5, h6, p{
  font-size: 1.5rem;
  font-family: poppins;
}
/* Imagens responsivas */
img {
  max-width: 100%;
  display: block;
}
/* Tira espaçamento automático entre elementos inline */
p + p {
  margin-top: 1em;
}
/* ================  ESTILO GLOBAL  ================= */
html{
  scroll-behavior: smooth;
}
body {
  display: flex;
  min-height: 100vh;
  font-family: var(--font);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  flex-direction: column;
  justify-content: space-between;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* ================ TEXTO ================= */
p {
  color: #000000;
}
/* ================ LAYOUT ================= */
#body{
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* ================ CONTAINER  ================= */
.container-box {
  /*background-color: #f800007e;*/
  height: auto;
  width: 100%;
  max-width: 1300px;
}
/* ================ HEADER  ================= */
header {
  flex:1;
}
#header{
  display: flex;
  justify-content: center;
  margin: 0;
}
.header-caixa{
  background: cover;
}
.header-caixa img{
  filter: drop-shadow(15px 10px 16px rgba(0, 0, 0, 0.5));
}
@media (max-width: 900px) {
  .header-caixa img{
    max-width: auto;
  }
}
/* ================ MAIN ================= */
main {
  flex: auto;
}
#main{
  margin: 0;
}
.main-flex{
  gap: 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.caixa{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:20px;
  border-radius: 30px;
  width: 360px;
  height: 180px;
}
.caixa p{
   font-size: 20px;
  text-align: center;
}
button#installBtn {
  padding: 8PX 16PX;
    border-radius: 40px;
    background-color: rgb(255, 251, 0);
}
/* ================ FOOTER ================= */
footer {
  flex:1;
  background-color: #ffffff;
}
/* ================ RESPONSIVO ================= */