    /*-------------------------------
Como Funciona
-------------------------------*/
/* Global ==============================*/
.text-justify {
    text-align: justify;
}

/* Remove fundo do header */
.hd-search,
.hd-nav::before,
.hd-nav::after {
    background: none;
}

/* Deixa o logotipo branco */
.main-logo {
    filter: brightness(100);
}

/* Remove o fundo do html */
html.creative-bg {
    background: none;
    clip-path: none;
}

/* Estrutura */
.container {
    max-width: 1188px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Banner Interno ==============================*/
.banner {
    position: relative;
    width: 100%;
    height: 440px;
    margin: 0 auto;
}

.banner__imagem {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.banner__texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner__texto__titulo {
    font-size: 3rem;
    font-weight: normal;
    margin: 0 0 10px 0;
}

/* BREADCRUMBER */
.hero-breadcrumber{
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-breadcrumber-item{
  padding: .15rem .35rem;
  border-right: 1px solid var(--white);
  vertical-align: middle;
  display: inline-block;
}
.hero-breadcrumber-item:last-of-type{
  border: none;
}
.hero-breadcrumber-link{
  font-size: .75rem;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}
.hero-breadcrumber-link[data-active]{
  color: var(--color-secondary);
  pointer-events: none;
}

/* .banner__breadcrumbs {
    display: flex;
    align-items: center;
}

.banner__breadcrumbs__link {
    color: #fff;
    text-decoration: none;
    transition: color .3s;
}

.banner__breadcrumbs__link:hover {
    color: var(--color-secondary);
} */

/* Passos ==============================*/
.passos {
    margin: 100px 0;
}

.passos__wrapper {
    display: flex;
    flex-direction: column;
}

.passos__item {
    display: flex;
    align-items: center;
}

.passos__item:nth-child(odd) {
    align-self: flex-end;
}

.passos__item__esquerda {
    display: flex;
    align-items: center;
}

.passos__item__numero {
    font-family: 'Baloo 2', cursive;
    color: var(--color-primary);
    font-size: 250px;
    display: block;
    position: relative;
}

.passos__item__numero::after {
    content: 'passo';
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-primary);
    font-size: 17px;
    letter-spacing: 2px;
    position: absolute;
    bottom: 48px;
    right: 50px;
}

.passos__item:nth-of-type(1) .passos__item__numero::after {
    left: 25px;
    bottom: 0;
}
.passos__item:nth-of-type(2) .passos__item__numero::after {
    left: 45px;
    bottom: 0;
}
.passos__item:nth-of-type(3) .passos__item__numero::after {
    left: 43px;
    bottom: 0;
}
.passos__item:nth-of-type(4) .passos__item__numero::after {
    bottom: 0px;
    right: 45px;
}

.passos__item__imagem {
    border-radius: 15px;
    overflow: hidden;
    transform: skewX(347deg);
    margin-left: -25px;
    margin-top: -21px;
    width: 240px;
    height: 158px;
}

.passos__item__imagem__wrapper {
    transform: skewX(13deg);
    width: 114%;
    margin-left: -17px;
    height: 100%;
}

.passos__item__imagem__wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: -1;    
    display: block;
}

.passos__item__imagem img {
    width: 100%;
    height: 100%;    
    object-fit: cover;
    object-position: center;
    mix-blend-mode: lighten;
}

.passos__item__direita {
    margin-top: -45px;
    margin-left: 23px;
}

.passos__item__titulo {
    background: var(--color-secondary);
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 19px;
    height: 45px;
    line-height: 45px;
    width: 310px;
    border-bottom-right-radius: 55px;
    border-top-right-radius: 23px;
    padding-left: 40px;
    margin-left: -20px;
}

.passos__item__paragrafo {
    color: var(--infog-cl-txt);
    font-size: 14px;
    font-weight: 600;
    max-width: 400px;
    line-height: 1.25rem;
    text-align: justify;
}
