:root{
  --cor-principal: #0085ca;
  --branco: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #333333;
}

body {
  background-color: var(--branco); 
}

.containerPrincipal{
  display: grid;
  width: 100%;
  min-height: calc(100vh - 48px - 45px - 234px);
  grid-template-columns: 1fr;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 45px;
  gap: 15px;
}

.toComElmar{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.toCom{
  max-width: 150px;
  height: fit-content;
}

.elmarLogo img{
  max-width: 240px;
  height: auto;
}

.socialElmar{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-content: center;
}

.socialElmar a{
  display: flex;
  align-items: center;
  background-color: var(--cor-principal);
  padding: 12px 24px;
  border-radius: 6px;
  color: var(--branco);
  gap: 6px;
  transition: ease-in .2s;
}

.socialElmar a:hover{
  background-color: #2c4491;
}

.fbLogo{
  width: 24px;
}

.fotoElmar{
  display: flex;
}

.fotoElmar img{
  align-self: flex-end;
  max-width: 675px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rodape {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  display: grid;
  height: fit-content;
  justify-content: center;
  background-color: var(--cor-principal);
}

.govSen{
  width: 100vw;
  height: 234px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  background-color: #ffffff;
  transition: ease-out .2s;
}

.govSen a:hover{
  transform: scale(1.1);
}

.logoGovSen{
  max-width: 105px;
  width: 100%;
  height: auto;
  padding: 30px 0;
  object-fit: cover;
}

.cnpjRodape p{
  font-size: 0.9rem;
  display: flex;
  width: auto;
  height: 48px;
  color: var(--branco);
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 700px){
  .govSen{
    max-height: 195px;
  }
}

@media screen and (max-width: 550px){
  .containerPrincipal{
    min-height: calc(100vh - 48px - 45px - 200px);
    gap: 24px
  }
  .toComElmar{
    flex-direction: column;
  }
  .elmarLogo img{
    max-width: 300px;
  }
  .socialElmar{
    flex-direction: column;
    gap: 8px;
  }
  .socialElmar a{
    justify-content: center;
  }
  .fotoElmar{
    padding-top: 0;
  }
  .logoGovSen{
    max-width: 90px;
    padding: 15px 0;
  }
  
}