@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --cor-ezig: #1d78aa;
  --cor-primaria: #1a2c85;
  --cor-secundaria: #ffc900;
  --cor-3: #f43fc1;
  --cor-text-primaria: #fff;
  --cor-text-secundaria: #0f0f0f;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: #0f0f0f;
}

/* MARGEM */
.mg-tb-30 {
  margin: 30px 0 30px 0;
}

.mg-tb-45 {
  margin: 45px 0 45px 0;
}

.mg-tb-90 {
  margin: 90px 0 90px 0;
}

.mg-top-150 {
  margin-top: 150px;
}

/* LOADING */
.loading {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* TITULOS */
.titulo-section {
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 3.5rem;
  margin-bottom: 30px;
}

.text-color-1 {
  color: #fff!important;
}

.text-color-2 {
  color: var(--cor-secundaria);
}

.text-color-3 {
  color: var(--cor-3);
}

.text-color-4 {
  color: var(--cor-text-secundaria) !important;
}

.border-text {
  text-shadow: -1px 0 rgb(98 98 98), 0 1px rgb(98 98 98), 1px 0 rgb(98 98 98), 0 -1px rgb(98 98 98);
}

/* TEXT */
.text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* BOTOES */
.btn {
  background-color: #1d78aa;
  border: 1px solid #858585;
  padding: 15px;
  font-size: 14px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  transition: All 1s !important;
  font-weight: bold;
  margin-bottom: 20px;;
}

.btn i {
  margin-left: 5px;
}

.btn-1 {
  background-color: #1d78aa;
}

.btn-1:hover {
  background-color: #fff;
  color: #212529;
}

.btn-2 {
  background-color: #fff;
  color: var(--cor-text-secundaria);
}

.btn-2:hover {
  background-color: #1d78aa;
  color: #fff;
}
.btn-3 {
  background-color: var(--cor-text-primaria);
  color: var(--cor-ezig);
}

.btn-3:hover {
  background-color: #1d78aa;
  color: #fff;
}

.example-1 {
  animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px var(--cor-ezig);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}

/* EFEITO SOMBRA */
.efeito-sombra {
  background-image: url(../images/sombra.png);
  background-position-y: 80%;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-bottom: 75px;
}

/* SECTION */
#somos,
#servicos,
#portfolio,
#depoimentos,
#contato {
  overflow: hidden;
}

/* NAV */
.navbar a {
  color: #fff !important;
}

.navbar .logo-nav {
  width: 90px;
}

.navbar-brand {
  background-color: #171717;
  border-radius: 50px;
  padding: 11px 40px;
}

.navbar-nav {
  background-color: #171717;
  border-radius: 50px;
  padding: 20px 40px;
}

.navbar .contato-nav {
  background-color: #1d78aa;
  border: 1px solid #858585;
  border-radius: 50px;
  padding: 20px 40px;
  color: #fff;
  text-decoration: none;
}

.navbar-brand,
.navbar-nav,
.navbar .contato-nav {
  -webkit-box-shadow: 0px 0px 53px 29px rgba(15, 15, 15, 1);
  -moz-box-shadow: 0px 0px 53px 29px rgba(15, 15, 15, 1);
  box-shadow: 0px 0px 53px 29px rgba(15, 15, 15, 1);
}

.navbar-nav li a {
  padding: 0 30px !important
}
.navbar-light .navbar-toggler {
  color: rgb(251 251 251);
  border-color: rgb(255 255 255);
  background: #fff;
}
/* BANNER */

#inicio h2 {
  font-weight: bold;
  font-size: 1.5rem;
}
.img-colunas {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 15px;
}

.img-colunas img {
  width: 25%;
  border-radius: 35px;
  padding: 0 10px;
}

.imgs-left {
  justify-content: left;
}

.imgs-right {
  justify-content: right;
}

/* EFEITO BANNER */
.efeito-img-1 {
  transform: rotate(-5deg);
}

.efeito-img-2 {
  transform: rotate(5deg);
}

.efeito-img-1,
.efeito-img-2 {
  transition: all 1s;
}

.efeito-img-1:hover {
  transform: rotate(0deg);
}

.efeito-img-2:hover {
  transform: rotate(0deg);
}

.efeito-img-1:hover figcaption,
.efeito-img-2:hover figcaption {
  font-size: 3rem;
  margin-top: -54px;
  text-shadow: 2px 2px var(--cor-text-secundaria);
}

.efeito-img-1 img,
.efeito-img-2 img {
  width: 90%;
}

.efeito-img-1 figcaption,
.efeito-img-2 figcaption {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  margin-top: -27px;
  transition: all 1s;
}
.banner-efect {
  background-image: url(../images/mira.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center 42%;
  overflow: hidden;
  padding: 10px 0;
}
.circle {
  position: relative;
  animation: rodar 40s ease-in-out infinite;
}

.circle div {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  transition: 1s all;
}

.circle img:nth-of-type(1) {
  width: 90%;
  margin: 0 auto;
  display: block;
  z-index: 1;
  position: relative;
}
.circle img:nth-of-type(2) {
  position: absolute;
  top: 9%;
  left: 20.7%;
  animation: rodar-verse 40s ease-in-out infinite;
  width: 60%;
}

.circle div:nth-of-type(1) {
  top: 57.3%;
  left: 8.5%;
}
.circle div:nth-of-type(2) {
  top: 15.1%;
  left: 19.1%;
}
.circle div:nth-of-type(3) {
  top: 87.5%;
  left: 35.1%;
}
.circle div:nth-of-type(4) {
  top: 76.6%;
  right: 18.8%;
}
.circle div:nth-of-type(5) {
  top: 34.4%;
  right: 7.9%;
}
.circle div:nth-of-type(6) {
  top: 3.8%;
  right: 36.1%;
}
.circle div img {
  width: 45px;
  animation: rodar-verse 40s ease-in-out infinite;
}
@keyframes rodar {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes rodar-verse {
  0% {
    transform: rotate(360deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* QUEM SOMOS */
#somos img {
  border-radius: 50px;
  margin-bottom: 25px;
}
/* SERVICOS */
.card-servicos {
  border-radius: 50px;
  border: 1px solid #ffffff;
  background: #1d78aa;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 357px;
  justify-content: space-around;
  margin: 0 15px;
}

.card-servicos .icon {
  background-color: #171717;
  height: 100px;
  width: 100px;
  margin: 30px auto;
  border-radius: 100%;
  padding: 10px;
}

.card-servicos figure {
  border: 3px solid #fff;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-servicos figure img {
  width: 45px;
  margin: 0;
}

.card-servicos h2 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.card-servicos p {
  text-align: center;
}


/* PROMOCIONAL */
.contagem {
  display: flex;
}

.contagem > div {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.counter, .text-counter {
  background: radial-gradient(circle, rgba(212,212,212,0.6488970588235294) 0%, rgba(212,212,212,-0.35) 100%);
  text-align: center;
  padding: 10px;
  border-radius: 25px;
}
.contagem >div:nth-child(1) > div {
  background: radial-gradient(circle, rgb(43 119 161) 0%, rgba(0 0 0 / 68%) 100%);
}
.contagem >div:nth-child(2) > div {
  background: radial-gradient(circle, rgb(43 119 161) 0%, rgba(0 0 0 / 68%) 100%);
}
.contagem >div:nth-child(3) > div {
  background: radial-gradient(circle, rgb(30 85 116) 0%, rgba(0 0 0 / 68%) 100%);
}
.contagem >div:nth-child(4) > div {
  background: radial-gradient(circle, rgb(15 41 56) 0%, rgba(0 0 0 / 68%) 100%);
}
.counter span {
  font-size: 2.8rem;
  font-weight: bold;
}
.text-counter p {
  margin: 0;
  color: #fff;
}
/* FAQ */
.accordion-item {
  margin-bottom: 20px !important;
  border-radius: 25px 25px 0px 0px !important;
  overflow: hidden;
  border: none;
}

button.accordion-button {
  background-color: #fff !important;
  color: #1d78aa !important;
  border-radius: 25px !important;
  border: 1px solid #858585;
}

.accordion-item {
  background: none;
}

/* DEPOIMENTO */
/* .slick-slide img,  .slick-slide h3,  .slick-slide .rating,  .slick-slide .depoimento{
    transform: scale(0.7);
    transition: all 1s
}

.slick-active.slick-center img,  .slick-active.slick-center h3,  .slick-active.slick-center .rating,  .slick-active.slick-center .depoimento {
    transform: scale(1.1);
} */

.perfil-depoimento {
  transform: scale(0.7);
  transition: all 1s
}

.perfil-depoimento.slick-slide.slick-current {
  transform: scale(1.1);
}

.perfil-depoimento img {
  border-radius: 25px;
  margin: 10px auto 25px;
}

.rating i {
  color: #ffc900;
  font-size: 1.8rem;
}

.rating {
  text-align: center;
}

.perfil-depoimento h3 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.depoimento {
  color: #fff;
  font-size: 14px;
  text-align: justify;
  font-weight: 500;
}

.perfil-depoimento {
  padding: 15px 25px;
}

span.aspas {
  background-image: url(../images/aspas.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  height: 30px;
  width: 30px;
  display: inline-block;
}

.depoimento .aspas:first-child {
  transform: rotate(181deg);
}

.depoimento .aspas:last-child {
  float: inline-end;
}


/* CONTATO */
#contato {
  overflow: hidden;
}
form input,
form select,
form textarea {
  border-radius: 25px !important;
}

form label {
  color: #fff;
}

.map {
  border-radius: 50px;
  overflow: hidden;
  margin-top: 32px;
}

.info-contato a {
  color: #fff;
}

.info-contato i {
  color: #fff;
  padding: 10px;
  border-radius: 100%;
  border: 1px solid;
  margin-right: 10px;
  margin-bottom: 17px;
}

.info-contato a {
  text-decoration: none;
}
.form-check a {
  color: #fff;
}
.enviar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.submit-button {
  outline: none;
  position: relative;
  bottom: 0;
  height: 50px;
  width: 220px;
  padding: 0;
  border: 0px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  color: #FBFFDF;
  background-color: #3EA5FE;
  box-shadow: 0px 0px 25px 0px rgba(62, 165, 254, 0.5);
  transition: all .3s ease-in;
}

.submit-button-unclickable {
  pointer-events: none;
}

.submit-button-success {
  background-color: #6AC631;
  box-shadow: 0px 0px 25px 0px rgba(44, 220, 53, 0.5);
}

.submit-button-failure {
  background-color: #A81313;
  box-shadow: 0px 0px 25px 0px rgba(168, 38, 36, 0.5);
}

.button-inner {
  display: flex;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  height: 100%;
  line-height: 3em;
}

.button-text {
  transition: all .3s ease-in;
  opacity: 1;
}

.status-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;

  width: 44px;
  height: 44px;

  border-radius: 50px;

  position: absolute;
  right: 3px;

  background-color: #2184E7;

  transition: all .3s ease-in;
}

.status-badge-success {
  background-color: #52AD29;
}

.status-badge-failure {
  background-color: #661716;
}

.status-badge-expanded {
  width: 50px;
  height: 50px;
  right: 0px;
}

.badgee {
  vertical-align: 0;
  position: absolute;
  transition: all .3s ease-in;
  opacity: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spin-badge {
  animation: spin 1s ease infinite;
}

.button-collapsed {
  width: 50px;
}

.translucent {
  opacity: 0;
}

.opaque {
  opacity: 1;
}

.submit-button-failure .button-inner, .submit-button-success .button-inner {
  padding: 0 51px 0 20px;
}

.submit-button-failure, .submit-button-success {
  width: auto;
}
.erro-notifica {
  border-radius: 30px;
  background: #dc3545;
  text-align: center;
  padding: 10px;
  color: #fff;
}
/* FOOTER */

#footer h2 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
}

#footer .btn {
  margin-bottom: 15px;
}

.menu-footer li a {
  text-decoration: none;
  color: #cdcdcdcc;
  font-weight: 600;
}

img.logo-footer {
  margin-bottom: 30px;
}

.menu-footer {
  padding: 0;
  list-style: none;
}

.footer-social {
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-social li {
  border-radius: 100%;
  border: 1px solid rgb(196, 196, 196);
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 29px;
  font-size: 16px;
  margin: 0px 5px 0 0;
}

.footer-social li i {
  color: #fff;
}

.selos {
  align-items: flex-end;
}

.selos img {
  margin-bottom: 15px;
  width: 130px;
}

/* WHATSAPP*/

.whatsapp-main {
  display: inline-block;
  position: fixed;
  bottom: 0px;
  z-index: 9999;
  left: auto;
  right: -14px;
  bottom: 105px;
}

.whatsapp-wrapper {
  box-shadow: rgb(0 0 0 / 10%) 0px 12px 24px 0px;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
  background-color: rgb(255, 255, 255);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  touch-action: auto;
  margin-bottom: 30px;
  position: fixed;
  bottom: 60px;
  left: auto;
  right: 0px;
  margin-right: 20px;
}

.close_whatsapp {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  outline: transparent;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: #fff;
  border-radius: 100%;
}

.close_whatsapp::before {
  transform: rotate(45deg);
}

.close_whatsapp::after {
  transform: rotate(-45deg);
}

.close_whatsapp::before,
.close_whatsapp::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: rgb(29, 33, 41);
  display: block;
  border-radius: 2px;
}

.whatsapp-header {
  background: #1d78aa;
  color: rgb(255 255 255);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 24px 20px;
}

.header-info {
  margin-left: 16px;
  margin-right: 16px;
}

.support-avatar {
  width: 52px;
  height: 52px;
  display: block;
  position: relative;
  flex-shrink: 0;
}

.support-avatar::before {
  content: "";
  bottom: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  background-color: rgb(74, 213, 4);
  display: block;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
}

.avatar-wrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: #fff;
}

.avatar-img {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/robo-whats.png) !important;
}

.avatar-img::after {
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  inset: 0px;
  position: absolute;
  content: "";
  overflow: hidden;
}

.whatsapp-background {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
  position: relative;
  overflow: auto;
  max-height: 382px;
}

.whatsapp-background::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-image: url(../images/whatsapp.jpg);
  background-size: 100%;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.loading-animation {
  background-color: rgb(255, 255, 255);
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-left: 10px;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgb(0 0 0 / 13%) 0px 1px 0.5px;
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background-color: #cbcbcb;
  color: #cbcbcb;
  box-shadow: 9999px 0 0 -5px #cbcbcb;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: .25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background-color: #cbcbcb;
  color: #cbcbcb;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px #cbcbcb;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px #cbcbcb;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: .5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #cbcbcb;
  }

  30% {
    box-shadow: 9984px 0 0 2px #cbcbcb;
  }

  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #cbcbcb;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #cbcbcb;
  }

  30% {
    box-shadow: 9999px 0 0 2px #cbcbcb;
  }

  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #cbcbcb;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #cbcbcb;
  }

  30% {
    box-shadow: 10014px 0 0 2px #cbcbcb;
  }

  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #cbcbcb;
  }
}

.wloader {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: rgb(182, 181, 186);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
}

.whatsapp-message-wrapper {
  display: none;
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  transform-origin: center top;
  z-index: 2;
  box-shadow: rgb(0 0 0 / 13%) 0px 1px 0.5px;
  margin-top: 4px;
  max-width: calc(100% - 66px);
}

.whatsapp-message-wrapper::before {
  position: absolute;
  background-image: url("https://i.ibb.co/hRLp4rM/chat-edge.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}

.chat-body-wrapper {
  width: 100% !important;
}

.whatsapp-chat-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.whatsapp-chat-message {
  font-size: 14px;
  line-height: 19px;

  margin-top: 4px;
  color: rgb(17, 17, 17);
}

.whatsapp-chat-message p {
  margin: 0px;
}

.whatsapp-message-container {
  box-sizing: border-box !important;
  outline: none !important;
}

.whatsapp-chat-time {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}

.whatsapp-btn {
  padding: 8px 12px;
  border-radius: 24px;
  border: none;
  background: rgb(14, 193, 47);
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 20px;
  overflow: hidden;
  appearance: none;
  text-decoration: none;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
  transform: scale(1);
  background-color: rgb(0, 0, 0);
  z-index: 0;
  transition: all 0.2s ease 0s;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  bottom: -5px;
}

.whatsapp-send-icon-small {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: rgb(255, 255, 255);
  z-index: 1;
}

.chat-button-text {
  margin-left: 8px;
  margin-right: 8px;
  z-index: 1;
  color: rgb(255, 255, 255);
}

.whatsapp-popup-button {
  height: 64px;
  box-shadow: rgb(0 0 0 / 15%) 0px 3px 12px;
  border-radius: 50%;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  outline: transparent;
  background-color: rgb(14, 193, 47);
  margin-bottom: 20px;
  margin-right: 20px;
  margin-left: 20px;
  width: 64px;
}

.animation-whatsapp {
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgb(97 97 97 / 56%);
    transform: translatey(0px);
  }

  50% {
    box-shadow: 0 25px 15px 0px rgba(97 97 97);
    transform: translatey(-20px);
  }

  100% {
    box-shadow: 0 5px 15px 0px rgba(97 97 97 / 56%);
    transform: translatey(0px);
  }
}

.whatsapp-popup-button::before,
.whatsapp-popup-button::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(14, 193, 47);
  inset: -2px;
  border-radius: 500px;
  opacity: 0;
  z-index: 0;
}

.whatsapp-notify {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 0, 0);
  display: block;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  right: 4px;
  top: 4px;
}

@keyframes showhide {
  from {
    transition: visibility 0s linear 0.7s, opacity 0.7s ease-in-out;
  }
}

@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}

.hide-whatsapp {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.show-whatsapp {
  display: flex;
  animation-name: showchat;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
  background-color: #171717;
}

/*  CANVAS */
#gradient-canvas {
  width: 100% !important;
  height: 100%;
  --gradient-color-1: #030304;
  --gradient-color-2: #1d78aa;
  --gradient-color-3: #0f0f0f;
  --gradient-color-4: #1d78aa;
  z-index: -1 !important;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(255 255 255 / 26%);
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 15%);
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 30px;
  font-family: sans-serif;
  padding: 30px 40px;
  text-align: center;
  line-height: 1.4;
}

/* PORTFOLIO */
.gallery {
  display: flex;
  flex-wrap: wrap;
  /* Compensate for excess margin on outer gallery flex items */
  margin: -1rem -1rem;
}

.gallery-item {
  /* Minimum width of 24rem and grow to fit available space */
  border-radius: 50px;
  flex: 1 0 24rem;
  /* Margin value should be half of grid-gap value as margins on flex items don't collapse */
  margin: 1rem;
  box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.gallery-image:hover {
  transform: scale(1.15);
}

@supports (display: grid) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-gap: 2rem;
  }

  .gallery,
  .gallery-item {
    margin: 0;
  }
}

/* SETA UP */

.seta-up {
  position: fixed;
  z-index: 9999;
  right: 15px;
  bottom: 79px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background-color: #1d78aa;
  border: 1px solid #858585;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 20px;
  font-size: 20px;
  display: flex;
  align-content: center;
  justify-content: center;

}

.seta-up i {
  animation: up-down 3s ease-in-out infinite;
}

@keyframes up-down {
  0% {
    transform: translatey(12px);
  }

  50% {
    transform: translatey(6px);
  }

  100% {
    transform: translatey(12px);
  }
}

/* COOKIES */

.box-cookies {
  background: #fff;
  border-radius: 50px;
  position: fixed;
  width: 75%;
  bottom: 0;
  z-index: 9999;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  -webkit-box-shadow: 0px 0px 53px 29px rgba(15, 15, 15, 1);
  -moz-box-shadow: 0px 0px 53px 29px rgba(15, 15, 15, 1);
  box-shadow: 0px 0px 53px 29px rgba(15, 15, 15, 1);
  font-size: 14px;
  text-align: center;
  justify-content: space-between;
}
.box-cookies.accept-ezig-go {
  display: none!important;
}

.box-cookies img {
  width: 100px;
}
.box-cookies button {
  border-radius: 50px;
  background: #195a7e;
  color: #fff;
  padding: 10px;
  border: none;
}