* {
  box-sizing: border-box;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #cecece41 #0b0b0f;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: #0b0b0f;
}

*::-webkit-scrollbar-thumb {
  background: #232333;
  border: 2px solid #0b0b0f;
  border-radius: 10px;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

*::-webkit-scrollbar-button {
  display: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-300px);
  transition: all 0.8s ease;
  transition-delay: 0s;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

html,
body {
  width: 100%;
  background-color: #000;
}

h1 {
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #fff;
}

.title_default {
  color: #5015ff;
  font-weight: 400;
}

.title_underlined {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.titulo-section {
  padding-top: 6rem;
}

.subtitle_default {
  color: #5015ff;
  font-size: 2.375rem;
  font-weight: 400;
}

.text_default_bigger {
  font-size: 1.875rem;
  font-weight: 400;
  margin: 2.5rem 0 1.5rem;
}

.text_default,
.link_default,
.list_default li {
  font-size: 1.25rem;
  font-weight: 200;
}

.link_default {
  text-decoration: underline !important;
}

.title_white,
.subtitle_white,
.text_white,
.text_default,
.text_default_bigger {
  color: #ffffff !important;
}

.text_purple {
  color: #5015ff !important;
}

.list_default {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  list-style: disc;
  list-style-position: inside;
  padding-left: 0.5rem;
  overflow: visible;
}

.icon-spinner {
  animation: spin 16s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.section_container {
  padding: 6rem 0;
}

.container_background {
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
}

.container_content {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

.container_gif_separator {
  padding: 4rem 2rem;
}

.container_gif_separator > img {
  width: 100%;
}

.caliber-page {
  height: 100%;
  overflow-x: hidden;
}

.caliber-content {
  height: 100vh;
  color: #fff !important;
  margin: 0 auto;
  overflow-x: hidden;
  /* overflow-y: auto; */
}

.caliber-logo {
  height: 32px;
}

.divisor_horizontal,
.divisor_vertical {
  border: 0;
  background: #5b2dff;
  box-shadow: 0 0 5px #5b2dff;
}

.divisor_horizontal {
  height: 1px;
  width: 100%;
}

.divisor_vertical {
  height: 100%;
  width: 1px;
}

.divisor_group {
  display: flex;
}

.divisor_group_horizontal {
  flex-direction: column;
}

.linha-dots {
  width: 9px;
  height: 100%;
}

.linha-dots > svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.dotline {
  stroke: #6a48ff;
  stroke-width: 9px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 0 22px;
  stroke-dashoffset: calc(22px / -2);
}

.navigation-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(14, 14, 14, 0.301);
  backdrop-filter: blur(2px) saturate(120%);
  -webkit-backdrop-filter: blur(2px) saturate(120%);
  /* border-bottom: 1px solid rgba(255,255,255,0.06); */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.navigation-menu li {
  list-style: none;
}

.navigation-menu a {
  text-transform: uppercase;
  transition: 150ms;
}

.navigation-menu a:hover {
  color: #5015ff;
}

.bars-logo-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.container-caliber-logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-burger-bars {
  height: 1.4rem;
  width: 2.25rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.nav-burger-bars > div {
  height: 3px;
  background-color: #eeeeee;
  border-radius: 1.5rem;
  transition: 150ms;
}

.nav-burger-bars > div:first-child {
  width: 75%;
}

.nav-burger-bars > div:nth-child(2) {
  width: 100%;
  margin: 0.4rem 0;
}

.nav-burger-bars > div:last-child {
  width: 60%;
}

.nav-burger-bars:hover div {
  background-color: #5015ff;
  cursor: pointer;
}

.mobile-navigation-menu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 18rem;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  background-color: #0e0e0ed0;
  box-shadow: 1px 1px 3px 0 #2c2c2c;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-navigation-menu > ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}

.mobile-navigation-menu > ul > li > a:not(.option-translate a) {
  display: block;
  padding: 1rem 1.5rem;
}

.mobile-navigation-menu .option-translate {
  margin: 1rem 0 0.5rem;
  padding: 1rem 1.5rem;
}

.mobile-navigation-menu > ul > li:hover:not(.mobile-navigation-menu .option-select) {
  background: rgba(39, 39, 39, 0.28);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mobile-navigation-menu .option-select {
  padding: 0 1.5rem;
}

.mobile-navigation-menu select {
  width: 100%;
}

.header-sidebar {
  height: 60px;
  background: rgb(8, 8, 8);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(39, 39, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 2rem;
  padding: 0 1.5rem;
}

.header-sidebar > .nav-burger-bars > div {
  align-self: end;
}

.desktop-navigation-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.5rem;
}

.option-translate {
  display: flex;
  align-items: center;
  position: relative;
  column-gap: 0.75rem;
}

.option-translate div:first-child,
.option-translate div:last-child {
  height: 18px;
  width: 4px;
  background-color: #5015ff;
  border-radius: 2px;
}

.caliber-sobre {
  min-height: 200vh;
  background-image: url("../images/header_background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.sobre-video {
  position: relative;
  height: 100vh;
  width: 100%;
}

.sobre-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.sobre-video__sound {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid #101014;
  background: rgba(0, 0, 0, 0.651);
  backdrop-filter: blur(1px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.06s ease;
}

.sobre-video__sound:hover {
  border-color: #8a6bff;
  box-shadow: 0 0 12px rgba(138, 107, 255, 0.25);
}

.sobre-video__sound:active {
  transform: translateY(1px);
}

.sobre-video__sound[aria-pressed="true"] {
  border-color: #6d57ff;
}

@media (prefers-reduced-motion: reduce) {
  .sobre-video__video {
    animation: none;
  }
}

.container-configuration-sobre {
  display: flex;
  align-items: center;
}

.sobre-information {
  width: max-content;
  display: grid;
  grid-template-columns: 0.5fr minmax(5rem, 38rem);
  padding: 8rem 0 2rem;
}

.desktop-sobre-vetor {
  height: 100%;
  object-fit: cover;
}

.sobre-card-content {
  height: 100%;
  width: 100%;
  min-width: 5rem;
  background-color: #5015ff;
  border-radius: 0 1.5rem 1.5rem 0;
}

.sobre-card-content > p {
  font-weight: 200;
}

.sobre-card-content > p:first-child {
  margin-bottom: 2rem;
}

.section-nossos-pilares {
  background-image: url("../images/pilares_background.png");
  background-position: top left;
}

.nossos-pilares-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem 0 3.5rem;
}

.nossos-pilares-content:last-child {
  padding-top: 0;
}

.card-pilar {
  height: 31rem;
  width: 30rem;
  display: grid;
  grid-template-rows: 80px max-content 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 3.5rem;
  background: linear-gradient(to bottom, rgba(70, 70, 82, 0.322), rgba(44, 44, 53, 0.267));
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid #6533fa1f;
  box-shadow: 0 0 2px rgba(131, 89, 230, 0.22);
  border-radius: 1.5rem;
  transition: 150ms;
}

.card-pilar:hover {
  transform: scale(1.025);
  cursor: pointer;
}

.card-pilar:hover > img {
  transform: rotateZ(45deg);
}

.card-pilar > img {
  height: 80px;
  width: 80px;
  transition: 150ms;
}

.card-pilar > p:nth-child(2) {
  color: #5b2dff;
}

.card-pilar > p:last-child {
  align-self: flex-start;
}

.card-pilar > strong {
  font-weight: 400;
}

.metodologia-content {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.metodologia-content > div:first-child {
  width: 100%;
  max-width: 30rem;
}

.metodologia-content > div:last-child {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodologia-content > div:last-child > img {
  height: 100%;
  width: auto;
  max-height: 70vh;
}

.metodologia-horizontal-separators {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  margin: 0 0 2.5rem;
}

.metodologia-labels .subtitle_default {
  margin-bottom: 1.5rem;
}

.section-comprometimento-resultado {
  background-image: url("../images/metodologia_background.png");
  display: flex;
  align-items: center;
  gap: 2rem;
}

.decoration-cards {
  position: relative;
  height: 56vh;
  width: 35vw;
}

.decoration-cards_card {
  position: absolute;
  height: 56vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.decoration-cards_card:nth-child(1) > img {
  top: 0;
  left: -4rem;
  z-index: 4;
  height: 38vh;
  width: 30vw;
  filter: brightness(1.25);
}

.decoration-cards_card:nth-child(2) > .card {
  top: 0;
  left: 0;
  z-index: 3;
  height: 48vh;
  width: 29vw;
  background-color: #56565633;
  background-image: linear-gradient(135deg, #5015ff47 0%, #4f15ff21 100%);
  border-radius: 0 25px 25px 0;
  box-shadow: 3px 10px 45px 1px #190c47ab;
}

.decoration-cards_card:nth-child(3) > .card {
  top: 0;
  left: 0;
  z-index: 2;
  height: 56vh;
  width: 32vw;
  background-color: #56565633;
  background-image: linear-gradient(135deg, #5015ff47 0%, #4f15ff21 100%);
  border-radius: 0 30px 30px 0;
  box-shadow: 3px 10px 45px 1px #190c47ab;
}

.decoration-cards_card:nth-child(4) > .card {
  height: 64vh;
  width: 35vw;
  background: linear-gradient(165deg, #794dff 0%, #5015ff 50%, #3b0ec4 100%);
  border-radius: 0 35px 35px 0;
  box-shadow: 5px 5px 5px 0 #141414ab;
}

.comprometimento-resultado-content {
  height: max-content;
  width: 100%;
  max-width: 44rem;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  gap: 2rem;
  word-break: break-word;
}

.purple_dottedline_decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.comprometimento-information {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  padding: 3rem 0 2rem;
}

.comprometimento-information > p {
  max-width: 26rem;
}

.section-diferenca-caliber {
  width: 100%;
  min-height: 100vh;
  background-color: #d9d9d9;
}

.diferenca-vertical-separators {
  height: 18vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.diferenca-vertical-separators .divisor_vertical {
  width: 4px;
  box-shadow: none;
}

.section-diferenca-caliber p {
  color: #000 !important;
}

.section-diferenca-caliber p > strong {
  font-weight: bold !important;
}

.content-diferenca-caliber h1 {
  font-weight: 200;
  transform: scaleY(1.1);
}

.diferenca-caliber-vetor-titulo,
.diferenca-caliber-border-vetor {
  align-items: center;
  justify-content: center;
}

.diferenca-caliber-vetor-conteudo {
  margin-top: auto;
  margin-bottom: auto;
}

.praticas-divisor {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 4rem 0;
}

.praticas-divisor > div {
  display: flex;
  gap: 12rem;
  justify-content: space-between;
}

.praticas-business-consulting {
  min-height: 100vh;
  background-image: url("../images/praticas_background1.png");
  background-repeat: no-repeat;
  background-position: right;
}

.container-praticas-business-consulting {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.content-praticas-business-consulting h1 {
  width: 100%;
  max-width: 32rem;
}

.content-praticas-business-consulting p:last-child {
  width: 100%;
  max-width: 30rem;
}

.content-praticas-business-consulting .subtitle_default {
  max-width: 28rem;
  width: 100%;
  margin: 2rem 0 1.5rem;
}

.decoration-titulo-business-consulting {
  margin-top: 3rem;
}

.praticas-consumer-insights {
  min-height: 125vh;
  background-image: url("../images/praticas_background2.png");
  background-repeat: no-repeat;
  background-position: left -5vw bottom;
  background-size: 80vw 115vh;
}

.praticas-digital-products {
  min-height: 100vh;
  background-image: url("../images/praticas_background3.png");
  background-repeat: no-repeat;
  background-position: left bottom;
}

.praticas-growth-performance {
  min-height: 100vh;
  background-image: url("../images/praticas_background4.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.praticas-martech-dados {
  min-height: 100vh;
  background-image: url("../images/praticas_background5.png");
  background-repeat: no-repeat;
  background-position: left;
  width: 100%;
  justify-self: self-end;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 3rem !important;
}

.divisors_praticas {
  display: flex;
  flex-direction: column;
  row-gap: 7rem;
  padding: 6rem 0;
}

.divisors_praticas > div {
  display: flex;
  column-gap: 7rem;
}

.titulo_praticas {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.praticas-martech-dados > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.praticas-martech-dados > div > div {
  width: 100%;
  max-width: 54rem;
  display: flex;
  flex-direction: column;
}

.praticas-martech-dados > div > div > img {
  width: 100%;
}

.content-martech-dados {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 3rem 0;
}

.content-martech-dados .text_default_bigger {
  margin-top: 0;
}

.content-martech-dados > div {
  width: 100%;
  max-width: 25rem;
}

.content-martech-dados > div > p:last-child {
  font-weight: 200;
  margin-top: 1.5rem;
}

.content-martech-dados > ul {
  width: 22rem;
}

.top_title_praticas {
  display: flex;
  padding-bottom: 6rem;
}

.top_title_praticas > div {
  height: 20vh;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.top_title_praticas > div:first-child {
  align-items: flex-end;
}

.top_title_praticas > div:first-child > * {
  color: #5015ff !important;
  margin: 0;
}

.top_title_praticas > div:last-child {
  align-items: center;
  justify-content: center;
  padding-left: 4rem;
  padding-right: 0;
}

.top_title_praticas > .text_default_bigger {
  color: #5015ff;
}

.praticas-business-consulting
  .top_title_praticas
  > div:not(.top_title_praticas > div:nth-child(2)) {
  border-left: 4px solid #5015ff;
  border-right: 4px solid #5015ff;
}

.praticas-consumer-insights .top_title_praticas > div:nth-child(2) {
  border-left: 4px solid #5015ff;
  border-right: 4px solid #5015ff;
}

.content-praticas-consumer-insights {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  row-gap: 0;
}

.content-consumer-insights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-consumer-insights > img {
  padding-top: 3rem;
}

.consumer-card-border {
  width: 12rem;
  border-right: 4px solid #5015ff;
}

.content-titulo-digital-products {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

.titulo-digital-products {
  align-items: center;
  justify-content: start;
  gap: 6rem !important;
  margin-bottom: 2.5rem;
}

.content-praticas-digital-products {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.texts-digital-products {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.praticas-digital-products .list_default {
  max-width: unset;
}

.texts-digital-products>div:first-child {
  padding-left: 8px;
}

.texts-digital-products>div:last-child {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}

.texts-digital-products .text_default_bigger {
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

.texts-digital-products ul {
  margin-top: 1.5rem;
}

.titulo-growth-performance {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 6rem;
}

.container-growth-performance {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 1rem;
  row-gap: 7rem;
  padding-bottom: 4rem;
  padding-right: 4rem;
}

.content-growth-performance {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-left: 48px;
}

.content-growth-performance > div:first-child {
  display: flex;
  gap: 2.5rem;
}

.growth-first-part {
  width: 90%;
}

.growth-first-part > div:last-child > .text_default_bigger {
  margin: 0 0 1.5rem;
}

.growth-second-part {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  flex: 1;
}

.growth-second-part > ul {
  max-width: unset;
}

.section-lideranca {
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
}

.lideranca-vertical-separators,
.lideranca-horizontal-separators {
  width: 100%;
  row-gap: 3rem;
}

.lideranca-vertical-separators {
  height: 23rem;
  width: max-content;
}

.lideranca-horizontal-separators {
  max-width: 26.5rem;
  flex-direction: column;
}

.content-foto-lider {
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.foto-lider {
  position: relative;
  width: 100%;
  max-width: 24rem;
  align-self: center;
  display: flex;
  justify-content: center;
}

.foto-lider > img:first-child {
  position: absolute;
  top: 0;
  left: -1.65rem;
}

.lider-sobre {
  width: 24rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lider-sobre > p:first-child:not(p > strong) {
  font-weight: 200;
  font-style: italic;
  margin-bottom: 2rem;
}

.lider-sobre strong {
  font-weight: 800;
}

.lider-sobre > p:first-child {
  font-size: 32px;
}

.section-work-us {
  margin-top: 3rem;
  padding: 2rem 0.5rem !important;
}

@media(max-width: 1800px) {
  .section-work-us {
    padding: 2rem 5rem !important;
  }
}

@media(max-width: 460px) {
  .section-work-us {
    padding: 2rem 1rem !important;
  }
}

.section-work-us {
  padding-bottom: 0;
}

.section-work-us > h1 {
  margin: 5rem 0 4rem;
  font-weight: 250;
}

.titulo-diferenca-caliber strong,
.section-work-us > h1 > strong {
  font-weight: bold;
}

.text_default_bigger_workus {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 28px;
}

@media(max-width: 1800px) {
  .text_default_bigger_workus {
    font-size: 25px;
  }
}

@media(max-width: 1300px) {
  .text_default_bigger_workus {
    font-size: 20px;
    margin-bottom: 22px;
  }
}


.workus-decoration-header {
  display: flex;
  justify-content: space-between;
}

.workus-decoration-header > div {
  height: 22vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workus-decoration-header img {
  padding: 0 1rem;
}

.initial-content-workus {
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.initial-content-workus .text {
  width: 30%;
  padding-right: 2rem;
}


@media(max-width: 1800px) {
  .initial-content-workus .text {
    width: 35%;
  }
}

@media(max-width: 1100px) {
  .initial-content-workus .text {
    width: 60%;
  }
}

@media(max-width: 640px) {
  .initial-content-workus .text {
    width: 100%;
  }
}

.initial-content-workus .text .text_default {
  max-width: 84%;
  font-weight: 500;
}

@media(max-width: 1800px) {
  .initial-content-workus .text .text_default {
    max-width: 90%;
  }
}

@media(max-width: 1300px) {
  .initial-content-workus .text .text_default {
    max-width: 95%;
  }
}

.initial-content-workus .grafismo {
  width: 66.5%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media(max-width: 1800px) {
  .initial-content-workus .grafismo {
    width: 70%;
  }
}

@media(max-width: 1100px) {
  .initial-content-workus .grafismo {
    width: 70%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 800px) {
  .initial-content-workus .grafismo {
    width: 40%;
  }
}

@media(max-width: 640px) {
  .initial-content-workus .grafismo {
    display: none;
  }
}

.initial-content-workus .grafismo div {
  width: 100%;
  aspect-ratio: 1/1;
  height: max-content;
  border-left: 4px solid #5015FF;
  border-right: 4px solid #5015FF;
}

@media(max-width: 1100px) {
  .initial-content-workus .grafismo div:nth-child(2) {
    display: none;
  }

  .initial-content-workus .grafismo div:nth-child(1) {
    border-right: 0px solid #5015FF;
  }

  .initial-content-workus .grafismo div {
    height: 260px;
    aspect-ratio: unset;
  }
}

.initial-content-workus .grafismo div.middle {
  border: none;
}

.workus-decoration-header>div:nth-child(odd),
.decoration-content-workus>div:not(.decoration-content-workus > div:first-child)>div:nth-child(odd) {
  border-left: 4px solid #5015FF;
  border-right: 4px solid #5015FF;
}

.workus-decoration-header>div:last-child,
.decoration-content-workus>div:not(.decoration-content-workus > div:first-child) {
  border-right: 4px solid #5015FF;
}

.content-workus {
  width: 100%;
  margin-top: 6rem;
  display: flex;
  column-gap: 6rem;
}

.decoration-content-workus {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 3rem;
}

.decoration-content-workus > div:first-child {
  display: flex;
  justify-content: flex-end;
}

.decoration-content-workus > div:first-child > img {
  max-height: 35rem;
}

.decoration-content-workus > div:nth-child(2),
.decoration-content-workus > div:nth-child(3) {
  display: flex;
  justify-content: space-between;
}

.decoration-content-workus > div:nth-child(3) {
  margin-bottom: 0.5rem;
}

.decoration-content-workus > div:nth-child(2) > div {
  height: 10rem;
  width: 100%;
}

.decoration-content-workus > div:nth-child(3) > div {
  height: 3rem;
  width: 100%;
}

.content-workus > div:first-child {
  width: 100%;
}

.content-workus > div:last-child {
  width: 100%;
  max-width: 34rem;
}

.content-workus > div:last-child > h1 {
  font-size: 4.25rem;
  max-width: 32rem;
}

@media(max-width: 1024px) {
  .content-workus>div:last-child>h1 {
    font-size: 3.5rem;
  }
}

.content-workus>div:last-child>p {
  width: 100%;
  max-width: 29rem;
  margin: 4rem 0;
}

.btn-workus {
  background: linear-gradient(90deg, #4626A5 0%, #3315FF 100%);
  display: block;
  padding: .65rem 0;
  border-radius: 1rem;
  cursor: pointer;
  transition: 150ms;
}

.content-workus>div:last-child>a:hover {
  background: linear-gradient(90deg, #4626a5c7 0%, #3315FFc7 100%);
}

.content-workus>div:last-child>a>h1 {
  margin: 0;
  transform: scale(0.76);
  transition: 150ms;
}

.explain-workus {
  width: 100%;
  max-width: 28.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.explain-workus h3 {
  color: #5015ff;
  font-size: 22px;
  margin-bottom: 0.75rem;
}

.caliber-footer {
  position: relative;
  overflow: hidden;
}

.caliber-footer * {
  user-select: none;
}

.footer-image-content {
  position: relative;
  width: 100%;
}

.footer-caliber-label-imagem {
  position: absolute;
  left: 0;
  bottom: 44%;
  font-weight: 200;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-image-content img {
  width: 100%;
}

.footer-information {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem 4rem 3rem;
}

.footer-information > div:first-child {
  position: relative;
  width: 100%;
  max-width: 18rem;
}

.footer-information > div:first-child > img:last-child {
  height: 6rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.footer-caliber-topografia {
  position: absolute;
  z-index: 10;
  top: 0;
  left: -10px;
  height: 6rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caliber-enterprise-information {
  width: max-content;
  min-width: 16rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
}

.social-medias {
  display: flex;
  column-gap: .75rem;
  margin-top: 0.4rem;
}

@media (max-width: 1680px) {
  .container_content {
    padding: 2rem 4rem;
  }
}

@media (max-width: 1550px) {
  .responsive-card-border {
    display: none !important;
  }

  .content-titulo-digital-products {
    row-gap: 2rem;
  }
}

@media (max-width: 1440px) {}

@media (max-width: 1279px) {
  .praticas-consumer-insights {
    background-image:
      linear-gradient(90deg, #000000a8 25%, #000000a8 100%),
      url("../images/praticas_background2.png");
  }

  .lideranca-vertical-separators {
    display: none;
  }
  .lideranca-horizontal-separators {
    display: flex;
  }
}

@media (max-width: 1280px) {
  .container_content {
    padding: 1rem 3rem;
  }

  .navigation-menu {
    padding: 0 2rem;
  }

  .section-diferenca-caliber .container-configuration {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .diferenca-invisible-cards {
    display: none !important;
  }

  .workus-decoration-header > div:nth-child(3),
  .workus-decoration-header > div:nth-child(4),
  .workus-decoration-header > div:last-child,
  .initial-content-workus > div:not(div:first-child) {
    display: none;
  }

  .icon-spinner,
  .arrow-icon {
    max-height: 140px;
    max-width: 140px;
  }

  .card-border,
  .praticas-business-consulting .top_title_praticas > div:last-child {
    display: none !important;
  }

  .praticas-consumer-insights {
    background-position: left bottom;
    background-size: 80vw 75vh;
  }

  .last-line {
    padding-left: 2rem !important;
  }

  .top_title_praticas > .first-line {
    border-left: 4px solid #5015ff;
    border-right: 4px solid #5015ff;
  }

  .top_title_praticas > div:first-child,
  .top_title_praticas > div:last-child {
    width: 14rem;
  }
}

@media (max-width: 1024px) {
  .navigation-menu {
    padding: 0 1rem;
  }

  .bars-logo-container {
    gap: 1.5rem;
  }

  .desktop-navigation-menu,
  .decoration-cards {
    display: none;
  }

  .desktop-navigation-menu a {
    font-size: 0.875rem;
  }

  .nossos-pilares-content {
    justify-content: center;
    padding: 1.5rem 0 3rem;
  }

  .card-pilar {
    height: max-content;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .separator-gif-container {
    padding: 4rem;
  }

  .metodologia-content {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 4rem;
  }

  .metodologia-content > div:last-child > img {
    width: 100%;
  }

  .content-consumer-insights > img {
    display: none;
  }

  .top_title_praticas > .last-line {
    display: none;
  }

  .footer-information {
    justify-content: space-between;
    padding-bottom: 3rem !important;
  }

  .footer-information > div:first-child > img:last-child {
    width: 100%;
  }

  .footer-caliber-label-imagem p {
    font-size: 2.25rem;
    text-align: center;
  }

  .titulo-section {
    padding: 6rem 3rem 0;
  }

  .titulo-section-lideranca {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-comprometimento-resultado {
    padding: 0 1.5rem;
  }

  .section_container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .divisors_praticas {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .content-titulo-digital-products {
    row-gap: 3rem;
  }

  .titulo-digital-products {
    align-items: center;
    justify-content: center;
    gap: 2rem !important;
  }

  .praticas-growth-performance {
    background-size: 70vw 28rem;
  }

  .titulo-growth-performance {
    margin-top: 0;
    padding-top: 2rem;
  }

  .icon-spinner,
  .arrow-icon {
    max-height: 140px;
    max-width: 140px;
  }

  .title_default > br:not(.titulo-growth-performance h1 > br) {
    display: none;
  }
  .titulo_praticas {
    flex-wrap: nowrap;
  }

  .desktop-sobre-vetor {
    width: 100%;
  }

  .praticas-consumer-insights {
    background-image:
      linear-gradient(90deg, #000000a8 10%, #000000a8 100%),
      url("../images/praticas_background2.png");
  }

  .praticas-digital-products {
    background-image:
      linear-gradient(90deg, #000000a8 75%, #000000a8 100%),
      url("../images/praticas_background3.png");;
  }
}

@media (max-width: 1023px) {
  .top_title_praticas {
    width: 100%;
    padding-bottom: 3rem;
  }
}

@media (max-width: 960px) {
  .subtitle_default {
    font-size: 2.125rem;
  }

  .text_default_bigger {
    font-size: 1.625rem;
  }

  .text_default,
  .link_default,
  .list_default li {
    font-size: 1rem;
  }

  .content-diferenca-caliber > div > div,
  .diferenca-caliber-vetor-titulo {
    height: 34vh;
    max-width: 20rem;
    display: flex;
    border-left: none !important;
    border-right: none !important;
  }

  .content-diferenca-caliber > div > div {
    padding: 2rem;
  }

  .content-diferenca-caliber > div > div:nth-child(odd),
  .diferenca-caliber-vetor-titulo {
    border-top: 4px solid #3b0ec4;
    border-bottom: 4px solid #3b0ec4;
  }

  .diferenca-caliber-vetor-conteudo {
    /* height: 25vh; */
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
  }

  .container-growth-performance {
    padding-right: 0;
  }

  .content-growth-performance .purple_dottedline_decoration {
    display: none;
  }

  .footer-caliber-label-imagem {
    padding: 0 1.5rem;
  }

  .decoration-content-workus {
    display: none;
  }

  .praticas-martech-dados img {
    display: none;
  }
}

@media (max-width: 768px) {
  .container_content {
    padding: 2rem;
  }

  .metodologia-content {
    padding-top: 0;
  }

  .praticas-consumer-insights {
    background-position: left bottom;
    background-size: 120vw 75vh;
  }

  .content-titulo-digital-products {
    row-gap: 0;
  }

  .sobre-card-content {
    padding: 2.5rem 2rem 3rem;
  }

  .sobre-card-content > p:first-child {
    font-size: 30px;
  }
  .sobre-card-content p:not(p:first-child) {
    font-size: 16px;
  }

  .desktop-sobre-vetor {
    display: none;
  }

  .mobile-sobre-vetor {
    height: 6rem;
    width: 100%;
    object-fit: cover;
  }

  .sobre-card-content {
    padding: 2.5rem 3rem 3rem;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .sobre-information {
    max-width: 32rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 6rem auto;
    padding-top: 4rem;
  }

  .footer-information {
    flex-direction: column;
    justify-items: center;
  }

  .footer-information hr {
    height: 100%;
    width: 1px;
  }
}

@media (max-width: 640px) {
  .diferenca-vertical-separators > .vertical-separator:nth-child(even) {
    display: none;
  }

  .divisors_praticas > div {
    column-gap: 3rem;
  }

  .diferenca-vertical-separators,
  .diferenca-caliber-border-vetor {
    display: none !important;
  }

  .top_title_praticas > .first-line {
    width: 100%;
  }

  .workus-decoration-header > div:not(div:first-child) {
    width: max-content;
    display: none;
  }

  .praticas-consumer-insights {
    background-size: 125vw 65vh;
  }

  .divisors_praticas {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .titulo_praticas {
    flex-wrap: wrap;
  }

  .content-consumer-insights,
  .content-growth-performance {
    margin: 0 auto;
  }

  .btn-workus {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 425px) {
  .container_content {
    padding: 1rem 1.5rem;
  }

  .foto-lider > img {
    width: 100%;
  }

  .purple_dottedline_decoration {
    display: none;
  }

  .praticas-consumer-insights .text_default_bigger {
    margin: 1rem 0 1.5rem;
  }

  .section-praticas .title_default {
    font-size: 3.5rem;
  }

  .redirect-vagas {
    margin: 0 auto;
  }
}

@media (max-width: 320px) {
}

@media (min-width: 320px) {
  .reveal-left {
    transform: translateX(-100px);
  }

  .title_default {
    font-size: 3rem;
    line-height: 1.05;
  }

  .subtitle_default {
    font-size: 1.6rem;
  }
  .text_default_bigger {
    font-size: 1.75rem;
  }
  .text_default,
  .link_default,
  .list_default li {
    font-size: 0.95rem;
  }

  .section-praticas .title_default {
    font-size: 3.5rem;
    line-height: 1.05;
  }
  .section-praticas .subtitle_default {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .content-diferenca-caliber .title_default {
    font-size: 5.25rem;
    line-height: 1;
  }
  .content-diferenca-caliber .text_default,
  .sobre-card-content .text_default {
    font-size: 1rem;
  }

  .comprometimento-information .title_default {
    font-size: 2rem;
  }

  .comprometimento-information .subtitle_default {
    font-size: 1.4rem;
  }

  .lider-sobre p:first-child,
  .footer-caliber-label-imagem p {
    font-size: 1.5rem;
  }

  .container-caliber-logo {
    column-gap: 1.25rem;
  }

  .navigation-menu {
    padding: 0 1.5rem;
  }

  .sobre-card-content {
    padding: 2.5rem 1.5rem 3rem;
  }

  .content-diferenca-caliber > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 2rem;
    padding: 1.5rem;
  }

  .content-diferenca-caliber {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    row-gap: 3rem;
  }

  .content-diferenca-caliber > div {
    border-left: 4px solid #5015ff;
    border-right: 4px solid #5015ff;
  }

  .caliber-logo-topografia {
    height: 22px;
  }

  .titulo-diferenca-caliber {
    margin: 2.5rem 0 3.5rem;
    font-weight: 250;
  }

  .list_default {
    width: 100%;
  }

  .content-consumer-insights,
  .content-titulo-digital-products,
  .texts-digital-products,
  .praticas-digital-products .list_default {
    width: 100%;
  }

  .praticas-growth-performance {
    background-size: 100vw 29rem;
  }

  .titulo-growth-performance {
    width: 100%;
  }

  .titulo-growth-performance {
    align-items: center;
  }

  .growth-second-part > ul {
    width: 100%;
  }

  .titulo-section-lideranca {
    padding: 1.5rem 3rem;
  }

  .foto-lider,
  .foto-lider>img:first-child,
  .lideranca-vertical-separators {
    height: 18rem;
  }
}

@media (min-width: 640px) {
  .content-diferenca-caliber {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenca-caliber-vetor-titulo {
    display: none;
  }

  .content-diferenca-caliber > div:nth-child(1),
  .content-diferenca-caliber > div:nth-child(3),
  .content-diferenca-caliber > div:nth-child(8) {
    border-left: 4px solid #5015ff;
    border-right: none;
  }

  .content-diferenca-caliber > div:nth-child(2),
  .content-diferenca-caliber > div:nth-child(4),
  .content-diferenca-caliber > div:nth-child(6) {
    border-left: 4px solid #5015ff;
    border-right: 4px solid #5015ff;
  }

  .diferenca-invisible-cards:nth-child(3),
  .diferenca-invisible-cards:nth-child(6),
  .diferenca-invisible-cards:last-child {
    display: none;
  }

  .quebra-label-footer-caliber {
    display: none;
  }

  .btn-workus {
    width: max-content;
  }
}

@media (min-width: 768px) {
  .reveal-left {
    transform: translateX(-300px);
  }

  .mobile-sobre-vetor {
    display: none;
  }

  .desktop-sobre-vetor {
    display: block;
    min-width: 8rem;
  }

  .sobre-card-content {
    padding: 4rem;
    max-width: 38rem;
  }

  .content-consumer-insights,
  .content-titulo-digital-products,
  .texts-digital-products,
  .praticas-digital-products .list_default,
  .content-growth-performance {
    width: 70%;
  }

  .praticas-growth-performance {
    background-size: 55vw 29rem;
  }

  .titulo-growth-performance {
    align-items: start;
  }

  .growth-second-part > ul {
    width: calc(50% - 2rem);
  }
}

@media (min-width: 960px) {
  .text_default,
  .link_default,
  .list_default li {
    font-size: 1.15rem;
  }

  .content-diferenca-caliber {
    grid-template-columns: repeat(3, 1fr);
  }

  .diferenca-container-border-left {
    border-left: 4px solid #5015ff !important;
    border-right: none !important;
  }
  .diferenca-container-border-right {
    border-right: 4px solid #5015ff !important;
    border-left: none !important;
  }
  .diferenca-container-border {
    border-left: 4px solid #5015ff;
    border-right: 4px solid #5015ff;
  }

  .diferenca-invisible-cards:nth-child(3),
  .diferenca-invisible-cards:nth-child(6),
  .diferenca-invisible-cards:last-child {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-burger-bars,
  .mobile-navigation-menu {
    display: none;
  }

  .desktop-navigation-menu {
    display: flex;
  }

  .container-caliber-logo {
    column-gap: 1.75rem;
  }

  .navigation-menu > ul {
    column-gap: 2rem;
  }

  .navigation-menu a {
    font-size: 14px;
  }

  .desktop-navigation-menu .option-translate {
    margin-left: 0;
  }

  .lang-select {
    font-size: 14px;
  }

  .caliber-logo {
    height: 30px;
  }

  .caliber-logo-topografia {
    height: 18px;
  }

  .list_default {
    max-width: 18rem;
  }

  .decoration-cards {
    display: block;
  }

  .texts-digital-products {
    margin-left: auto;
  }

  .titulo-diferenca-caliber {
    margin: 3rem 0 2rem;
    font-weight: 250;
  }

  .top_title_praticas {
    width: calc(50% - 4rem);
  }
  .content-consumer-insights {
    width: calc(50% - 4rem);
  }
  .content-consumer-insights {
    margin-left: auto;
  }

  .content-titulo-digital-products {
    width: calc(50% - 1rem);
  }
  .texts-digital-products {
    width: calc(50% - 1rem);
    padding-left: 64px;
  }
  .praticas-digital-products .list_default {
    width: calc(50% - 1rem);
  }

  .praticas-growth-performance {
    background-size: 40vw 40rem;
  }

  .titulo-growth-performance,
  .content-growth-performance {
    width: calc(50% - 1rem);
  }

  .growth-second-part {
    padding-left: 24px;
  }

  .growth-second-part {
    column-gap: 2rem;
  }

  .diferenca-invisible-cards {
    border: none !important;
  }

  .diferenca-invisible-cards:nth-child(6) {
    display: block;
  }
}

@media (min-width: 1280px) {
  .content-diferenca-caliber .title_default {
    font-size: 8rem;
    line-height: 8rem;
  }

  .content-diferenca-caliber .text_default,
  .sobre-card-content .text_default {
    font-size: 1.125rem;
  }

  .content-diferenca-caliber {
    grid-template-columns: repeat(4, 1fr);
  }

  .diferenca-invisible-cards:nth-child(5),
  .diferenca-invisible-cards:last-child {
    display: none;
  }

  .lider-sobre p:first-child {
    font-size: 1.875rem;
  }

  .praticas-consumer-insights .first-line {
    border: none;
  }

  .card-border,
  .praticas-business-consulting .top_title_praticas>div:last-child {
    display: flex !important;
  }

  .top_title_praticas {
    width: calc(60% - 4rem);
  }
  .content-consumer-insights {
    width: calc(40% - 4rem);
  }

  .praticas-consumer-insights .first-line {
    border: none;
  }
  .card-border,
  .praticas-business-consulting .top_title_praticas > div:last-child {
    display: flex !important;
  }

  .praticas-growth-performance {
    background-size: 40vw 100vh;
  }

  .footer-caliber-label-imagem p {
    font-size: 2rem;
  }

  .foto-lider,
  .foto-lider > img:first-child,
  .lideranca-vertical-separators {
    height: 20rem;
  }

  .lideranca-vertical-separators {
    display: flex;
  }
  .lideranca-horizontal-separators {
    display: none;
  }

  .lideranca-vertical-separators,
  .lideranca-horizontal-separators {
    column-gap: 6rem;
  }
}

@media (min-width: 1366px) {
  .container-caliber-logo {
    column-gap: 2.5rem;
  }

  .navigation-menu > ul {
    column-gap: 3rem;
  }

  .navigation-menu a {
    font-size: 15px;
  }

  .desktop-navigation-menu .option-translate {
    margin-left: 4rem;
  }

  .lang-select {
    font-size: 15px;
  }

  .caliber-logo {
    height: 38px;
  }

  .praticas-consumer-insights .list_default {
    max-width: 20rem;
  }

  .praticas-digital-products .list_default {
    max-width: 17rem;
  }

  .content-praticas-consumer-insights {
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .title_default {
    font-size: 3.05rem;
    line-height: 1.05;
  }

  .section-praticas .title_default {
    font-size: 3.5rem;
    line-height: 1.05;
  }

  .subtitle_default {
    font-size: 1.6rem;
  }

  .section-praticas .subtitle_default {
    font-size: 1.4rem;
  }

  .text_default_bigger {
    font-size: 1.5rem;
  }

  .text_default,
  .link_default,
  .list_default li {
    font-size: 0.95rem;
  }

  .content-diferenca-caliber .title_default {
    font-size: 5.25rem;
    line-height: 1;
  }

  .lider-sobre p:first-child,
  .footer-caliber-label-imagem p {
    font-size: 1.5rem;
  }

  .icon-spinner,
  .arrow-icon {
    max-height: 135px;
    max-width: 135px;
  }

  .desktop-sobre-vetor {
    width: 28rem;
  }

  .container_content {
    padding: 2rem 3rem;
  }

  .divisors_praticas {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section_container {
    padding: 4rem 0;
  }

  .desktop-sobre-vetor {
    width: 18rem;
  }

  .sobre-information {
    padding: 6rem 0 3rem;
  }

  .sobre-card-content {
    padding: 3rem;
    max-width: 28rem;
  }

  .card-pilar {
    height: 28rem;
    width: 23rem;
    display: grid;
    gap: 1.5rem;
    padding: 2rem 3rem;
  }

  .nossos-pilares-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 0 0 2.5rem;
  }

  .top_title_praticas {
    padding-bottom: 4rem;
  }

  .diferenca-invisible-cards {
    display: block;
  }

  .praticas-consumer-insights {
    background-position: left bottom;
    background-size: 80vw 85vh;
  }

  .praticas-digital-products {
    background-position: left bottom 2rem;
    background-size: 45vw auto;
  }

  .titulo-digital-products {
    gap: 3rem !important;
  }

  .content-praticas-digital-products {
    gap: 2rem;
  }

  .titulo-growth-performance,
  .content-growth-performance {
    width: calc(50% - 1rem);
  }

  .container-growth-performance {
    padding-right: 0;
    padding-bottom: 0;
  }

  .content-growth-performance {
    gap: 2.5rem;
  }

  .praticas-martech-dados {
    background-size: 30vw 100%;
  }

  .praticas-martech-dados > div > div {
    max-width: 44rem;
  }

  .content-martech-dados {
    gap: 2rem;
  }
  .content-martech-dados > div {
    max-width: 22rem;
  }
  .content-martech-dados > ul {
    width: 20rem;
  }

  .section-lideranca {
    column-gap: 2rem;
    row-gap: 4rem;
  }

  .foto-lider {
    width: 100%;
    margin-left: 2rem;
  }
}

@media (min-width: 1600px) {
  .title_default {
    font-size: 4.375rem;
  }
  .section-praticas .title_default {
    font-size: 5.625rem;
  }
  .section-praticas .subtitle_default {
    font-size: 1.75rem;
  }

  .subtitle_default {
    font-size: 2.5rem;
  }
  .text_default_bigger {
    font-size: 2.188rem;
  }
  .text_default,
  .link_default,
  .list_default li {
    font-size: 1.125rem;
  }

  .content-diferenca-caliber .title_default {
    font-size: 6rem;
    line-height: 6rem;
  }
  .content-diferenca-caliber .text_default,
  .sobre-card-content .text_default,
  .lider-sobre .text_default {
    font-size: 1.25rem;
  }

  .lider-sobre p:first-child {
    font-size: 2rem;
  }

  .footer-caliber-label-imagem p {
    font-size: 2.25rem;
  }

  .growth-second-part {
    column-gap: 4rem;
  }

  .card-pilar {
    height: 29rem;
    width: 29rem;
  }

  .titulo-diferenca-caliber {
    margin: 4rem 0 3rem;
  }

  .content-diferenca-caliber {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 3rem;
  }

  .diferenca-invisible-cards:nth-child(5),
  .diferenca-invisible-cards:last-child {
    display: block;
  }

  .sobre-card-content {
    max-width: 37rem;
  }

  .content-titulo-digital-products {
    max-width: 38rem;
  }

  .praticas-business-consulting .top_title_praticas > div {
    width: 15rem !important;
  }

  .titulo-section-lideranca {
    padding: 3rem 3rem 4rem;
  }

  .praticas-martech-dados > div > div {
    max-width: 45rem;
  }
}
