@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,400&display=swap");

/*#region Variáveis e inicialização*/
:root {
  --padding1: 12px 212px;
  --padding2: 24px 212px;
  --padding3: 24px 220px;
  --maxWidth: 700px;
}

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

body {
  display: flex;
  flex-direction: column;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
}

a {
  text-decoration: none;
  color: #e5e7eb;
}
/*#endregion Variáveis e inicialização*/

/*#region header*/
.header {
  display: flex;
  padding: var(--padding1);
  color: #e5e7eb;
  background-color: #1f2937;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.links {
  display: flex;
  gap: 16px;
}
/*#endregion*/

/*#region box one*/
.box.one {
  display: flex;
  padding: var(--padding1);
  color: #e5e7eb;
  background-color: #1f2937;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.titleBox.one {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.title.one {
  font-size: 38px;
  font-weight: 900;
  color: #f9faf8;
}

.button {
  width: auto;
  align-self: flex-start;
  padding: 6px 10px;
  margin: 6px 0;
  color: #e5e5e5;
  border-radius: 6px;
  background-color: #3882f6;
  font-weight: 550;
  box-shadow: 0 0 0 1px rgba(45, 64, 84, 0.5); /* Substitui por algo visual */
  border: 1px solid #5f7ea870;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button:active {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4);
  transform: translateY(2px);
}
.button:hover {
  background-color: #0056b3;
}

/**/

.imgBox.box1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 38px;
  background-color: rgba(82, 82, 74, 0.675);
  border-radius: 4px;
}
/*#endregion*/

/*#region box two*/
.box.two {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: var(--padding2);
  gap: 24px;
  background-color: #ececec;
}

.title.two {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: var(--maxWidth);
  width: 100%;
}

.imgInside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: grey;
  border: 3px solid #3498db;
  border-radius: 8px;
  padding: 26px 18px;
}

.imgInside img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  align-self: center;
  border: 1px solid;
}

.subtitle.img {
  padding: 6px 0;
  text-align: center;
  font-size: 10px;
}
/*#endregion*/

/*#region box three*/
.box.three {
  display: flex;
  justify-content: center;
  /**/
  padding: var(--padding2);
  background-color: #d7d9db;
  font-size: 18px;
  color: #1f2937;
}

.textBox {
  display: flex;
  flex-direction: column;
  /**/
  max-width: var(--maxWidth);
}

.text {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 12px;
}

.textSub {
  font-size: 12px;
  font-weight: 550;
  align-self: flex-end;
  margin-right: 50px;
  margin-bottom: 15px;
}
/*#endregion*/

/*#region footer*/
.footer {
  display: flex;
  padding: var(--padding2);
  background-color: #ececec;
}

.panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 75px;
  gap: 12px;
  background-color: #3882f6;
  color: #e5e5e5;
  border-radius: 5px;
  border: 3px solid rgba(0, 0, 0, 0.093);
  width: 100%;
}

.textPanel {
  display: flex;
  flex-direction: column;
}

.title.final {
  font-size: 14px;
  font-weight: 700;
}

.subtitle.final {
  font-size: 10px;
}

.button.final {
  border: 1px solid rgba(255, 252, 252, 0.445);
}

  p {
    margin: 0;
    font-size: 14px;
  }

  a {
    color: #3d3d3d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }

  a:hover {
    color: #3c45e7;
    border-bottom: 1px solid #3c45e7;
  }
  
/*#endregion*/

/*#region media querie*/
@media (max-width: 768px) {
  .header {
    padding: 12px;
    align-items: center;
  }

  .box.one {
    padding: 12px 12px 24px 12px;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
  }

  .button {
    align-self: center;
  }

  .box.two {
    flex-direction: row;
    padding: 16px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .boxes {
    padding: 12px;
    flex-wrap: wrap;
  }

  .box.three {
    padding: 16px 20px;
    text-align: center;
  }

  .footer {
    padding: 12px;
  }

  .panel {
    padding: 8px 16px;
    flex-direction: column;
    gap: 10px;
  }

  .title.final {
    text-align: center;
    padding: 2px 0px;
  }

}
/*#endregion*/
