* {
  box-sizing: border-box;
}

body,
html {
  margin: 0px;
  overflow: auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  padding: 10px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #005ba1;
}

.container {
  background-color: #fff;
  max-width: 500px;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e3e6f0;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  overflow: inherit;
  padding: 20px 10px;
}

@media (max-width: 500px) {
  .container {
    margin: 40px auto;
    padding: 25px 5px;
  }
}

@media (max-width: 350px) {
  .container {
    margin: 20px auto;
    padding: 10px 4px;
  }
}

/* IMAGEM LOGO PRILL */

.imagemLogo {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.imagemLogo div img {
  max-width: 120px;
  aspect-ratio: attr(width) / attr(height);
}

/* TEXTO FIXO */

@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i");

.textoFixo {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  display: inline-block;
  font-size: 47px;
  color: #005ba1;
}

@media (max-width: 500px) {
  .textoFixo {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    display: inline-block;
    font-size: 47px;
    color: #005ba1;
  }
}

/* ANIMACAO SLIDER */

.slider {
  height: 20px;
  overflow: hidden;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
}

.slider div {
  padding: 10px 0px;
  text-align: center;
  margin-bottom: 20px;
}
.confianca {
  background-color: #006600;
  /*margin-top: -490px;*/
  animation: slide 8s linear infinite;
}

.inovacao {
  background-color: #9E0096;
}

.equipe {
  background-color: #8A4500;
}

.responsabilidade {
  background-color: #0057AD;
}

.resultado {
  background-color: #59560D;
}

.qualidade {
  background-color: #B30000;
}
@keyframes slide {
  0% {
    margin-top: -400px;
  }
  4% {
    margin-top: -311px;
  }
  18% {
    margin-top: -311px;
  }
  27% {
    margin-top: -252px;
  }
  36% {
    margin-top: -252px;
  }
  45% {
    margin-top: -194px;
  }
  54% {
    margin-top: -194px;
  }
  63% {
    margin-top: -136px;
  }
  72% {
    margin-top: -136px;
  }
  81% {
    margin-top: -77px;
  }
  88% {
    margin-top: -77px;
  }
  95% {
    margin-top: -19px;
  }
  100% {
    margin-top: -19px;
  }
}

@media (max-width: 800px) {
  .slider {
    height: 20px;
  }
  @keyframes slide {
    0% {
      margin-top: -400px;
    }
    4% {
      margin-top: -311px;
    }
    18% {
      margin-top: -311px;
    }
    27% {
      margin-top: -252px;
    }
    36% {
      margin-top: -252px;
    }
    45% {
      margin-top: -194px;
    }
    54% {
      margin-top: -194px;
    }
    63% {
      margin-top: -136px;
    }
    72% {
      margin-top: -136px;
    }
    81% {
      margin-top: -77px;
    }
    88% {
      margin-top: -77px;
    }
    95% {
      margin-top: -19px;
    }
    100% {
      margin-top: -19px;
    }
  }
}

/* BOTÃO LOGIN GOOGLE */

.botaoLogin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #858796;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.35rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-google {
  color: #fff;
  background-color: #EB1700;
  border-color: #fff;
  font-size: 0.8rem;
  border-radius: 10rem;
  padding: 0.75rem 1rem;
  font-weight: 600;
}
