@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

/* Menu - Navbar */
header {
  position: fixed;
  top: 0px;
  left: 0;
  padding: 0 50px;
  background: #ffffff;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn,
      #474747,
      #515151,
      #686868,
      #ababab,
      #c3c3c3);
  border-image-slice: 1;
}

.logo {
  float: left;
  display: inline-flex;
}

.logo img {
  margin-top: 5px;
  width: 65px;
}

.logo h6 {
  font-weight: bold;
  margin-top: 20px;
}

.logo p {
  font-size: .7em;
  margin-top: -8px;
}

header nav {
  float: right;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  transition: 0.2s;
}

header nav ul li {
  list-style: none;
  position: relative;
}

header nav ul li i {
  font-size: 0.7em;
}

header nav ul li ul {
  position: absolute;
  left: 0;
  background: #262626;
  display: none;
}

header nav ul li.active ul {
  display: block;
}

header nav ul li ul li {
  display: block;
  width: 250px;
}

header nav ul li a {
  height: 70px;
  line-height: 70px;
  padding: 0 20px;
  color: #262626;
  font-weight: 650;
  text-decoration: none;
  display: block;
  font-size: 1em;
}

header nav ul li a:hover {
  color: #d6a94b;
  text-decoration: none;
  background: #262626;
}

header nav ul li ul a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

header nav ul li ul a:hover {
  color: #fff;
  text-decoration: none;
  background: #5e5e5e;
}

.menu-toggle {
  color: #464646;
  float: right;
  line-height: 60px;
  font-size: 24px;
  display: none;
}

/* Rodapé (Footer) */
.footer {
  background-image: url(../img/mapa.png);
  background-repeat: no-repeat;
  background-position: 20px;
}

.rodape {
  margin: auto;
  background-color: rgba(0, 0, 0, 0.893);
  padding: 30px 0;
}

.roda p {
  color: #fff;
  font-size: 0.9em;
  margin-top: -10px;
}


.roda h4 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
}

.roda p {
  color: #d3cfcf;
}

.roda .social-links a {
  display: inline-block;
  height: 35px;
  width: 35px;
  background-color: #65656573;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 35px;
  border-radius: 10%;
  border: 1px solid #6b6a6a;
  color: #ffffff;
  transition: all 0.5s ease;
}

.roda .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.roda img {
  width: 100%;
}

.roda .newsletter {
  background-color: rgba(0, 0, 0, 0.477);
  height: auto;
  margin-top: 20px;
  padding-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
}

.roda .newsletter p {
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.roda .newsletter .subescreva {
  color: #d3cfcf;
  font-size: .7em;
  font-weight: 400;
}

#newsletter-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

#newsletter-form button {
  width: 100%;
  padding: 5px;
  background-color: #976d23;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

#newsletter-form button:hover {
  background-color: #6b4e1d;
}

#newsletter-form .error {
  color: #d13232;
  margin-top: 3px;
  margin-bottom: 3px;
  font-size: .8em;
}

/* Direitos Autorais*/
.author {
  background-color: #0e0e0e;
  padding: 20px;
}

.author p {
  text-align: center;
  color: #fff;
  font-size: 0.8em;
  line-height: 25px;
}

.author p a {
  color: #fff;
}

/* Botão WhatsApp  */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background: #00a63c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Imagem do WhatsApp */
.whatsapp-float .bi {
  font-size: 2em;
  border-radius: 50%;
  color: #fff;
}

/* Efeito ao passar o mouse */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Animação pulsante */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #00a63c;
  animation: pulse 2s infinite;
  box-sizing: border-box;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Texto ao passar o mouse */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #a77c31;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9em;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Responsive Telas Smartphone, tablet, tv, etc. */
@media (max-width: 991px) {

  header {
    padding: 0 20px;
    height: 70px;
  }

  .menu-toggle {
    display: block;
    z-index: 900;
    margin-right: -5px;
    margin-top: 5px;
  }

  header nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 60px);
    background: #000;
    top: 60px;
    left: -100%;
    transition: 0.5s;
  }

  header .logo {
    height: 60px;
    line-height: 60px;
    float: left;
  }

  .logo img {
    margin-top: -10px;
    width: 100px;
  }

  header nav ul li a {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    color: #d6a94b;
    font-weight: 600;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(169, 169, 169, 0.2);
  }

  header nav.active {
    left: 0;
  }

  header nav ul {
    display: block;
    text-align: center;
  }

  header nav ul li.active ul {
    position: relative;
    background: #f8f8f8;
  }

  header nav ul li ul li {
    width: 100%;
  }

  header nav ul li ul a {
    color: #fff;
    background: #464646;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  header nav ul li ul a:hover {
    color: #fff;
    background: #464646;
  }
}

/* Responsive Tela Smartphone */
@media screen and (max-width: 768px) {
  .area {
    top: 0;
  }

  .logo {
    float: left;
    display: inline-flex;
  }

  .logo img {
    margin-top: 5px;
    margin-left: -20px;
    width: 50px;
  }

  .logo h6 {
    font-weight: bold;
    margin-top: 20px;
    font-size: .8em;
  }

  .logo p {
    font-size: .5em;
    margin-top: -30px;
  }

  /* Rodapé (Footer) */
  .footer {
    background-image: url(../img/mapa.png);
    background-repeat: no-repeat;
    background-position: 20px;
  }

  .rodape {
    margin: auto;
    background-color: rgba(0, 0, 0, 0.893);
    padding: 30px 0;
  }

  .roda p {
    color: #fff;
    font-size: 0.9em;
    margin-top: -10px;
  }


  .roda h4 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-top: 30px;
  }

  .roda p {
    color: #d3cfcf;
  }

  .roda .social-links a {
    display: inline-block;
    height: 35px;
    width: 35px;
    background-color: #65656573;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 35px;
    border-radius: 10%;
    border: 1px solid #6b6a6a;
    color: #ffffff;
    transition: all 0.5s ease;
  }

  .roda .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
  }

  .roda img {
    width: 50%;
  }

  .roda .newsletter {
    background-color: rgba(0, 0, 0, 0.356);
    height: 250px;
    margin-top: 20px;
    padding: 30px 20px;
  }

  .roda .newsletter p {
    color: #fff;
    font-weight: 600;
  }

  .roda .newsletter .subescreva {
    color: #d3cfcf;
    font-size: .8em;
    font-weight: 400;
  }

  #newsletter-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

  #newsletter-form button {
    width: 100%;
    padding: 5px;
    background-color: #976d23;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
  }

  #newsletter-form button:hover {
    background-color: #6b4e1d;
  }

  #newsletter-form .error {
    color: #d13232;
    margin-top: 3px;
    margin-bottom: 3px;
    font-size: .8em;
  }

  /* Direitos Autorais*/
  .author {
    background-color: #0e0e0e;
    padding: 20px;
  }

  .author p {
    text-align: center;
    color: #fff;
    font-size: 0.8em;
    line-height: 25px;
  }

  .author p a {
    color: #fff;
  }

  /* Botão WhatsApp  */
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float .bi {
    font-size: 2em;
  }

  .whatsapp-tooltip {
    display: none;
  }

}