:root {
  --primary: #1a237e;
  --secondary: #ffb300;
  --gradient: linear-gradient(90deg, #1a237e 0%, #3949ab 100%);
  --gradient-cta: linear-gradient(90deg, #f8f4fa 0%, #f9e9ff 100%);
  --gradient-botao: linear-gradient(90deg, #6f42bf 0%, #5830a0 100%);
  --bg-light: #f7f8fa;
  --radius: 18px;

  --cor-principal: #240a2d;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
  box-sizing: border-box;
}

body {
  background-color: #f6f6f6;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

button {
  outline: 0 !important;
}

dl,
ol,
ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.navbar {
  z-index: 1000;
  position: sticky;
  top: 0;
  /* display: block; */
  width: 100%;
  background-color: #fff;
  padding: 7px 0;
  transition:
    padding 0.3s ease,
    font-size 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar .navbar-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav .link-menu {
  display: flex;
  gap: 27px;
}
nav .link-menu li {
  list-style: none;
}
nav .link-menu li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--cor-principal);
}
nav .navbar-menu {
  padding-left: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .link-contato {
  padding-left: 30px;
}
nav .link-contato a {
  position: relative;
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 10px 30px;
  border-radius: 5px;
  background-color: var(--cor-principal);
  box-shadow: 0 7px 25px rgb(123, 104, 238, 0.25);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: none;
  text-decoration: none;
}
.navbar .logo {
  width: auto;
  height: 60px;
  transition: height 0.3s ease;
}
.navbar.navbar-shrink {
  padding: 2px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-shrink .logo {
  height: 50px;
  width: auto;
}
.navbar.navbar-shrink nav .link-menu li a {
  font-size: 14px;
}
.navbar.navbar-shrink nav .link-contato a {
  font-size: 13px;
  font-weight: normal;
  padding: 6px 15px;
}

.ptop-50 {
  padding-top: 50px;
}
.ptop-100 {
  padding-top: 100px;
}

.section-padding {
  padding: 100px 0;
}

a {
  color: #404040;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  outline: 0 !important;
}

p {
  color: #5f5f5f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1px;
  font-family: "Catamaran", sans-serif;
  margin-bottom: 15px;
}

.section-title {
  margin-bottom: 35px;
  text-align: center;
  line-height: 1.5;
}
.section-title h2 {
  color: var(--cor-principal);
  font-size: 35px;
  font-weight: 800;
  margin: 10px 0 0 0;
}
.section-title h2:after {
  content: "";
  width: 30px;
  height: 7px;
  background: #d251ff;
  margin: 5px auto 0;
  display: block;
}

.sub-title {
  color: #ff9800;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.feature-single-item {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  text-align: center;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 57px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 57px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}
.feature-single-item:hover {
  transform: translate(0, -10px);
}
.feature-single-item h3 {
  color: #0b0b31;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}
.feature-single-item img {
  width: 85px;
  margin: auto;
  margin-bottom: 25px;
}

.feature-btn-box .read-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-team-box {
  margin-top: 30px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.team-image {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.team-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-team-box:hover .team-image::before {
  opacity: 0.8;
  visibility: visible;
}

.single-team-box .team-image img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box:hover .team-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.team-social-icon {
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.team-social-icon a {
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 8px;
  margin: 0 2px;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  will-change: transform;
}
.single-team-box:hover .team-social-icon a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.single-team-box .team-social-icon a:hover {
  color: #fff;
  background-color: #7b68ee;
  border: 1px solid #7b68ee;
}
.team-info {
  text-align: center;
  padding: 20px 15px 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-info span {
  color: #7b68ee;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.team-row-compact .col-lg-3,
.team-row-compact .col-md-3 {
  padding-left: 20px; /* Reduza este valor para diminuir o espaço entre as colunas */
  padding-right: 20px; /* Reduza este valor para diminuir o espaço entre as colunas */
}
.team-row-compact {
  margin-left: -20px; /* Ajuste para ser o negativo do padding-left acima */
  margin-right: -20px; /* Ajuste para ser o negativo do padding-right acima */
}

.workprocess-single-item {
  position: relative;
  z-index: 1;
  padding: 25px 20px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
  box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
}

.workprocess-single-item:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.workprocess-icon-box {
  width: 70px;
  height: 70px;
  padding: 15px;
  border-radius: 20%;
  display: inline-block;
  border: 5px solid rgb(123, 104, 238, 0.05);
  background-color: rgb(123, 104, 238, 0.05);
  margin-bottom: 25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.workprocess-single-item:hover .workprocess-icon-box {
  border: 5px solid rgb(123, 104, 238, 0.3);
}

.workprocess-icon-box .workprocess-icon-number {
  font-size: 3rem;
  color: #5764ec;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: red;
}

.workprocess-info {
}

.workprocess-info h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
}
.workprocess-number-bg {
  position: absolute;
  z-index: -1;
  right: 5px;
  bottom: -45px;
}

.workprocess-number-bg span {
  color: rgb(123, 104, 238, 0.05);
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
}

h4 {
  font-size: 27px;
  font-weight: 600;
  color: var(--cor-principal);
  margin-bottom: 25px;
}
h4:after {
  content: "";
  width: 33px;
  height: 5px;
  background: #d251ff;
  margin: 5px 0 0 0;
  display: block;
}

.page-sobre .page-sobre-fundo {
  width: 100%;
  padding: 50px 0;
  background: var(--gradient-cta);
}
.page-sobre img {
  max-width: 500px;
  height: auto;
}
.page-sobre p {
  font-size: 110%;
}

.page-cta-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  row-gap: 15px;
}
.page-cta h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--cor-principal);
}
.page-cta a {
  background: var(--gradient-botao);
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 100px;
  box-shadow: 0 7px 25px rgb(123, 104, 238, 0.25);
}

.page-cta-fundo-cor {
  background: var(--gradient-cta);
  padding-top: 50px;
  padding-bottom: 50px;
}

.clearfix {
  clear: both;
  height: 0;
  overflow: hidden;
}

footer {
  background-color: #0f0f0f;
  padding: 20px 0;
  color: #bcbcbc;
  text-align: center;
}

.section-header {
  background: #673ab7;
  padding: 70px 0;
}
.section-header .sub-title {
  color: #e8e5fc;
}

.logo-mobile {
  display: none;
}
@media all and (max-width: 600px) {
  .logo-mobile {
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 7px 15px;
  }
  .logo-mobile img {
    max-width: 180px;
    height: auto;
  }
  .section-title h2 {
    font-size: 27px;
  }
  .section-title h2:after {
    height: 5px;
  }
  .sub-title {
    font-size: 15px;
  }
  .page-cta h5 {
    font-size: 22px;
  }
  .page-cta a {
    font-size: 16px;
    padding: 9px 22px;
  }
  .workprocess-single-item {
    height: auto;
    margin-bottom: 20px;
  }
  .workprocess-info h3 {
    font-size: 18px;
  }
  .workprocess-info p {
    font-size: 15px;
  }
  h4 {
    font-size: 23px;
  }
  .team-image {
    text-align: center;
  }
  .single-team-box .team-image img {
    max-width: 300px;
  }
}
