.imgLogo {
  width: 150px;
}

.btnOffcanvas {
  font-size: 25px;
  padding: 0;
}

.titleTop {
  font-weight: 600;
  font-size: 2.5em;
}

body {
  background-color: #16161E;
  font-family: Poppins, sans-serif;
}

@media (min-width: 1200px) {
  .titleTop {
    font-size: 4em;
  }
}

/* Efeito de "flutuação suave" para uma imagem com a classe .flutuando */

.flutuando {
  display: inline-block;
  animation: flutuar 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes flutuar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Botão com efeito de preenchimento da esquerda para a direita */

.btnBlue {
  position: relative;
  overflow: hidden;
  color: #16161e;
  background-color: #41c1ee;
  border: none;
  transition: color 0.4s ease;
  padding: 20px 30px;
  border-radius: 8px;
}

.btnBlue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #0056b3;
  z-index: 1;
  transition: width 0.4s ease;
}

.btnBlue span {
  position: relative;
  z-index: 2;
}

.btnBlue:hover::before {
  width: 100%;
}

.btnBlue:hover {
  color: #fff;
}

.logosClientes img {
  width: 120px;
  opacity: 0.9;
}

.swiper-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.bgSobre {
  border-radius: 15px;
  background: url("../../assets/img/bgSobre.jpg") center / cover no-repeat;
}

.titleSobre {
  color: #16161e;
  font-weight: bold;
}

.pSobre {
  color: #16161e;
}

.btnSobre {
  color: #16161e;
  border-style: solid;
  border-color: #16161e;
  padding: 15px 30px;
}

.btnSobre:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.imgSobre {
  margin-top: -5em;
}

.iconBenef {
  background-color: #333341;
  padding: 15px 15px;
  border-radius: 9px;
  margin-bottom: 15px;
}

.iconBenef svg {
  font-size: 23px;
  color: #41c1ee;
}

.card {
  background-color: #262630;
  border: none;
  height: 100%;
  border-radius: 15px;
}

.pBenef {
  color: #9292a2;
  margin: 0;
  font-size: 14px;
}

.pDescript {
  color: #E0E0E0;
  font-size: 13px;
}

.pCargo {
  font-size: 12px;
  margin: 0;
  color: #41c1ee;
}

.iconPerfil {
  background-color: #333341;
  padding: 6px 9px;
  border-radius: 36px;
}

.iconPerfil svg {
  font-size: 18px;
  color: #41c1ee;
}

.iconDepo svg {
  color: #41c1ee;
  font-size: 24px;
}

.PositivoDepo {
  color: #888585;
  font-size: 13px;
  margin: 0;
}

.PositivoDepo svg {
  color: #41c1ee;
}

.listaBenePlano svg {
  color: #41c1ee;
  font-size: 26px;
}

.tipoPlano p {
  color: #41c1ee;
  text-transform: uppercase;
}

.titlePlan p {
  color: #646477;
}

.valorSetup {
  font-weight: bold;
}

.valorMensal {
  color: #41c1ee;
  font-size: 23px;
  font-weight: bold;
}

.btnPlan1 {
  text-transform: uppercase;
  padding: 20px 14px;
  border: 1px solid #41c1ee;
  border-radius: 65px;
}

.btnPlan1:hover {
  background-color: #41c1ee !important;
  color: #16161e !important;
}

.cardPlanDestaque {
  position: relative;
  border: 1px solid rgb(65,193,238);
}

.cardPlan {
  background-color: #262630;
  border: none;
  border-radius: 15px;
  height: auto !important;
}

.divRecomendado {
  background-color: #41c1ee;
  color: #16161e;
  position: absolute;
  top: 0;
  right: 5%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 10px 19px;
}

.divRecomendado2 {
  background-color: #013345;
  color: #16161e;
  position: absolute;
  top: 0;
  right: 5%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 10px 19px;
}

.divRecomendado p {
  text-transform: uppercase;
  margin: 0;
}

.btnPlan2 {
  text-transform: uppercase;
  padding: 20px 14px;
  border: none;
  border-radius: 65px;
  background: linear-gradient(109deg, #41c1ee, #84cee8);
  color: #16161e;
}

.btnPlan2:hover {
  background: linear-gradient(109deg, #68c3e3, #3ca8cd);
  color: #16161e;
}

.texRodape p {
  color: #7f84a0;
  font-size: 13px;
  margin: 0;
}

#RODAPE {
  margin-top: 13em;
}

.texRodape a {
  color: #494D63;
  font-size: 13px;
  text-decoration: none;
}

.texRodape a:hover {
  color: #41c1ee;
}

.iconBenef svg {
  transition: transform 0.6s ease;
}

.iconBenef:hover svg {
  transform: rotate(360deg);
}

.borda-contorno-desenhado {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.borda-contorno-desenhado::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 2px solid #7ad3f3;
  box-sizing: border-box;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.borda-contorno-desenhado:hover::before {
  transform: scaleX(1);
}

#CLIENTES {
  margin-bottom: 5em;
}

.bgAction {
  border-radius: 15px;
  background: linear-gradient(109deg, #41c1ee, #84cee8, #1391be);
  background-size: 300% 300%;
  animation: animarBg 6s ease infinite;
  color: #fff;
}

@keyframes animarBg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.contStrategy {
  background: url("../../assets/img/bgStrategyG.png");
}

.linkMenu a {
  color: #9ba0bb;
  text-decoration: none;
}

.linkMenu a:hover {
  color: #41c1ee;
}

#offcanvas-1 {
  max-width: 90%;
}

.colorMenu {
  background-color: #16161e;
}

#HERO {
  margin-top: 7em;
}

.logoleadsback {
  width: 85px;
}

.spaceTop {
  margin-top: 5em;
}

