/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
  font-family: "Onest", serif;
}

body {
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: #f5f5f5;
  transition: All 0.5s ease;
  cursor: pointer;
}

.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
  padding: 2rem 0;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 124rem;
    box-sizing: border-box;
    padding: 0.8rem 2rem;
  }
}

.topo, .topo-work {
  position: absolute;
  background: #982428;
  width: 100%;
  height: 12rem;
  z-index: 1;
  border-bottom-right-radius: 0rem;
  transition: All 0.5s ease;
}
.topo__desk {
  display: block;
  height: 7.2rem;
  max-width: 100%;
  visibility: visible;
}
.topo__mb {
  display: none;
}
.topo nav a:first-of-type, .topo-work nav a:first-of-type {
  display: block;
}
.topo__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  width: 100%;
  max-width: 48%;
}
.topo__links-each {
  font: 300 1.6rem/2rem "Onest", serif;
  letter-spacing: 0.8px;
  color: #f5f5f5;
}
.topo__links-each:hover {
  font-weight: 800;
  letter-spacing: 0.9px;
  color: #d9d9d9;
}
.topo__btn {
  display: none;
}
.topo .topo-contact, .topo-work .topo-contact {
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .topo, .topo-work {
    position: absolute;
    top: 0;
    background: rgba(152, 36, 40, 0.7);
    width: 100%;
    height: 10rem;
    padding: 0.4rem 1rem;
    box-sizing: border-box;
  }
  .topo__desk {
    display: none;
  }
  .topo__mb {
    display: block;
    max-width: 100%;
    height: 7rem;
  }
  .topo nav a:first-of-type, .topo-work nav a:first-of-type {
    display: none;
  }
  .topo__links {
    display: none;
  }
  .topo__btn {
    display: block;
    background: transparent;
    border: none;
    outline: transparent;
    font: 400 2rem/6rem "Onest", serif;
    cursor: pointer;
    width: auto;
    height: auto;
    display: block;
    z-index: 1;
  }
  .topo__btn-bar {
    display: block;
    transition: All 0.5s ease;
  }
  .topo__btn-bar-1, .topo__btn-bar-2, .topo__btn-bar-3 {
    width: 3.5rem;
    height: 0.3rem;
    background: #fff;
    margin-top: 0.5rem;
    border-radius: 0.8rem;
  }
  .topo__btn-bar-1--active {
    transform: rotate(45deg);
    margin-top: 0.4rem;
    height: 0.4rem;
  }
  .topo__btn-bar-2--active {
    display: none;
  }
  .topo__btn-bar-3--active {
    transform: rotate(-45deg);
    margin-top: 0.4rem;
    height: 0.4rem;
  }
  .topo .topo-contact, .topo-work .topo-contact {
    height: 15rem;
  }
  .topo .topo-contact a, .topo-work .topo-contact a {
    color: var(--clr-heat-normal);
  }
}

.topo-work {
  background: none;
}
.topo-work .topo__links-each:hover {
  color: #f5f5f5;
}

.intro {
  padding: 5.6rem 2rem;
  box-sizing: border-box;
}
.intro__desc {
  color: #f5f5f5;
  font: 100 2.8rem/4.2rem "Onest", serif;
}

.modal {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  top: -50rem;
  right: 0;
  height: 0;
  width: 100%;
  transition: All 0.5s ease;
}
.modal--active {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  visibility: visible;
  background: #982428;
  height: 100vh;
  width: 100%;
  z-index: 2;
  opacity: 0.99;
  transition: All 0.5s ease;
}
.modal--active .close {
  position: absolute;
  right: 3.2rem;
  top: 3.2rem;
  color: #f5f5f5;
  font-size: 2.4rem;
}
.modal--active .modal__inside {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal--active .modal__inside-links {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
}
.modal--active .modal__inside-link {
  font: 400 2rem/6rem "Onest", serif;
  letter-spacing: 0.1rem;
  text-decoration: underline;
  text-decoration: 0.1rem;
}

.modal-video {
  position: fixed;
  visibility: hidden;
  transition: All 0.5s ease;
}
.modal-video--active {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  visibility: visible;
  z-index: 99;
}
.modal-video--active .video-demo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 0 2rem;
  width: 100%;
  max-width: 144rem;
  border-radius: 2rem;
}
.modal-video-close {
  font-size: 2.4rem;
  color: #f5f5f5;
  position: absolute;
  inset: 2rem 4rem 2rem 2rem;
  direction: rtl;
  cursor: pointer;
}

section {
  width: 100%;
}

.form {
  width: 100%;
}

.title {
  font: 900 3.6rem/3.7rem "Onest", serif;
  text-transform: uppercase;
  color: #982428;
}

/******************hero********************/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f5f5f5;
  width: 20rem;
  height: 20rem;
  border-radius: 100%;
  z-index: 1;
  cursor: pointer;
  transition: All 0.5s ease;
}
.hero__btn:hover {
  width: 20.4rem;
  height: 20.4rem;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
}
.hero__btn--play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%) rotate(90deg);
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-left: 5.5rem solid transparent;
  border-right: 5.5rem solid transparent;
  border-bottom: 7.5rem solid #f5f5f5;
}
.hero__container {
  position: absolute;
  top: 5vh;
  height: 92vh;
  width: 100vw;
  cursor: pointer;
  object-fit: cover;
  object-position: 50% 50%;
  transition: All 0.8s ease 100ms;
  filter: grayscale(1) contrast(1.15);
}
.hero__container:hover {
  transform: sclae(1.05);
  filter: grayscale(0.8) contrast(1.1);
}
@media screen and (max-width: 1440px) {
  .hero {
    height: 80vh;
  }
  .hero__btn {
    width: 120px;
    height: 120px;
  }
  .hero__btn:hover {
    width: 12.24rem;
    height: 12.24rem;
  }
  .hero__btn--play {
    border-top: 0px solid transparent;
    border-left: 3.2rem solid transparent;
    border-right: 3.2rem solid transparent;
    border-bottom: 5.2rem solid #f5f5f5;
  }
}

.trabalho {
  width: 100%;
  height: 70rem;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .trabalho {
    height: 60vh;
  }
}

.trabalho__infos {
  position: relative;
  float: left;
  width: 40%;
  height: 92rem;
  border-top-right-radius: 20rem;
  margin-top: -16rem;
  box-sizing: border-box;
  padding: 12rem 2rem 2rem 12.5%;
  z-index: 1;
  background-color: #982428;
}
.trabalho__infos-title {
  font: 900 3.2vw/7.2vh "Onest", serif;
  color: #f5f5f5;
  text-transform: uppercase;
}
.trabalho__infos-sub {
  color: #f5f5f5;
  font: 100 3.6rem/5.2rem "Onest", serif;
  font-weight: 300;
  margin-top: 2rem;
}
.trabalho__infos-txt {
  color: #333333;
  font: 100 3.6rem/5.2rem "Onest", serif;
}
@media screen and (max-width: 1440px) {
  .trabalho__infos {
    clear: both;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 4.8rem 2rem;
    border-radius: 0;
  }
  .trabalho__infos-title {
    font: 900 12vw/7.2vh "Onest", serif;
  }
  .trabalho__infos-sub {
    font: 100 2.8rem/4.2rem "Onest", serif;
    font-weight: 300;
  }
  .trabalho__infos-txt {
    font: 100 2.8rem/4.2rem "Onest", serif;
  }
}

.trabalho__description {
  float: left;
  width: 55%;
  padding: 4.8rem 6.6% 0 4rem;
  box-sizing: border-box;
}
.trabalho__description-txt {
  font: 100 3.6rem/5.2rem "Onest", serif;
  color: #333333;
  margin-bottom: 2rem;
}
.trabalho__description-link {
  font: 100 3.6rem/5.2rem "Onest", serif;
  color: #982428;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  margin-top: 2rem;
}
@media screen and (max-width: 1440px) {
  .trabalho__description {
    clear: both;
    width: 100%;
    padding: 4.8rem 2rem;
  }
  .trabalho__description-txt {
    font: 100 2.8rem/4.2rem "Onest", serif;
  }
  .trabalho__description-link {
    font: 100 2.8rem/4.2rem "Onest", serif;
  }
}

/*****************intro********************/
.work {
  background-color: #f5f5f5;
  width: 100%;
  max-width: 144rem;
  margin: 10rem auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  box-sizing: border-box;
}
.work__intro {
  padding: 0 5.6rem;
  height: 50vh;
  align-content: center;
  display: block;
  position: relative;
  background-color: #f5f5f5;
  flex: 1 1 72rem;
  margin: 2rem 0;
  border-right: 0.5px solid #982428;
  box-sizing: border-box;
}
.work__intro .intro__desc {
  color: #333333;
}
.work__feature {
  padding-left: 2rem;
  flex: 1 1 72rem;
}
.work__feature-card {
  position: relative;
}
.work__feature-card-txt {
  font: 300 1.6rem/2rem "Onest", serif;
  letter-spacing: 0.8px;
  color: #f5f5f5;
}
.work__feature-card-title {
  font: 900 3.6rem/3.7rem "Onest", serif;
  color: #f5f5f5;
  text-transform: uppercase;
}
.work__feature-card-sub {
  font: 300 1.6rem/2rem "Onest", serif;
  letter-spacing: 1.5px;
  line-height: 1rem;
  text-transform: uppercase;
  color: #f5f5f5;
}
.work__feature-card .work__feature-card-arrow {
  color: #f5f5f5;
  font-size: 2.4rem;
}
.work__feature-label {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  position: absolute;
  height: 12rem;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 4rem;
  box-sizing: border-box;
  background-color: rgba(152, 36, 40, 0.7);
}
.work__feature-img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  object-position: 50%;
}
@media screen and (max-width: 1440px) {
  .work {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    margin: 5rem auto;
  }
  .work__intro {
    height: auto;
    margin: 10rem 0;
    padding: 0 2rem;
    box-sizing: border-box;
    border-right: none;
    flex: 1;
  }
  .work__feature {
    width: 100%;
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    flex: 1;
  }
  .work__feature-card-title {
    font: 900 2.8rem/3.6rem "Onest", serif;
  }
  .work__feature-label {
    height: 16rem;
    padding: 2rem;
    box-sizing: border-box;
    z-index: 1;
  }
}

/***************portifolio*******************/
.portifolio {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  margin: 10rem 0;
  width: 100%;
}
.portifolio__cards {
  flex: 1 1 63.4rem;
  position: relative;
  filter: grayscale(0.75) brightness(1);
}
.portifolio__cards:hover .portifolio__cards-title {
  top: 50%;
  cursor: pointer;
}
.portifolio__cards:hover .portifolio__cards-desc {
  top: 50%;
  cursor: pointer;
}
.portifolio__cards:hover .portifolio__cards-img {
  filter: grayscale(0.5) brightness(0.4) blur(1.5px);
}
.portifolio__cards-img {
  width: 100%;
  height: 37rem;
  object-fit: cover;
  transition: All 0.5s ease;
}
.portifolio__cards-title {
  position: absolute;
  top: 44rem;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
  font: 900 3.6rem/3.7rem "Onest", serif;
  color: #f5f5f5;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  transition: All 0.5s ease;
}
.portifolio__cards-desc {
  position: absolute;
  top: 44rem;
  left: 50%;
  transform: translate(-50%, 200%);
  font: 300 1.6rem/2rem "Onest", serif;
  color: #f5f5f5;
  text-decoration: underline;
  transition: All 0.8s ease 100ms;
}
@media screen and (max-width: 1440px) {
  .portifolio__cards:hover .portifolio__cards-desc {
    top: 50%;
  }
}

/***************trabalhos*******************/
.trabalhos {
  background-color: #982428;
  height: 40rem;
}
.trabalhos__title {
  font: 100 3.6rem/5.2rem "Onest", serif;
  padding-bottom: 4rem;
  color: #f5f5f5;
  width: 56%;
  margin-top: 16rem;
}
@media screen and (max-width: 1440px) {
  .trabalhos__title {
    font: 100 2.8rem/4.2rem "Onest", serif;
    width: 100%;
  }
}

.portifolio-page {
  background-color: #982428;
  padding-top: 5.8rem;
  padding-bottom: 10rem;
}
.portifolio-page__card {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  padding: 1rem 4.8rem;
  box-sizing: border-box;
  gap: 4rem;
  width: 100%;
}
.portifolio-page__card-img {
  position: relative;
  flex: 1 1 50%;
  max-width: 50%;
  height: 52rem;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: All 0.5s ease;
}
.portifolio-page__card-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.4;
  transition: All 0.5s ease;
  z-index: 2;
}
.portifolio-page__card-img:hover.portifolio-page__card-img {
  opacity: 0.95;
  object-position: 50% 51%;
}
.portifolio-page__card-infos {
  flex: 1 1 50%;
  max-width: 50%;
  height: 52rem;
  align-content: center;
  box-sizing: border-box;
}
.portifolio-page__card-title {
  color: #f5f5f5;
  font: 900 9.2rem/9.6rem "Onest", serif;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.portifolio-page__card .odd {
  text-align: right;
}
.portifolio-page__card-txt {
  color: #f5f5f5;
  font: 100 2.8rem/4.2rem "Onest", serif;
  letter-spacing: 0.4px;
  margin: 1.2rem 0;
}
.portifolio-page__card-legend {
  font: 400 2rem/6rem "Onest", serif;
  font-weight: 100;
  line-height: 2rem;
  color: #d9d9d9;
  text-decoration: underline;
  text-decoration-color: #d9d9d9;
}
@media screen and (max-width: 1440px) {
  .portifolio-page__card {
    flex-wrap: wrap;
    padding: 1rem 0;
    align-items: flex-start;
  }
  .portifolio-page__card-img {
    flex: 1;
    max-width: 100%;
    height: 40rem;
  }
  .portifolio-page__card-infos {
    flex: 1;
    height: 16rem;
    margin-bottom: 8rem;
    max-width: 100%;
    align-content: flex-start;
  }
  .portifolio-page__card-title {
    font: 900 3.6rem/3.7rem "Onest", serif;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .portifolio-page__card .odd {
    order: 1;
    text-align: left;
  }
  .portifolio-page__card-txt {
    font: 100 2.8rem/4.2rem "Onest", serif;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .portifolio-page__card-legend {
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .portifolio-page .portifolio-page__card:nth-child(even) .portifolio-page__card-img {
    order: 1;
  }
  .portifolio-page .portifolio-page__card:nth-child(even) .portifolio-page__card-infos {
    order: 2;
  }
}

/*************about*******************/
.head-about {
  font: 100 3.6rem/5.2rem "Onest", serif;
  margin: 18rem 0;
  color: #f5f5f5;
}
@media screen and (max-width: 1440px) {
  .head-about {
    font: 100 2.8rem/4.2rem "Onest", serif;
  }
}

.about {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  height: 12rem;
  box-sizing: border-box;
}
.about__services {
  width: 36rem;
  height: 28rem;
  padding: 1.6rem 2rem;
  box-sizing: border-box;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background-color: #d9d9d9;
}
.about__services:first-of-type {
  background-color: #494949;
}
.about__services:first-of-type .about__services-title {
  color: #f5f5f5;
}
.about__services:first-of-type .about__services-desc {
  color: #f5f5f5;
}
.about__services-img {
  height: 10rem;
}
.about__services svg {
  width: 10rem;
  height: 10rem;
}
.about__services-icon {
  fill: none;
  stroke: #f5f5f5;
  stroke-linejoin: round;
  stroke-width: 0.5rem;
}
.about__services-title {
  font: 900 2.8rem/3.6rem "Onest", serif;
  margin-top: 2rem;
  color: #333333;
}
.about__services-desc {
  font: 300 1.6rem/2rem "Onest", serif;
  color: #333333;
}
@media screen and (max-width: 1440px) {
  .about {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  .about__services {
    width: 100%;
    height: 34rem;
    padding: 2.8rem 4rem;
    border-radius: 2rem;
  }
  .about__services-img {
    display: block;
    margin: 0 auto;
    transform: scale(1.08);
  }
  .about__services-title {
    margin-top: 6rem;
  }
  .about__services-title, .about__services-desc {
    text-align: center;
  }
}

.founders {
  flex-direction: column;
  justify-content: center;
  margin-top: 16rem;
  margin-bottom: 10rem;
}
.founders__txt {
  font: 100 3.6rem/5.2rem "Onest", serif;
  color: #333333;
  text-align: center;
  margin: 6rem 0;
}
.founders__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  gap: 1.6rem;
  width: 100%;
}
.founders__cards-img {
  width: 36rem;
  height: 44rem;
  background-color: #333333;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .founders__txt {
    font: 100 2.8rem/4.2rem "Onest", serif;
  }
  .founders__cards {
    flex-direction: column;
  }
  .founders__cards-img {
    width: 100%;
  }
}

.info-company {
  flex-direction: column;
  margin-top: 15rem;
}
.info-company__title {
  font: 900 3.6rem/3.7rem "Onest", serif;
  color: #982428;
  text-transform: uppercase;
}
.info-company__desc {
  font: 100 3.6rem/5.2rem "Onest", serif;
  color: #333333;
  margin: 4rem 4rem;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .info-company__title {
    font: 900 2.8rem/3.6rem "Onest", serif;
  }
  .info-company__desc {
    font: 100 2.8rem/4.2rem "Onest", serif;
    margin: 4rem 0;
  }
}

.feature {
  font-weight: 900;
  color: #982428;
}

/*************conheca*******************/
.conheca {
  width: 100%;
  margin: 0 auto;
}
.conheca__txt {
  text-align: center;
  font: 100 3.6rem/5.2rem "Onest", serif;
  letter-spacing: 0.5px;
}
.conheca__btn {
  display: block;
  background: #333333;
  border: none;
  outline: transparent;
  font: 400 2rem/6rem "Onest", serif;
  cursor: pointer;
  width: 24rem;
  height: 6rem;
  color: #f5f5f5;
  margin: 3.2rem auto;
  transition: All 0.5s ease;
}
.conheca__btn:hover {
  transform: scale(1.04);
  background-color: #494949;
}
@media screen and (max-width: 1440px) {
  .conheca__txt {
    font: 100 2.8rem/4.2rem "Onest", serif;
    letter-spacing: 0;
  }
}

/****************partners*****************/
.partners {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  margin: 10rem 0;
}
.partners__title {
  font: 900 10.4rem/9.2rem "Onest", serif;
  color: rgba(152, 36, 40, 0.7);
  text-transform: uppercase;
  margin: 2rem 0;
  flex: 1 1 20vw;
}
.partners__logos {
  flex: 1 1 80vw;
  overflow: hidden;
}
.partners__logos-line {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  animation: slide 30s linear infinite;
  animation-play-state: running;
}
.partners__logos-line--img {
  height: 8.8rem;
  margin: 0 6rem;
  filter: grayscale(1) contrast(0.4);
}
@keyframes slide {
  from {
    transform: translateX(80%);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1440px) {
  .partners {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    flex-direction: column;
  }
  .partners__title {
    flex: 1;
  }
  .partners__logos {
    flex: 1;
    max-width: 100%;
    margin-top: 2rem;
  }
  .partners__logos-line {
    animation-duration: 30s;
  }
  @keyframes slide {
    from {
      transform: translateX(55%);
    }
    to {
      transform: translateX(-550%);
    }
  }
}

/****************partners*****************/
.services {
  width: 100%;
  position: relative;
}
.services__img {
  width: 100%;
  height: 72rem;
  filter: blur(1px);
  object-fit: cover;
  transition: All 0.5s ease;
  animation: entrance 1s;
}
.services__categorie {
  position: absolute;
  top: 32vh;
  margin: 0 24rem;
  width: 40%;
}
.services__categorie-title {
  font: 900 9.2rem/9.6rem "Onest", serif;
  text-transform: uppercase;
  color: #f5f5f5;
}
.services__categorie-desc {
  font: 100 2.8rem/4.2rem "Onest", serif;
  color: #f5f5f5;
  font-weight: 200;
}
@media screen and (max-width: 1440px) {
  .services__img {
    height: 80vh;
  }
  .services__categorie {
    top: 32vh;
    margin: 0 2rem;
    width: 36rem;
  }
  .services__categorie-title {
    font: 900 3.6rem/3.7rem "Onest", serif;
  }
  .services__categorie-desc {
    font: 100 2.8rem/4.2rem "Onest", serif;
  }
}
@keyframes entrance {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scene {
  height: 50vh;
  justify-content: center;
  perspective: 280rem;
  margin-top: -24rem;
}
.scene__roulete {
  position: relative;
  display: block;
  width: 32rem;
  height: 42rem;
  transform-style: preserve-3d;
  transform: rotateX(-5deg);
  transition: All 0.8s ease 100ms;
}
.scene__roulete-card {
  --i:0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22rem !important;
  height: 30rem !important;
  border-radius: 2rem;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden;
  color: #f5f5f5;
  transform: translate(-50%, -50%) rotateY(calc(var(--i) * 60deg)) rotateX(-5deg) translateZ(42rem);
  box-shadow: 3px 1px 6px 0 rgba(0, 0, 0, 0.25);
  background: linear-gradient(45deg, #982428, #72171a);
  transition: All 0.6s ease-in-out 50ms;
}
.scene__roulete-card:nth-child(1) {
  --i: 0;
}
.scene__roulete-card:nth-child(2) {
  --i: 1;
}
.scene__roulete-card:nth-child(3) {
  --i: 2;
}
.scene__roulete-card:nth-child(4) {
  --i: 3;
}
.scene__roulete-card:nth-child(5) {
  --i: 4;
}
.scene__roulete-card:nth-child(6) {
  --i: 5;
}
.scene__roulete svg {
  margin-top: 3.2rem;
  width: 8rem;
  height: 8rem;
}
.scene__roulete .cls-1 {
  fill: #f5f5f5;
  stroke: #f5f5f5;
  stroke-linejoin: round;
  stroke-width: 0.1rem;
}
.scene__roulete .cls-2 {
  fill: none;
  stroke: #f5f5f5;
  stroke-linejoin: round;
  stroke-width: 0.5rem;
}
.scene__roulete-title {
  font: 900 2.8rem/3.6rem "Onest", serif;
  color: #f5f5f5;
  text-transform: uppercase;
  margin-top: 2rem;
}
.scene__roulete-desc {
  font: 300 1.6rem/2rem "Onest", serif;
  font-weight: 100;
  color: #f5f5f5;
}
.scene__roulete-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(1px);
}
@media screen and (max-width: 1440px) {
  .scene {
    perspective: 240rem;
    margin-top: -28rem;
    width: 100%;
    height: 56rem;
    overflow: hidden;
  }
}

.roullete-destaque {
  transform: scale3d(1.1, 1.1, 1.1) translate(-50%, -50%) rotateY(calc(var(--i) * 60deg)) rotateX(-5deg) translateZ(42rem);
  transition: All 0.6s ease-in-out 50ms;
}

.scene__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  width: 28rem;
  margin-top: -8rem;
}
.scene__nav-left, .scene__nav-right {
  z-index: 1;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #f5f5f5;
  border-radius: 50%;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
  align-content: center;
  text-align: center;
  cursor: pointer;
  transition: All 0.5s ease;
}
.scene__nav-left:hover, .scene__nav-right:hover {
  transform: scale(1.05);
}

.metrics {
  width: 100%;
  height: 20rem;
  background-color: #982428;
  margin: 16rem 0 10rem;
  align-content: center;
}
.metrics__clients {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
  align-content: center;
  border-right: 1px solid #f5f5f5;
  flex: 1 1 33%;
}
.metrics__clients:nth-child(3) {
  border-right: none;
}
.metrics__numbers {
  font: 900 3.6rem/3.7rem "Onest", serif;
  color: #f5f5f5;
}
.metrics__desc {
  font: 100 2.8rem/4.2rem "Onest", serif;
  color: #f5f5f5;
}
@media screen and (max-width: 1440px) {
  .metrics {
    height: auto;
  }
  .metrics .container {
    flex-direction: column;
  }
  .metrics__clients {
    padding: 3.2rem 0;
    border-right: none;
    height: 16rem;
    border-bottom: 1px solid #f5f5f5;
    flex: 1;
  }
  .metrics__clients:nth-child(3) {
    border-bottom: none;
  }
}

/*******************contato******************/
.contato {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  background: linear-gradient(45deg, #982428, #72171a);
  width: 100%;
  border-radius: 3.2rem;
  margin: 5rem 0 24rem;
  padding: 1.2rem 4rem;
  box-sizing: border-box;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
}
.contato__info {
  flex: 1 1 36%;
  padding: 0 3.2rem;
  box-sizing: border-box;
}
.contato__info-title {
  font: 900 3.6rem/3.7rem "Onest", serif;
  color: #f5f5f5;
  text-transform: uppercase;
}
.contato__info-txt {
  font: 300 1.6rem/2rem "Onest", serif;
  margin: 2rem 0;
  color: #f5f5f5;
}
.contato__form {
  flex: 1 1 64%;
  padding: 5rem 4rem;
  box-sizing: border-box;
}
.contato__form .form {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
  flex-direction: column;
}
.contato__form .form__services {
  color: #f5f5f5;
  font: 900 2.8rem/3.6rem "Onest", serif;
  margin: 0 0 1.2rem;
}
.contato__form .form__check {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  gap: 4rem;
}
.contato__form .form__check-itens {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  color: #f5f5f5;
  margin: 2rem 0;
  font: 300 1.6rem/2rem "Onest", serif;
}
.contato__form .form__check-itens input {
  outline: none;
  border: none;
  margin: 0 1rem 0 0;
  background: #f5f5f5;
  width: 2rem;
  height: 2rem;
}
.contato__form .form__fill {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  gap: 0.2rem;
}
.contato__form .form__fill-itens {
  flex: 1 1 45%;
  border: none;
  border-bottom: 1px solid #494949;
  outline: none;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
  font: 300 1.6rem/2rem "Onest", serif;
  color: #333333;
  border-radius: 0.2rem;
}
.contato__form .form__fill-itens::placeholder {
  font: 300 1.6rem/2rem "Onest", serif;
  letter-spacing: 0.2px;
  color: #7c7c7c;
}
.contato__form .form__fill-itens:focus {
  outline: 2px solid #494949;
}
.contato__form .form__fill #msg {
  width: 100%;
  border-radius: 0.2rem;
  font: 300 1.6rem/2rem "Onest", serif;
  margin: 1.2rem 0;
  color: #494949;
  padding: 1rem 1.2rem;
}
.contato__form .form__fill #msg::placeholder {
  font: 300 1.6rem/2rem "Onest", serif;
  letter-spacing: 0.2px;
  color: #7c7c7c;
}
.contato__form .form__fill #msg:focus {
  outline: 2px solid #494949;
}
.contato__form .form__fill--btn {
  width: 16rem;
  height: 4rem;
  background-color: #f5f5f5;
  font: 300 1.6rem/2rem "Onest", serif;
  font-weight: 800;
  color: #982428;
  border: none;
  outline: none;
  cursor: pointer;
  transition: All 0.5s ease;
}
.contato__form .form__fill--btn:hover {
  background-color: #d9d9d9;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1440px) {
  .contato {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    padding: 4rem 2rem;
    box-sizing: border-box;
    margin: 5rem 0;
  }
  .contato__info {
    padding: 0;
    flex: 1;
  }
  .contato__form {
    flex: 1;
    padding: 5rem 0;
  }
  .contato__form .form__check {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
  }
  .contato__form .form__check-itens {
    margin: 0.4rem 0;
  }
}

.contato__wpp {
  position: fixed;
  bottom: 3.2rem;
  right: 32rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(45deg, #24984d, #53c57b);
  border-radius: 50%;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
  transition: All 0.5s ease;
  align-content: center;
  cursor: pointer;
  z-index: 99;
}
.contato__wpp:hover {
  transform: scale(1.02);
}
.contato__wpp-img {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 4rem;
}
@media screen and (max-width: 1440px) {
  .contato__wpp {
    right: 2rem;
  }
}

/*******************footer******************/
footer {
  position: relative;
  background-color: #982428;
  box-sizing: border-box;
  padding: 2rem 2rem 3rem;
  margin-top: 15rem;
  width: 100%;
}

.footer-trabalho {
  background-color: #333333;
  height: 20rem;
  float: left;
  margin-top: 0;
}
@media screen and (max-width: 1440px) {
  .footer-trabalho {
    height: auto;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
}
.footer__column {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  position: relative;
  gap: 6rem;
  z-index: 2;
  margin: 2rem 0;
}
.footer__column-itens {
  font: 300 1.6rem/2rem "Onest", serif;
  transition: All 0.5s ease;
}
.footer__column-itens:hover {
  font-weight: 800;
  letter-spacing: 0.4px;
}
.footer__column .fa-brands {
  font-size: 2.4rem;
  transition: All 0.5s ease;
}
.footer__column .fa-brands:hover {
  transform: scale(1.08);
}
@media screen and (max-width: 1440px) {
  .footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
  }
  .footer__column:first-of-type {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
  }
  .footer__column-itens {
    font-size: 2rem;
    line-height: 1rem;
  }
}

.footer-rights {
  margin-top: 1.2rem;
  font: 300 1.6rem/2rem "Onest", serif;
  letter-spacing: 0.4px;
  text-align: center;
  color: #f5f5f5;
}

.footer-simbol {
  position: absolute;
  bottom: -19rem;
  right: 21rem;
  overflow: hidden;
  width: 42rem;
  height: 84rem;
  transform: rotate(-90deg);
  background-color: transparent;
  z-index: 0;
}
.footer-simbol--img {
  position: absolute;
  top: -40rem;
  right: 9rem;
  width: 80rem;
  height: 140rem;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 1440px) {
  .footer-simbol {
    bottom: 7rem;
  }
  .footer-simbol--img {
    top: -26rem;
    right: 4rem;
  }
}

.return-top {
  position: fixed;
  bottom: 3.2rem;
  right: 10rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #f5f5f5;
  align-content: center;
  text-align: center;
  font-size: 2.4rem;
  color: #494949;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  transition: All 0.5s ease;
}

/*# sourceMappingURL=style.css.map */
