@charset "UTF-8";
/*---------------------------------------
geral
---------------------------------------*/
::selection {
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--bs-green-light); }

.height-100p {
  height: 100%; }

main .col {
  opacity: 0;
  transform: scale(1.1) translate(0, 30px);
  transition: all .4s ease-out; }
  main .col.active {
    opacity: 1;
    transform: none; }

main .always-active .col {
  opacity: 1 !important;
  transform: none !important; }

/*bloco especial */
@media (max-width: 991px) {
  .noBr-mob br {
    display: none; }

  .bg-img-half {
    padding-bottom: calc(100vw + 6em); }
    .bg-img-half .areoi-background {
      top: calc((100%) - 100vw);
      height: calc(100vw); } }
@media (min-width: 992px) {
  .bg-img-half .areoi-background {
    width: 50vw; }
  .bg-img-half.bg-img-half-right .areoi-background {
    left: 50vw; } }
/*---------------------------------------
banner
---------------------------------------*/
header {
  padding: 1.25em 0;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  transition: var(--transition);
  width: 100vw; }
  header.is-hidden {
    transform: translate(0, -110px); }
  header.ativo {
    background-color: var(--bs-light);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2); }

@media (max-width: 991px) {
  header #logo {
    z-index: 12; }
    header #logo a {
      float: left; }
  header .menu-btn,
  header #menu-topo {
    display: none !important; }
  header .btn {
    font-size: 14px;
    padding: 7px 10px;
    float: right; }

  	/* com menu ativo 
  	#menu-topo {
  		position: fixed;
  		top: 0;
  		right: 0;
  		left: 0;
  		bottom: 0;
  		background-color: var(--bs-light);
  		padding: 100px 20px 100px 20px;
          display: flex;
          justify-content: center;
          align-items: center;	
  		transform: translate(-100vw,0);
  		opacity: 0;
  		transition: var(--transition);
  	}
  	// btn ctrole menu 
  	.menu-btn {
  		cursor: pointer;
  		width: 36px;
  		height: 36px;
  		position: relative;
  		overflow: hidden;
  		float:right;
  		left: 0;
  	}
  	.menu-btn .bar {
  		width: 24px;
  		height: 2px;
  		position: absolute;
  		top: 50%;
  		left: 25%;
  		transform: translate(-50%, -50%);
  		background-color: var(--bs-blue);
  		transition: var(--transition);
  		z-index: 12;
  		&:nth-of-type(2) {
  			top: calc(50% - 7px);
  		}
  		&:nth-of-type(3) {
  			top: calc(50% + 7px);
  		}
  	}
  	
  	// menu ativo 
  	.menu-ativo {
  		#menu-topo {
  			transform: none;
  			opacity: 1;
  		}
  		.menu-btn .bar {
  			top: 50%;
  			&:nth-of-type(1) {
  			  display: none;
  			}
  			&:nth-of-type(2) {
  				transform: translate(-50%, 0%) rotate(45deg);  
  			}
  			&:nth-of-type(3) {
  				transform: translate(-50%, 0%) rotate(-45deg); 
  			}	
  		}
  	
  		ul {
  			list-style: none;
  			padding: 0;
  			margin: 0;
  			text-align: center;
  			display: block;
  			li {
  				margin: 1em 0;
  				a {
  				text-transform: uppercase;
  					color: var(--bs-blue);
  					text-decoration: none;
  					font-size: 21px;
  					&:hover {
  						color: var(--bs-blue-dark);
  					}
  				}
  				&.btn {
  					font-size:14px ;
  					line-height: 1em;
  					padding: 10px;
  				}
  			}
  		}
  	}		
  	
  	body.home {
  		header:not(.ativo):not(.menu-ativo) {
  			.menu-btn .bar {
  				background-color: white;
  			}
  		}
  	}
  	*/ }
@media (min-width: 992px) {
  #menu-topo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    display: block; }
    #menu-topo ul li {
      display: inline-block; }
      #menu-topo ul li + li {
        margin-left: 44px; }
      #menu-topo ul li a {
        text-transform: uppercase;
        color: var(--bs-blue);
        text-decoration: none;
        font-size: 14px; }
        #menu-topo ul li a:hover {
          color: var(--bs-blue-dark); }
      #menu-topo ul li.btn {
        font-size: 14px;
        line-height: 1em;
        padding: 10px; }

  body.home header:not(.ativo) ul li:not(.btn) a {
    color: white !important; }
    body.home header:not(.ativo) ul li:not(.btn) a:hover {
      color: var(--bs-purple-light) !important; } }
footer {
  font-size: 14px; }
  footer .sm {
    display: inline-block;
    height: 36px;
    width: 36px;
    background: var(--bs-light); }
    footer .sm:hover {
      background: var(--bs-green-light); }
    footer .sm + .sm {
      margin-left: 8px; }

/*---------------------------------------
banner
---------------------------------------*/
.home-banner {
  min-height: 100vh; }
  .home-banner:after {
    content: 'SCROLL DOWN';
    background-image: url("../images/ico-scroll.svg");
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    position: absolute;
    left: calc(50% - 50px);
    bottom: 5vh;
    padding-top: 53px;
    color: white;
    font-size: 11px;
    width: 80px;
    transition: var(--transition);
    animation-name: scroll_anima;
    animation-duration: 1s;
    animation-iteration-count: infinite; }

@keyframes scroll_anima {
  from {
    background-position: center -15px; }
  to {
    background-position: center -5px; } }
@media (min-width: 992px) {
  .home-banner h1 .translate {
    transform: translate(-8.33vw, 0);
    display: inline-block; } }
.home-tarja {
  font-size: 34px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  height: 140px;
  margin-top: -70px;
  margin-bottom: -70px; }
  .home-tarja .row {
    height: 140px;
    background-color: transparent; }
  .home-tarja p {
    margin: 0; }
  .home-tarja .marquee {
    overflow: hidden;
    display: flex; }
    .home-tarja .marquee p {
      white-space: nowrap; }
  .home-tarja .col {
    padding: 12px 0;
    position: absolute;
    top: calc(50% - 25px);
    transform: rotate(3deg);
    background-color: var(--bs-purple);
    z-index: 2; }
    .home-tarja .col:nth-child(odd) {
      transform: rotate(-2deg);
      background-color: var(--bs-green);
      z-index: 1; }

.home-clientes .wp-block-gallery {
  transform: translate(-30px, 0);
  width: calc(100% + 30px);
  margin: 0;
  position: relative; }
  .home-clientes .wp-block-gallery figure {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px; }
  .home-clientes .wp-block-gallery figcaption {
    display: none;
    position: absolute;
    left: 0%;
    top: 0px;
    background-color: var(--bs-purple);
    font-size: 10px;
    line-height: 1em;
    padding: 3px 8px 3px 26px;
    border-radius: 30px;
    height: 1em;
    width: auto;
    text-transform: uppercase;
    color: white; }
    .home-clientes .wp-block-gallery figcaption:before {
      content: 'via';
      display: inline-block;
      padding: 3px 5px;
      border-radius: 30px;
      background-color: var(--bs-purple-dark);
      position: absolute;
      left: -3px;
      top: 0; }
  .home-clientes .wp-block-gallery img {
    filter: grayscale(1);
    transition: var(--transition); }
    .home-clientes .wp-block-gallery img:hover {
      filter: none;
      transform: scale(1.05); }

/*---------------------------------------
Blocos
---------------------------------------*/
.block-quemsomos {
  padding-bottom: 9em; }
  .block-quemsomos:after {
    content: '';
    background-image: url("../images/bg-quemsomos.svg");
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 43vw;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0; }

/*---------------LG---------------*/
@media (max-width: 991px) {
  .block-quemsomos {
    overflow: hidden; }
    .block-quemsomos:after {
      transform: scale(1.5);
      bottom: 20vw; } }
/*---------------LG---------------*/
@media (min-width: 1920px) {
  .block-quemsomos:after {
    background-size: auto;
    top: 0;
    background-position: center 100px; } }
.block-oquefazemos .title {
  color: var(--bs-blue);
  display: block;
  background-color: var(--bs-light);
  padding: 30px;
  margin-bottom: 15px;
  transition: var(--transition); }
  .block-oquefazemos .title .number {
    color: var(--bs-purple-light);
    border-right: 2px solid var(--bs-green-light);
    display: inline-block;
    padding: 5px 10px !important;
    margin-right: 10px;
    font-size: 24px;
    transition: var(--transition); }
  .block-oquefazemos .title h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2em;
    display: inline-block; }
    .block-oquefazemos .title h3 br {
      display: none; }
  .block-oquefazemos .title .text {
    display: none;
    transition: var(--transition);
    opacity: 0; }
.block-oquefazemos .title:hover:not(.ativo) {
  background-color: var(--bs-green-light);
  cursor: pointer; }
.block-oquefazemos .title.ativo {
  background-color: var(--bs-green-light); }
  .block-oquefazemos .title.ativo .number {
    display: block;
    padding: 5px 0 0;
    font-weight: 500; }
  .block-oquefazemos .title.ativo h3 {
    font-weight: 700; }
    .block-oquefazemos .title.ativo h3 br {
      display: inline-block; }
  .block-oquefazemos .title.ativo .text {
    display: block;
    opacity: 1;
    max-width: 450px; }

/*---------------LG---------------*/
@media (max-width: 991px) {
  .block-oquefazemos .title .number {
    display: inline-block !important;
    padding: 0 10px 0 0 !important;
    border-color: var(--bs-blue);
    width: 40px;
    float: left; }
  .block-oquefazemos .title h3 {
    font-size: 21px;
    max-width: calc(100% - 50px);
    display: inline-block; }
  .block-oquefazemos .title.ativo h3.number {
    display: inline-block;
    padding: 0 10px 0 0 !important; } }
@media (min-width: 992px) {
  .block-oquefazemos {
    display: flex;
    gap: 1em; }
    .block-oquefazemos .title {
      min-height: 445px;
      overflow: hidden; }
      .block-oquefazemos .title .number {
        padding: 0 !important;
        border-right: none;
        border-bottom: 2px solid var(--bs-green-light); }
      .block-oquefazemos .title:not(.ativo) {
        max-width: 130px;
        text-align: center; }
        .block-oquefazemos .title:not(.ativo) h3 {
          min-width: 360px;
          transform: rotate(90deg) translate(15px, -150%);
          transform-origin: top left;
          text-align: left;
          margin: 0; }
          .block-oquefazemos .title:not(.ativo) h3 br {
            display: none; }
      .block-oquefazemos .title.ativo {
        width: auto;
        flex-grow: 10; } }
/*---------------------------------------
swiper equipe
---------------------------------------*/
.swiper-equipe {
  overflow: visible; }
  .swiper-equipe .swiper-slide {
    background-color: var(--bs-green-light);
    padding-bottom: 1em;
    max-width: 20vw; }
    .swiper-equipe .swiper-slide img {
      margin: 0 auto;
      filter: grayscale(1); }
    .swiper-equipe .swiper-slide h3 {
      font-size: 30px;
      color: var(--bs-blue); }
    .swiper-equipe .swiper-slide p {
      color: var(--bs-purple);
      font-weight: inherit;
      font-weight: bold;
      font-size: 14px;
      margin: 0 0 0.5em;
      line-height: 1.5em; }
    .swiper-equipe .swiper-slide a.ico-li {
      mask: url("../images/Ico-sm-in.svg");
      mask-size: cover;
      background: var(--bs-purple);
      display: block;
      height: 30px;
      width: 30px;
      position: absolute;
      right: 1.5em;
      bottom: 1.5em; }
      .swiper-equipe .swiper-slide a.ico-li:hover {
        background: var(--bs-blue); }

/*---------------------------------------
swiper depoimentos
---------------------------------------*/
.swiper-depoimentos {
  overflow: visible; }
  .swiper-depoimentos .swiper-slide {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    transition: var(--transition); }
    .swiper-depoimentos .swiper-slide .avatar {
      min-height: 330px;
      height: 100%;
      max-width: 200px;
      min-width: 200px;
      position: relative; }
      .swiper-depoimentos .swiper-slide .avatar span {
        background-size: cover;
        background-position: center center;
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0; }
      .swiper-depoimentos .swiper-slide .avatar:after {
        mix-blend-mode: multiply;
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: var(--bs-purple-light);
        opacity: 0;
        transition: var(--transition); }
    .swiper-depoimentos .swiper-slide .util {
      display: block;
      font-size: 18px;
      opacity: 0;
      background-image: url("../images/ico-aspas.svg");
      background-position: 1.7rem 1.7rem;
      background-repeat: no-repeat;
      background-color: white;
      max-width: calc(100% - 200px);
      color: var(--bs-blue);
      padding: 1.7rem;
      padding-top: calc(2.7rem + 26px);
      transition: var(--transition); }
      .swiper-depoimentos .swiper-slide .util .autor {
        line-height: 1.3em;
        margin-bottom: 0; }
        .swiper-depoimentos .swiper-slide .util .autor span {
          color: var(--bs-green);
          font-size: 0.85em; }
    .swiper-depoimentos .swiper-slide:not(.swiper-slide-active) .avatar span {
      filter: grayscale(1);
      opacity: 0.5; }
    .swiper-depoimentos .swiper-slide:not(.swiper-slide-active) .avatar:after {
      opacity: 1; }
    .swiper-depoimentos .swiper-slide.swiper-slide-active .util {
      opacity: 1; }
  .swiper-depoimentos .swiper-button-prev,
  .swiper-depoimentos .swiper-button-next {
    background-color: transparent;
    transform: translate(0, -20px); }
  .swiper-depoimentos .swiper-button-prev {
    transform: rotate(180deg) translate(0, 20px); }

/*bloco especial */
@media (min-width: 992px) {
  .swiper-depoimentos .swiper-slide {
    transition: var(--transition); }
    .swiper-depoimentos .swiper-slide.swiper-slide-prev {
      transform: translate(calc(100% - 200px), 0px); } }
/*bloco especial */
@media (min-width: 1200px) {
  .swiper-depoimentos .swiper-slide {
    width: calc(100% - 464px) !important; } }
@media (max-width: 991px) {
  .swiper-depoimentos {
    overflow: visible; }
    .swiper-depoimentos .swiper-slide {
      flex-wrap: wrap;
      flex-direction: column;
      width: 100% !important;
      background-color: white; }
      .swiper-depoimentos .swiper-slide .avatar {
        max-width: calc(100% - 3em);
        min-height: 0;
        height: auto;
        aspect-ratio: 3/4;
        margin: 1.5em 1.5em 0; }
      .swiper-depoimentos .swiper-slide .util {
        max-width: 100%; }
    .swiper-depoimentos .swiper-pagination {
      filter: brightness(10); }
    .swiper-depoimentos .swiper-button-prev,
    .swiper-depoimentos .swiper-button-next {
      display: none; } }
/*---------------------------------------
swiper techs
---------------------------------------*/
.box-tech {
  padding: 20px 0 1px; }
  .box-tech:not(.ativo) .swiper-techs {
    height: 0;
    overflow: hidden; }
  .box-tech.ativo .swiper-techs {
    height: auto; }
  .box-tech:before {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 110vw;
    left: -20vw;
    bottom: 0;
    border-bottom: 1px solid white; }
  .box-tech:last-of-type:before {
    display: none; }
  .box-tech .title {
    padding: 10px 0 20px;
    cursor: pointer; }
    .box-tech .title h3 {
      color: var(--bs-purple);
      display: inline-block;
      line-height: 1em;
      transition: var(--transition); }
    .box-tech .title .number {
      color: var(--bs-green-light);
      border-right: 1px solid white;
      display: inline-block;
      padding: 5px 15px;
      margin-right: 15px;
      font-size: 24px;
      transition: var(--transition); }
    .box-tech .title:hover h3 {
      color: var(--bs-purple-light); }
    .box-tech .title:hover .number {
      color: var(--bs-green); }

.swiper-techs {
  overflow: visible;
  transition: var(--transition); }
  .swiper-techs .swiper-wrapper .swiper-slide {
    width: auto;
    padding: 5px 20px;
    background-color: white;
    overflow: hidden; }
    .swiper-techs .swiper-wrapper .swiper-slide:first-of-type {
      border-radius: 4px 0 0 4px;
      padding-left: 25px; }
    .swiper-techs .swiper-wrapper .swiper-slide:last-of-type {
      border-radius: 0 4px 4px 0;
      padding-right: 25px; }
    .swiper-techs .swiper-wrapper .swiper-slide img {
      height: 70px;
      width: auto;
      transition: var(--transition); }
      .swiper-techs .swiper-wrapper .swiper-slide img:not(:hover) {
        filter: grayscale(1); }
  .swiper-techs .swiper-buttons {
    margin: -10px 0 20px; }

article.cases {
  /*big numbers */
  /* lista de tags */
  /*parceiro */ }
  article.cases .areoi-strip + .areoi-strip {
    padding-top: 0 !important; }
  article.cases h2 {
    margin-top: 1.2em; }
  article.cases h3 {
    font-size: 30px;
    margin-top: 1.2em; }
  article.cases ul:not(.lista-categorias) {
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--bs-purple); }
    article.cases ul:not(.lista-categorias) li {
      padding: 0 0 0.5em 1.5em;
      position: relative; }
      article.cases ul:not(.lista-categorias) li:before {
        content: '•';
        position: absolute;
        left: 0;
        top: 0; }
  article.cases .big-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    margin: 2em 0 1em; }
    article.cases .big-numbers div {
      text-align: center;
      color: var(--bs-blue-dark);
      text-transform: uppercase;
      font-weight: bold;
      padding: 3em 1em 2em; }
      article.cases .big-numbers div p.number {
        margin: 0 0 1rem 0;
        font-size: 3em;
        font-weight: 900; }
      article.cases .big-numbers div:nth-child(3n+1) {
        background-color: var(--bs-green-light); }
        article.cases .big-numbers div:nth-child(3n+1) p.number {
          color: var(--bs-purple-light); }
      article.cases .big-numbers div:nth-child(3n+2) {
        background-color: var(--bs-purple-light); }
        article.cases .big-numbers div:nth-child(3n+2) p.number {
          color: var(--bs-green-light); }
      article.cases .big-numbers div:nth-child(3n) {
        background-color: var(--bs-blue-dark);
        color: var(--bs-light); }
        article.cases .big-numbers div:nth-child(3n) p.number {
          color: var(--bs-green-light); }
    article.cases .big-numbers .colu-2 {
      grid-column: span 2; }
  article.cases ul.lista-categorias {
    list-style: none;
    padding: 0;
    margin: 0; }
    article.cases ul.lista-categorias li {
      display: inline-block;
      position: relative;
      font-size: 14px; }
      article.cases ul.lista-categorias li a {
        color: var(--bs-purple);
        text-decoration: none;
        font-weight: bold; }
        article.cases ul.lista-categorias li a:hover {
          text-decoration: underline; }
      article.cases ul.lista-categorias li:not(:first-child):before {
        content: ' • ';
        display: inline-block;
        padding: 0 0.6em;
        color: var(--bs-purple); }
  article.cases .case-parceiro {
    margin-top: -4em;
    z-index: 1; }
    article.cases .case-parceiro a {
      color: var(--bs-dark); }
      article.cases .case-parceiro a:hover {
        text-decoration: underline;
        color: black; }

.swiper-cases-list {
  overflow: visible; }
  .swiper-cases-list .swiper-slide {
    max-width: 33vw;
    position: relative;
    border: 1px solid white;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    padding: 2em;
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center; }
    .swiper-cases-list .swiper-slide * {
      transition: var(--transition); }
    .swiper-cases-list .swiper-slide .um-case {
      z-index: 1; }
    .swiper-cases-list .swiper-slide h2 {
      color: var(--bs-blue-dark);
      margin: 0;
      font-size: 28px;
      min-height: 3em;
      display: flex;
      align-items: flex-end; }
    .swiper-cases-list .swiper-slide hr {
      background-color: var(--bs-blue-dark);
      height: 2px;
      margin: 0.5em 0; }
    .swiper-cases-list .swiper-slide p {
      color: var(--bs-green);
      font-size: 14px;
      line-height: 1.5em;
      min-height: 6em; }
    .swiper-cases-list .swiper-slide .img-fundo {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background-size: cover;
      background-position: center center;
      opacity: .3;
      filter: grayscale(1) brightness(5); }
    .swiper-cases-list .swiper-slide:before {
      content: '+ INFORMAÇÕES';
      position: absolute;
      left: 3em;
      bottom: 4em;
      font-size: 12px;
      z-index: 2;
      font-weight: bold;
      color: var(--bs-blue-dark); }
    .swiper-cases-list .swiper-slide:hover {
      border-color: transparent; }
      .swiper-cases-list .swiper-slide:hover h2 {
        color: white; }
      .swiper-cases-list .swiper-slide:hover hr {
        background-color: white; }
      .swiper-cases-list .swiper-slide:hover .img-fundo {
        opacity: 1;
        transform: scale(1.05);
        filter: none; }
      .swiper-cases-list .swiper-slide:hover p {
        color: var(--bs-green-light); }
      .swiper-cases-list .swiper-slide:hover:before {
        color: white; }

.cases-gallery {
  column-count: 2;
  margin: 1em 0; }
  .cases-gallery img {
    width: 100%;
    height: auto;
    display: block; }
  .cases-gallery img, .cases-gallery video {
    margin: 0.5em 0;
    overflow: hidden;
    border-radius: 4px; }

@media (max-width: 991px) {
  .swiper-cases-list .swiper-slide {
    padding: 1em;
    max-width: 90vw;
    aspect-ratio: 3/5;
    border-color: transparent; }
    .swiper-cases-list .swiper-slide h2 {
      font-size: 20px; }
    .swiper-cases-list .swiper-slide h2 {
      color: white; }
    .swiper-cases-list .swiper-slide hr {
      background-color: white; }
    .swiper-cases-list .swiper-slide .img-fundo {
      opacity: 1; }
    .swiper-cases-list .swiper-slide:before {
      color: white; } }
/*---------------------------------------
blog
---------------------------------------*/
.blog-single {
  text-align: justify; }
  .blog-single h1 {
    font-size: 2.5em;
    color: var(--bs-blue-dark);
    text-align: left; }
  .blog-single h2 {
    font-size: 1.75em;
    color: var(--bs-blue-dark);
    margin: 1em 0 0.5em; }
  .blog-single h3 {
    font-size: 1.4em;
    color: var(--bs-blue-dark);
    margin: 1em 0 0.5em; }

.blog-cover {
  color: white;
  margin-top: 95px;
  height: 50vh;
  max-height: 50vw;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative; }
  .blog-cover:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5116640406) 20%, rgba(0, 0, 0, 0) 99%); }
