* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header menu */

#Inicio .menu {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  background-color: #65c9b6;
}

#Inicio .menu img {
  width: 250px;
  height: auto;
  margin-top: 10px;
  margin-left: 200px;
  object-fit: cover;
}

#Inicio .menu ul {
  float: right;
}

#Inicio .menu ul li {
  display: inline-block;
  line-height: 60px;
  padding: 10px;
  margin-top: 8px;
}

#Inicio .menu ul li a {
  position: relative;
  color: #fff;
  font-size: 20px;
  padding-bottom: 8px;
  right: 200px;
}

#Inicio .menu ul li a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: #1b1b28;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s linear;
}

#Inicio .menu ul li a:hover {
  color: #1b1b28;
  transition: transform 0.4s;
}

#Inicio .menu ul li a:hover:before {
  transform: scaleX(1);
  transform-origin: center;
}

/*sub menu*/

/* Divisão entre header e body. */

/*Section inicio*/

.sec {
  display: flex;
  width: 100%;
  height: 600px;
  justify-content: space-around;
}

.saiba {
  margin: 150px 0;
}

.saiba h1 {
  font-size: 28px;
  width: 300px;
  text-align: center;
  color: black;
}

.saiba button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #65c9b6;
  border-color: transparent;
  border-radius: 15px;
  font-size: 20px;
  color: #fff;
  width: 200px;
  height: 50px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 8px 6px #4e4e4e21;
  transition: 0.6s;
}

.saiba button a {
  color: #fff;
}

.saiba button:hover {
  background-color: #1b1b28;
  box-shadow: 8px 6px #65c9b7c0;
  border-radius: 25px;
  transition: 0.8s;
}

.saiba-1 img {
  width: 590px;
}

/*divisão*/

hr {
  background-color: #707070;
  width: 100%;
  height: 2px;
}

/*Main*/

main {
  width: auto;
  height: auto;
  margin-bottom: 30px;
}

main .cont {
  display: flex;
  justify-content: center;
}

main .cont svg {
  margin-right: 40px;
  margin-top: 30px;
  margin-bottom: 50px;
}

main p {
  margin-top: 20px;
  text-align: justify;
  font-size: 22px;
  padding: 0px 200px;
  color: #444444;
}

/* Parceiros*/

.parceiros {
  width: 100%;
  height: auto;
}

.parceiros img {
  display: block;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.parceiros h2 {
  position: relative;
  text-align: center;
  font-size: 28px;
  width: auto;
  top: -75px;
  left: 0px;
  color: #fff;
}

.grupo {
  width: auto;
  height: auto;
  display: flex;
  justify-content: space-around;
  margin-bottom: 80px;
}

.g-empresa img {
  width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.g-empresa2 img {
  width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*Localização*/

.local {
  width: 100%;
  height: 800px;
}

.local img {
  display: block;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.local h2 {
  position: relative;
  text-align: center;
  width: auto;
  font-size: 40px;
  top: -75px;
  color: #fff;
}

.local .googlemap {
  width: 80%;
  display: block;
  justify-content: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 5px 0px #4e4e4e21;
  transition: 0.4s;
}

.local .googlemap:hover {
  width: 80%;
  display: block;
  justify-content: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0px;
  box-shadow: 5px 0px 10px 0px #65c9b6;
  transition: 0.5s;
}

.endereço {
  display: flex;
  justify-content: center;
  width: auto;
  margin-bottom: 50px;
}

.endereço p {
  margin-top: 15px;
  padding: 0 10px;
  color: #444444;
}

.endereço img {
  width: 40px;
}

/* Rodapé footer */

.Footer {
  background-color: #65c9b6;
  line-height: 1.5;
}

.Footer .Container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 200px;
}

.Footer .Container .Row {
  display: flex;
  flex-wrap: wrap;
}

.Footer .Container .Row .Footer-col ul {
  list-style: none;
  margin-bottom: 30px;
}

.Footer .Container .Row .Footer-col {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 10px 100px;
}

.Footer .Container .Row .Footer-col h3 {
  width: 180px;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
  padding-top: 30px;
}

.Footer .Container .Row .Footer-col h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #1b1b28;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.Footer .Container .Row .Footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.Footer .Container .Row .Footer-col ul li a {
  font-size: 16px;
  width: 40px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.Footer .Container .Row .Footer-col ul li .Etica {
  width: 250px;
}

.Footer .Container .Row .Footer-col ul li a:hover {
  color: #1b1b28;
  padding-left: 8px;
}

.Footer .Container .Row .Footer-col .Social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.205);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.Footer .Container .Row .Footer-col .Social-links a:hover {
  color: #fff;
  background-color: #1b1b28;
}
