:root {
  --bg: #f9fafb;
  --text: #2e2e2e;
  --menus: #7b7b7b;
  --btn-pri: #4a90e2;
  --hover: #1a56d1;
  --btn-sec: #22c55e;
}
.blocochamada {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 2rem 3rem;
}
.textchamativo {
  font-size: 2.5rem;
  font-weight: 650;
  background: linear-gradient(
    135deg,
    var(--btn-pri),
    var(--btn-pri),
    var(--hover),
    var(--btn-pri),
    var(--btn-pri)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineLoop 15s linear infinite;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--menus);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.textchamativo.apareceu {
  animation: tela 1.3s ease forwards;
}
.subtitle.apareceu {
  animation: tela 1.3s ease forwards;
}
.formu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 25px auto;
  padding: 0 0.5rem;
}
form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
  padding: 0 2.2rem;
}
.input {
  width: 550px;
  height: 40px;
  border-radius: 14px;
  outline: none;
  border: 3px solid #e2eaf6;
  background: linear-gradient(to right, #ffffff, #e2eaf6);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.input::placeholder {
  color: var(--text);
  font-weight: 300;
  font-size: 0.875rem;
}
.imgforms img {
  width: 500px;
  height: auto;
}
.formsimg {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.inputext {
  width: 550px;
  height: 80px;
  border-radius: 14px;
  outline: none;
  border: 3px solid #e2eaf6;
  background: linear-gradient(to right, #ffffff, #e2eaf6);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.input::placeholder {
  color: var(--text);
  font-weight: 300;
  font-size: 0.875rem;
}
.options {
  width: 220px;
  height: 40px;
  border-radius: 14px;
  outline: none;
  border: 3px solid #e2eaf6;
  background: linear-gradient(to right, #ffffff, #e2eaf6);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  color: var(--text);
  font-weight: 300;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.enviar {
  width: 220px;
  height: 40px;
  border-radius: 14px;
  outline: none;
  border: none;
  background: linear-gradient(to right, #4a90e2, #1a56d1);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  color: var(--bg);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.enviar:hover {
  background: linear-gradient(to right, #1a56d1, #4a90e2);
  transform: rotate(0) scale(1.03);
}
.selectbutton {
  display: flex;
  flex-direction: row;
  gap: 110px;
}
.enviar::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(25deg) scale(1);
  opacity: 0;
  pointer-events: none;
}
.enviar:hover::after {
  animation: brilhoDiagonal 0.9s ease-in-out forwards;
  opacity: 1;
}
@keyframes brilhoDiagonal {
  0% {
    top: -100%;
    left: -100%;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}
.enviar.apareceu {
  animation: tela 1.5s ease forwards;
}
.formsimg.apareceu {
  animation: tela 1.5s ease forwards;
}
.input.apareceu {
  animation: tela 1.5s ease forwards;
}
.inputext.apareceu {
  animation: tela 1.5s ease forwards;
}
.options.apareceu {
  animation: tela 1.5s ease forwards;
}
.apps {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.cellimg {
  width: 500px;
  height: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.appmsg {
  display: grid;
  grid-template-columns: 225px 225px;
  justify-content: center;
  gap: 35px;
}
.msgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  border: 3px solid var(--btn-pri);
  border-radius: 6px;
  width: 225px;
  height: 225px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.msgs:hover {
  cursor: pointer;
  background: linear-gradient(to right, #dbeafe, #bfdbfe);
  transition: all 0.8s ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.msgs a {
  text-decoration: none;
  color: var(--text);
  outline: none;
}
.msgs.apareceu {
  animation: tela 1.2s ease forwards;
}
.cellimg.apareceu {
  animation: tela 1.2s ease forwards;
}
.porcen {
  font-size: 58px;
  font-weight: 900;
  text-align: center;
  color: var(--text);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.textcompro {
  font-weight: 300;
  font-size: 24px;
  color: var(--text);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.porcen.apareceu {
  animation: tela 1.2s ease forwards;
}
.textcompro.apareceu {
  animation: tela 1.2s ease forwards;
}
