* {
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
*:hover {
  transition: 0.3s;
}
body {
  color: #fff;
  padding: 15px;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-color: #010101;
}

@media(max-width:768px){
  body {
    height: 900px;
    background-position-x: center;
  }
}

/* Topo */
h1 {
  font-size: 22px;
  /*color: #af8220;*/
  font-weight: bold;
  
}
h2 {
  font-size: 16px;
  margin-top: 0;
}
h3 {
  font-size: 14px;
  font-weight: 400;
}
h2, h3 {
  color: rgb(255 255 255 / 70%);
  /* color: #efd3d5; */
}
h1, h2, h3 {
  text-shadow: 0 0 10px #00000073;
}
p {
  /*padding: 0 180px;*/
  font-size: 14px;
}
.logo img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.redes li {
  display: inline-block;
  margin: 0 5px;
  font-size: 26px;
}
.redes li a {
  color: #fff;
}
.redes li a:hover {
  color: #af8220;
  border-radius: 20px;
}

/* Descrição */
.descricao {
  display: none;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  padding: 15px;
}

/* Links */
.links li a {
  display: block;
  color: #fff;
  border-radius: 30px;
  padding: 15px;
  background: #d6a1a5;
  background: linear-gradient(190deg, #d6a1a5 0%, #b6454d 100%);
  margin-bottom: 8px;
  font-size: 18px;
  cursor: pointer;
}
.links li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #d3a23f;
  box-shadow: 0 0 20px #d3a23f;
}
.link-whatsapp:hover {
  background: #26ad5c !important;
  box-shadow: 0 0 20px rgb(38 173 92 / 80%) !important;
}
.link-instagram:hover {
  background: linear-gradient(to right, #f5a551 , #d8257d) !important;
  box-shadow: 0 0 20px rgb(216 37 125 / 80%) !important;
}
.link-facebook:hover {
  background: #4664a5 !important;
  box-shadow: 0 0 20px rgb(70 100 165 / 80%) !important;
}
.link-googlemap:hover {
  background: #e34133 !important;
  box-shadow: 0 0 20px rgb(244 67 54 / 80%) !important;
}
.link-servicos:hover {
  background: rgba(70,100,165,1) !important;
  background: linear-gradient(190deg, rgba(70,100,165,1) 100%, rgba(78,132,252,1) 100%) !important;
  box-shadow: 0 0 20px rgb(70 100 165 / 80%) !important;
}
.link-produtos:hover {
  background: rgb(171,122,46) !important;
  background: linear-gradient(190deg, rgba(171,122,46,1) 0%, rgba(221,188,109,1) 100%) !important;
}

/* Botão Shake */
.btn-shake {
  display: inline-block;
  animation-name: btn-shake;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
@keyframes btn-shake {
  from, 16%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: rotate(0deg);
  }
  1.6%, 4.8%, 8%, 11.2%, 14.4% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: rotate(-5deg);
  }
  3.2%, 6.4%, 9.6%, 12.8% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: rotate(5deg);
  }
}

/* Form */
.form-group input {
  border-radius: 20px;
  background-color: #fbfbfb;
  border-color: #e8e8e8;
}
label.error {
    position: absolute;
    right: 18px;
    top: 9px;
    color: red;
    font-size: 12px;
}
.form-group-captcha label.error {
  top: 33px;
}

/* Newsletter */
.newsletter {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 30px;
}
.newsletter:hover {
  box-shadow: 0 0 20px rgb(255 255 255 / 40%);
}
.newsletter h4 {
  color: #33348e;
  font-size: 20px;
}
.newsletter strong {
  font-weight: normal;
  color: #145a59;
}
.newsletter strong span {
  font-weight: bold;
}
.newsletter button[type='submit'] {
  background-color: #33348e;
  color: #fff;
  border-radius: 30px;
  padding: 6px 22px;
}
.newsletter button[type='submit']:hover {
  background-color: #145a59;

}


@media(max-width:768px){
  .topo .logo,
  .topo h1,
  .topo h2,
  .topo h3,
  .topo p,
  .redes,
  .links,
  .newsletter {
    zoom: 0.8;
  }
  body {
    /*background-position-x: -1360px;
    background-position-y: -222px;
    background-size: 550%;*/
  }
  .topo>p {
    font-size: 12px;
  }
  .links li a {
    font-size: 16px;
  }

}


.modal .modal-title {
  color: #b6454d;
}
.modal .modal-title i {
  color: #b6454d;
}
.modal .modal-content {
  border-radius: 30px;
}
.modal .modal-content .subtitulo-modal {
  color: #b6454d;
}
.modal .modal-content .form-group {
  position: relative;
}
.modal .modal-content a {
  color: #b6454d;
}
.modal .modal-body {
  color: #000;
}
.modal .btn.btn-primary {
  background-color: #b6454d ;
  border-color: #b6454d;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 576px){
  .modal-dialog {
    /* max-width: 800px; */
    max-width: 500px;
  }
}
