@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
:root {
  background-color: #112233;
  --at-border-radius: 10px;
  --at-primary-400: var(--at-green-400);
  --at-primary-500: var(--at-green-500);
  --at-primary-600: var(--at-green-600);
}

*,
body,
html {
  margin: 0px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  scroll-padding-top: 100px;
}

body,
html {
  background-color: #112233;
}

p,
span,
input,
h1,
h2,
h3,
h4,
h5,
h6,
label {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  font-weight: 500;
}

button {
  font-size: 16px;
  font-weight: 600 !important;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: #0066ff;
  color: #fff;
  border-radius: 12px;
  transition: 0.3s all ease !important;
  transform: scale(1) !important;
}

#app {
  width: 100%;
}

.app-topbanner {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 80px;
  user-select: none;
  background-color: #fff;
  z-index: 1;
  transition: 0.3s all ease;
}

.app-topbanner-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}

.app-tobanner-logo {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  cursor: pointer;
}

.app-topbanner-menu {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.app-topbanner-menu p {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 12px;
  color: #afc3d1;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s all ease;
}

.app-topbanner-menu p:hover {
  background-color: #e5efff;
  color: #0062ff;
}

.app-topbanner-menu p:active {
  background-color: #c9d8f1;
  color: #0062ff;
  transition: 0s;
}

[dark-banner="true"] .app-topbanner-menu p:hover {
  background-color: #29435d !important;
  color: #ffffff !important;
}

[dark-banner="true"] .app-topbanner-menu p:active {
  background-color: #29435d !important;
  color: #ffffff !important;
}

[dark-banner="true"] {
  background: #132430 !important;
  color: #fff !important;
  box-shadow: none !important;
}

[dark-banner="true"] [dark] {
  display: none !important;
}

[dark-banner="true"] [light] {
  display: block !important;
}

.app-content {
  padding-top: 50px;
}

.hero-body {
  max-width: 1200px;
  margin: 0 auto;
  width: 80%;
}

.title {
  font-weight: 800;
  color: #132430;
  font-size: 36px;
}

.subtitle {
  color: #afc3d1;
  font-size: 1.1rem;
  font-weight: 600;
}

.column-align-center {
  align-self: center;
}

.column-inner-center {
  width: fit-content;
  margin: 0 auto;
  width: 90%;
}

.column-inner-center img {
  width: 100%;
}

.hero-skew {
  transform: rotate(-1deg);
}

.hero-skew .hero-body {
  transform: rotate(1deg);
}

.color-inversed {
  background: #273a49;
  position: relative;
}

.color-inversed::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: -29px;
  width: 50px;
  background: #273a49;
  z-index: -1;
}

.color-inversed::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: -60px;
  width: 75px;
  background: #273a49;
  z-index: -1;
}

.color-inversed .title {
  color: #fff;
}

.color-contrast {
  background: #0077ff;
  position: relative;
}

.color-contrast::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: -29px;
  width: 50px;
  background: #0077ff;
  z-index: -1;
}

.color-contrast::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: -60px;
  width: 75px;
  background: #0077ff;
  z-index: -1;
}

.color-contrast .title {
  color: #fff;
}

.color-contrast .subtitle,
.color-contrast i {
  color: #ffffffa4 !important;
}

.bg-voiceip {
  background-color: #0058ff;
  color: #fff;
}

.bg-omnichannel {
  background-color: #00d1b2;
  color: #fff;
}

.bg-integra {
  background-color: #fbb040;
  color: #fff;
}

.title-brand {
  max-width: 300px;
}

.remove-margin {
  margin: 0px !important;
}

.client-logo {
  width: calc(100% / 6);
  display: inline-block;
  padding: 10px;
  vertical-align: middle;
  margin: 10px;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  height: 80px !important;
  position: relative;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s all ease;
  background-color: #fff;
}

.client-logo:hover {
  transform: scale(1.1);
}

.client-logo:active {
  transform: scale(1);
}

.client-logo img {
  width: 140px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.app-carousel-even {
  width: 100%;
  margin: 30px 75px;
  white-space: nowrap;
}

.carousel-even-line {
  width: 100%;
  white-space: nowrap;
}

/* #app-hero-clientes .hero-body, .app-carousel{
    width: 100%;
} */

.slick-list {
  overflow: unset !important;
}

.carousel-systems {
  transform: rotate(-1deg);
}

.carousel-systems.app-carousel-even {
  margin: 15px 40px;
}

.shadow {
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.systems-logo {
  max-width: 90px;
  display: inline-block;
  padding: 0px;
  vertical-align: middle;
  margin: 10px;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  height: 90px !important;
  position: relative;
  border-radius: 22px;
  cursor: pointer;
  transition: 0.3s all ease;
}

.systems-logo:hover {
  transform: scale(1.1);
}

.systems-logo:active {
  transform: scale(1);
}

.card-stats {
  padding: 20px 50px;
  text-align: center;
}

.card-stats svg {
  margin-bottom: 15px;
}

.card-stats i {
  display: block;
  font-size: 35px;
  margin-bottom: 15px;
  color: #afc3d1;
}

.card-stats .subtitle {
  font-weight: 600;
}

.app-field {
  /* padding: 10px; */
  margin: 15px 0px;
  width: 100%;
}

.app-field label {
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  display: block;
}

.app-field input {
  width: 100%;
  padding: 10px;
  border: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  font-size: 18px;
  border-radius: 12px;
  outline: none;
  font-weight: 500;
}

.color-inversed .app-field input::placeholder {
  color: #afc3d188;
}

.color-inversed .app-field input {
  background-color: #243d4e;
  color: #fff;
}

.contact-map {
  margin-right: 25px;
  border-radius: 20px;
}

#contact-send {
  float: right;
  /* margin-right: 20px; */
  margin-top: 10px;
}

#app-hero-bottom::after {
  content: "";
  background-color: #273a49;
}

#app-hero-bottom::before {
  content: "";
  background-color: #273a49;
}

#app-hero-bottom {
  background-color: #273a49;
  color: #fff !important;
  z-index: 2 !important;
  width: 100%;
  margin-top: -20px;
  padding: 15px 0px;
}

#app-hero-bottom img {
  width: 150px;
  display: block;
  margin: 0 auto;
}

#app-hero-bottom b {
  font-size: 13px;
  color: #afc3d1;
  font-weight: 600;
  padding-top: 10px;
  border-top: solid 2px rgba(205, 222, 236, 0.096);
  margin-top: 10px;
  display: block;
  text-align: center;
}

#app-hero-bottom b i {
  margin-right: 5px;
}

#app-whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 34px;
  width: 60px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0ccd65 0%, #12ba5e 100%);
  height: 60px;
  padding: 0px;
  z-index: 1;
}

#app-loader {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #fff;
  z-index: 999;
}

#app-loader img {
  display: block;
  width: 30%;
  margin: 350px auto;
  max-width: 350px;
  margin-bottom: -20px;
}

#app-loader svg {
  display: block;
  width: 100px;
  margin: 0 auto;
}

#app-hero-institucional-evolucao {
  text-align: center;
}

#app-hero-institucional-evolucao img {
  width: 180px;
  margin: 10px 40px;
  vertical-align: middle;
  display: inline-block;
}

#app-hero-institucional-evolucao .column {
  position: relative;
  text-align: center;
}

#app-hero-institucional-evolucao .column:after {
  color: #afc3d1;
  border-right: 3px solid #afc3d1;
  border-bottom: 3px solid #afc3d1;
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}

#app-hero-institucional-evolucao .column:after {
  right: -16px;
  transform: rotate(-45deg) translateY(-50%);
}

#app-hero-institucional-evolucao .column:last-child::after {
  border-color: transparent;
}

#app-hero-institucional-evolucao .hero-body {
  padding: 80px 20px;
}

.subtitle-valores {
  padding: 5px 0px;
}

.subtitle-valores .bx {
  margin-right: 10px;
}

.carousel-depoimentos .slick-list {
  overflow: hidden !important;
  padding: 0px !important;
}

.depoimento {
  padding: 0px;
  width: 100%;
  margin: 0px 30px;
  position: relative;
}

.depoimento-info-subtitle img:not(.depoimento-logo) {
  height: 50px;
  width: 50px;
  border-radius: 16px;
  vertical-align: middle;
  display: inline-block;
}

.depoimento-info-subtitle {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 2px #afc3d131;
  color: #243d4e;
  font-size: 20px;
  position: relative;
}

.depoimento-info-subtitle-perfil {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.depoimento-logo {
  height: unset !important;
  width: 120px;
  padding: 20px;
  position: relative;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s all ease;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
  max-height: 0;
}

.fade-enter-active {
  transition: opacity 0.6s ease 0.6s, max-height 0.6s step-start;
}

.fade-leave-active {
  transition: opacity 0.6s ease, max-height 0.6s step-end;
}

#app-hero-institucional-certificacoes .column-align-center {
  color: #fff;
  text-align: center;
}

#app-hero-institucional-certificacoes img {
  width: 200px !important;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: 0.3s all ease;
}

#app-hero-institucional-certificacoes img:hover {
  transform: scale(1.1);
}

#app-hero-institucional-certificacoes img:active {
  transform: scale(1);
}

@media screen and (max-width: 1350px) {
  .title {
    font-size: 2em;
  }
}

#app-voiceip-all {
  margin-bottom: 140px;
}

#app-voiceip-all img {
  max-width: 800px;
}

.column img {
  transition: 0.3s all ease;
  user-select: none;
}

.column img:hover {
  transform: scale(110%);
}

.badge-host {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
  transition: 0.3s all ease;
}

.badge-host-shadow {
  width: 100px;
  height: 120px;
  background-color: #0059ff57;
  border-radius: 34px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(27deg);
  transition: 0.3s all ease;
}

.badge-host-square {
  width: 100px;
  height: 100px;
  background-color: #0058ff;
  border-radius: 34px;
  position: relative;
}

.badge-host-square i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 42px;
}

.badge-host:hover {
  transform: scale(1.05);
}

.badge-host:hover .badge-host-shadow {
  transform: translate(-50%, -50%) rotate(65deg);
}

.column:nth-child(2) .badge-host-square {
  background-color: #00d1b2;
}

.column:nth-child(2) .badge-host-shadow {
  background-color: #00d1b233;
  transform: translate(-50%, -50%) rotate(65deg);
}

.column:nth-child(2):hover .badge-host-shadow {
  transform: translate(-50%, -50%) rotate(105deg);
}

.column:nth-child(3) .badge-host-square {
  background-color: #8053ff;
}

.column:nth-child(3) .badge-host-shadow {
  background-color: #8153ff6b;
  transform: translate(-50%, -50%) rotate(115deg);
}

.column:nth-child(3):hover .badge-host-shadow {
  transform: translate(-50%, -50%) rotate(125deg);
}

#app-hero-hosting {
  text-align: center !important;
}

#app-hero-hosting b {
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
}

#app-hero-hosting .title {
  margin-bottom: 65px;
}

#app-hero-voiceip-integracoes {
  padding: 50px 0px;
  padding-bottom: 120px !important;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

#dropdown-produtos {
  width: 50vw;
}

.dropdown-content {
  margin-top: 10px;
  border-radius: 12px !important;
  box-shadow: none !important;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04) !important;
}

#dropdown-produtos .columns {
  padding: 15px 30px;
}

#dropdown-produtos .columns img {
  max-width: 120px;
  padding-bottom: 10px;
}

.inner-list h2 {
  padding: 5px 0px;
  border-radius: 8px;
  font-weight: 600;
  color: #afc3d1;
  cursor: pointer;
  transition: 0.3s all ease;
}

.inner-list h2:hover {
  padding-left: 10px;
  background-color: #e5efff;
  color: #0062ff;
}

.inner-list h2:active {
  background-color: #c9d8f1;
  color: #0062ff;
  transition: 0s;
}

#app-hero-institucional {
  background: url("../assets/images/fotos/equipe-fora.jpeg") no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  margin-top: -120px;
  height: 110vh;
}

#app-hero-institucional p {
  color: #fff !important;
}

#app-hero-institucional .has-text-centered {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 140px;
}

[transparent="true"] .app-topbanner-menu p:hover {
  background: rgba(0, 0, 0, 0.15) !important;
  color: #ffffff !important;
}

[transparent="true"] .app-topbanner-menu p:active {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #ffffff !important;
}

[transparent="true"] {
  background: none !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

[transparent="true"] [dark] {
  display: none !important;
}

[transparent="true"] [light] {
  display: block !important;
}

.bg-outline {
  background: none;
  border: solid 2px #fff;
}

.title-equipe {
  font-weight: 700;
  color: #132430;
}

.equipe-card img {
  margin-bottom: 20px;
  border-radius: 10px;
}

#app-hero-institucional-equipe {
  background-color: aliceblue;
}

.equipe-card {
  text-align: center;
  background-color: #fff;
  /* box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04); */
  padding: 20px;
  border-radius: 24px;
}

#carousel-depoimentos-institucional {
  height: 350px;
  position: relative;
}

#carousel-depoimentos-institucional .depoimento {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  right: 0px;
}

.depoimento p {
  line-height: 32px;
}

.arrow-carousel {
  font-size: 46px;
  color: #afc3d1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s all ease;
  padding: 5px;
  border-radius: 12px;
}

.arrow-carousel:hover {
  background-color: #dfebff;
  color: #0058ff;
}

.arrow-carousel:active {
  background-color: #c9d6eb;
  color: #0058ff;
}

.arrow-carousel.bx-chevron-left {
  left: -50px;
}

.arrow-carousel.bx-chevron-right {
  right: -100px;
}

[data-tooltip]:not([disabled]):hover:before {
  background: #000 !important;
  border-radius: 12px !important;
  width: 200px !important;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  color: #fff !important;
  transition: 0.3s all ease;
}

.animated-button {
  overflow: hidden !important;
}

.bg-outline::before {
  background: #0058ff;
}

.bg-outline:hover {
  color: #fff;
  border-color: transparent;
}

.animated-button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  left: -5%;
  right: auto;
  bottom: auto;
  width: 110%;
  height: 180%;
  transform-origin: left bottom;
  transition: transform 0.3s;

  transform: skewY(-10deg) scale(1, 0);
}

.animated-button:hover::before {
  transform-origin: left top;
  transform: skewY(-10deg) scale(1, 1);
}

.bg-voiceip::before {
  background: #347bff;
}

.bg-voiceip:hover {
  color: #fff;
  border-color: transparent;
}

.bg-omnichannel::before {
  background: #0db49b;
}

.bg-omnichannel:hover {
  color: #fff;
  border-color: transparent;
}

.bg-integra::before {
  background: #ffa927;
}

.bg-integra:hover {
  color: #fff;
  border-color: transparent;
}

.color-voiceip {
  color: #afc3d1;
  transition: 0.3s;
}
.color-voiceip:visited {
  color: #0062ff;
}
.color-voiceip:hover {
  color: #0062ff;
}

.select-version {
  display: block;
  /* margin-bottom: 50px; */
  padding: 20px 20px;
}

.select-version label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.select-version select {
  padding: 8px 15px;
  width: 200px;
  font-size: 16px;
  outline: none;
  border-radius: 10px;
  background: none;
  font-weight: 500;
  color: #fff;
  background: #132430;
  border: none;
}

.darker {
  background-color: #081b27;
}

.navbar-menu {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

li {
  color: var(--at-gray-400) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.mockup-banner {
  margin-bottom: -20px;
}

hr {
  background-color: var(--at-slate);
}

.badge-version {
  background-color: var(--at-green-transparent);
  color: var(--at-green-500);
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.badge-version a {
  color: inherit;
}

.badge-version a:hover {
  text-decoration: underline;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #95a7b82c;
}

::-webkit-scrollbar-thumb {
  background-color: #95a7b84c;
  border-radius: 10px;
}
