* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 60%;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

p {
  font-size: 2rem;
}

label {
  font-size: 2rem;
}

input {
  font-size: 2rem;
}

button {
  font-size: 2rem;
}

.container {
  max-width: 100%;
  max-height: 100vh;

  background: #f3f8ff;
}

.text-content {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 5rem;
}

.text-content h1 {
  font-family: "Poppins", sans-serif;
}

.text-content img {
  max-width: 100%;
}

.box-calculo {
  background: #ffe162;
  border-radius: 4rem 0 0 0rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.box-calculo img {
  width: 25rem;
  margin-top: 2rem;
}

.form {
  margin-top: 2rem;
  width: 90%;
}

.form .input-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.box-calculo label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}

.box-calculo input {
  width: 100%;
  height: 5.6rem;
  background: #fafafc;

  border: 0.1rem solid #e6e6f0;
  box-sizing: border-box;
  border-radius: 0.8rem;

  text-align: center;
}

.box-calculo input::placeholder {
  color: #9c98a6;
}

.box-calculo button {
  width: 18.8rem;
  height: 5.7rem;
  background: #ccab1e;
  color: #fff;

  border: none;
  border-radius: 3.6rem;

  text-align: center;
  margin-top: 1rem;

  cursor: pointer;
  transition: background 0.2s;
}

.box-calculo button:hover {
  background: #bd9d12;
}

.grid {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-gap: 2rem;
}

/* css do resultado no js */
.result-info {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #000;
  width: 0 auto;
  margin-top: 1.5rem;
}

.result-block {
  display: flex;
  align-items: center;
  margin: 0.5rem;
}

.result-block img {
  width: 3rem;
  height: 3rem;
  margin: 0;
  margin-right: 0.5rem;
}

.result-block p {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: rgb(44, 44, 44);
}

/* Desktop Responsivity */

@media (min-width: 700px) {
  * {
    overflow: hidden;
  }

  .text-content h1 {
    font-size: 4rem;
    width: 50rem;
  }

  .box-calculo {
    height: 100vh;
    background: #ffe162;
    border-radius: 4rem 0 0 4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .form {
    margin-top: 2rem;
    width: 70%;
  }

  .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 0;
  }
}

/* Mobile Responsivity */

@media (max-width: 700px) {
  #resultado {
    width: 90%;
  }

  .result-info {
    margin-bottom: 3rem;
  }

  .result-block {
    justify-content: space-between;
    margin: 1rem;
    background-color: white;
    padding: 1rem;
    border-radius: 0.6rem;
  }
}
