* {
  margin: 0;
  padding: 0;
}

html {
  min-width: 100vw;
  min-height: 100vh;
}

body {
  background: linear-gradient(180deg, rgb(215, 236, 255) 0%, rgb(114, 178, 235) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  padding: 100%;
  min-height: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

/* Cabeçalho */

header {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  min-height: 50px;
  height: 12vh;
  max-height: 118px;
  background-color: #4DA2F9;
  font-family: 'Lato', sans-serif;
}

#Logo {
  margin-left: 1%;
  background-color: #f2f2f2;
  min-height: 45px;
  height: 10vh;
  max-height: 110px;
  aspect-ratio: 1/1;
  border-radius: 100%;
}

#imgLogo {
  width: 100%;
  height: 100%;
}

#txtLogo {
  width: 100%;
  height: 100%;
  color: black;
  font-size: 20px;
  font-weight: 400;
  word-wrap: break-word;
}

#headerButton {
  margin-right: 1%;
  width: 600px;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#headerButton a {
  height: fit-content;
  width: fit-content;
}

.loginA {
  border-radius: 25px;
  padding: 2px 4px 2px 2px;
  width: fit-content;
  height: fit-content;
  background-color: #1388FF;
  color: #f2f2f2;
}

.login{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.loginA:hover{
  background-color: #1388FF;
  
}

#imgLogin{
  background: url(../imagens/login.png);
  background-size: cover;
  background-position: center center;
  min-height: 15px;
  height: 8vh;
  max-height: 39px;
  aspect-ratio: 1/1;
}

#loginTxt {
  position: relative;
  font-size: 35px;
  font-weight: 400;
}

#atendimento,
#sobre {
  color: white;
  font-size: 35px;
  font-weight: 400;
  word-wrap: break-word;
  text-align: center;
  color: black;
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

#atendimento:hover,
#sobre:hover {
  -webkit-text-fill-color: rgb(0, 0, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(2, 0, 121);
}

/* footer / rodapé */

footer {
  position: absolute;
  bottom: 0;
  padding: 30px;
  width: 100%;
  height: 100%;
  max-height: 115px;
  border-radius: 2px;
  font-size: vwmin(1.5, 24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #404040;
  font-family: 'Lato', sans-serif;
}

footer a,
#direitosFooter {
  color: #FFFFFF;
}

#footerA {
  display: flex;
  gap: 20px;
}

#direitosFooter {
  position: relative;
  bottom: 0;
}

#mensagemTela{
  visibility: hidden;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: white;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 620px) {

  div#atendimento,
  div#sobre {
    font-size: 100%;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 0px;
    height: 100%;
    padding-top: 15px;
  }
}

@media screen and (max-width: 600px) {
  footer a,
  #direitosFooter {
    font-size: 3vw;
  }
}

@media screen and (max-width: 380px) {
  #mensagemTela{
    visibility: visible;
  }
  html{
    max-width:100vw;
    max-height: 100vh;
  }
  body{
    max-width:100vw;
    max-height: 100vh;
  }
}