.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.one {
  animation-delay: 0.4s;
}

.two {
  animation-delay: 0.8s;
}

.three {
  animation-delay: 1.2s;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s ease-in-out;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeLeft {
  opacity: 0;
}

.fadeLeft.fadeInLeft {
  animation-name: fadeInLeft;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #1C329A;
  line-height: 1.3;
  overflow-x: hidden;
  max-width: 100%;
}
@media (min-width: 64em) {
  body {
    font-size: 1.125rem;
  }
}
body.noscroll {
  overflow: hidden;
}

p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

.container {
  max-width: 88rem;
  margin: 0 auto;
}
.container--pall {
  padding-top: 3.175rem;
  padding-right: 1.625rem;
  padding-bottom: 3.175rem;
  padding-left: 1.625rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}

h1,
h2,
h3 {
  font-family: Literata;
  font-weight: 300;
  line-height: 1.15;
  color: #1C329A;
  margin-top: 0px;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
@media (min-width: 64em) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}
@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  align-items: center;
  font-family: Literata;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button,
.button {
  position: relative;
  display: inline-block;
  padding: 15px 2.1875rem;
  background: #FB2929;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.875rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
  text-align: center;
  align-items: center;
}

.button:hover {
  background-color: #1C329A;
  transition: 0.6s;
  opacity: 1;
}

button,
.button_blue {
  position: relative;
  display: inline-block;
  padding: 15px 2.1875rem;
  background: blue;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.875rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
  text-align: center;
  align-items: center;
}

.button_blue:hover {
  background-color: #FB2929;
  transition: 0.6s;
  opacity: 1;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  top: 0;
  width: 100%;
  position: sticky;
  z-index: 1;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(#FB2929, transparent);
}
.header nav {
  position: relative;
  background-color: #FFFFFF;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 200px;
  padding-right: 200px;
}
@media (max-width: 87.4375em) {
  .header nav {
    padding: 30px 30px;
  }
}
.header__logo img {
  width: 170px;
  height: 80px;
}
@media (min-width: 64em) {
  .header__logo img {
    margin-right: 12.5rem;
  }
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #FB2929;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  text-align: center;
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  margin-top: 1.5rem;
  padding: 1.625rem;
  border-radius: 0, 3125rem;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: #1C329A;
  text-align: center;
  font-weight: 600;
  font-family: "Literata", sans-serif;
}
.header__menu a:hover {
  color: #FB2929;
  transition: 0.6s;
}
@media (min-width: 64em) {
  .header__links {
    margin-left: -70px;
  }
}
.header__links a {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1C329A;
  transition: color 300ms ease-in-out;
  margin-right: 3.75rem;
}
.header__links a:hover {
  color: #FB2929;
}
.header__links a:hover::before {
  opacity: 1;
}
.header_icons ul {
  list-style: none;
}
.header_icons li {
  margin-right: 18px;
  display: inline;
}
.header_icons img {
  width: 22px;
  height: 22px;
}

.hero {
  background-image: linear-gradient(rgba(251, 41, 41, 0.4), rgba(251, 41, 41, 0.4)), url(https://spotstudio.net.br/_cdn/julia_montenegro/julia_montengro_1400x800_3.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  min-height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero > h1 {
    font-size: 25px;
  }
}
.hero_projetos {
  background-image: url(https://spotstudio.net.br/_cdn/hero/time_spot_1.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: fixed;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
}
.hero_projetos > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_projetos > h1 {
    font-size: 25px;
  }
}
.hero_sobre {
  background-image: url(https://spotstudio.net.br/_cdn/hero/time_spot_1.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: fixed;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
}
.hero_sobre_2 {
  background-image: url(https://spotstudio.net.br/_cdn/hero/time_spot_2_1920x800.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  min-height: 600px;
  background-attachment: fixed;
  background-position: 0% 90%;
  background-repeat: no-repeat;
  background-size: auto;
}
.hero_sobre_2 > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_sobre_2 > h1 {
    font-size: 25px;
  }
}
.hero_sobre > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_sobre > h1 {
    font-size: 25px;
  }
}
.hero_sobre > .button {
  text-align: center;
  font-size: 0.875rem;
}
.hero_acai {
  background-image: url(https://spotstudio.net.br/_cdn/acai_do_atleta/acai_do_atleta_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_acai > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_acai > h1 {
    font-size: 25px;
  }
}
.hero_dburguer {
  background-image: url(https://spotstudio.net.br/_cdn/d_burguer/d_burger_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_dburguer > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_dburguer > h1 {
    font-size: 25px;
  }
}
.hero_lugon {
  background-image: url(https://spotstudio.net.br/_cdn/lugon/lugon_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_lugon > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_lugon > h1 {
    font-size: 25px;
  }
}
.hero_brasilianas {
  background-image: url(https://spotstudio.net.br/_cdn/brasilianas/brasilianas_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_brasilianas > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_brasilianas > h1 {
    font-size: 25px;
  }
}
.hero_getngo {
  background-image: url(https://spotstudio.net.br/_cdn/get_n_go/get_n_go_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_getngo > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_getngo > h1 {
    font-size: 25px;
  }
}
.hero_juliamontenegro {
  background-image: url(https://spotstudio.net.br/_cdn/julia_montenegro/julia_montenegro_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_juliamontenegro > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_juliamontenegro > h1 {
    font-size: 25px;
  }
}
.hero_colmanetti {
  background-image: url(/_cdn/colmanetti/colmanetti_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_colmanetti > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_colmanetti > h1 {
    font-size: 25px;
  }
}
.hero_naru {
  background-image: url(https://spotstudio.net.br/_cdn/naru/naru_hero.jpg);
  height: 600px;
  padding-top: 220px;
  vertical-align: middle;
  text-align: center;
  background-position: top 100px center;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
}
.hero_naru > h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 35px;
}
@media (max-width: 63.9375em) {
  .hero_naru > h1 {
    font-size: 25px;
  }
}

@media (min-width: 64em) {
  .conectamos {
    max-width: 70%;
    margin-left: 180px;
  }
}
.conectamos > h2 {
  font-family: Literata;
  font-size: 30px;
  color: #FB2929;
  font-weight: bold;
}
@media (min-width: 64em) {
  .conectamos > h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.conectamos p {
  max-width: 60%;
  color: #1C329A;
  font-size: 0.875rem;
}
.conectamos > a {
  background-color: #FB2929;
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 15px 30px;
  vertical-align: center;
  align-items: center;
}
@media (min-width: 64em) {
  .conectamos > a {
    margin-top: 15px;
  }
}
.conectamos > a:hover {
  background-color: #1C329A;
  transition: 0.6s;
}

.carousel_brands {
  display: block;
}
.carousel_brands img {
  display: block;
  margin: 15px auto;
  align-items: center;
  width: 300px;
  height: 300px;
}
@media (min-width: 40em) {
  .carousel_brands {
    display: block;
  }
  .carousel_brands img {
    margin: 10px auto;
    width: 450px;
    height: 450px;
  }
}
@media (min-width: 40em) and (min-width: 64em) {
  .carousel_brands {
    display: flex;
  }
  .carousel_brands img {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
    width: 450px;
    height: 450px;
  }
}
.carousel_brands .image_container {
  margin: auto;
  position: relative;
  width: 100%;
}
.carousel_brands .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  height: 100%;
  width: 300px;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(251, 41, 41, 0.7490196078);
}
@media (min-width: 40em) {
  .carousel_brands .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    height: 100%;
    width: 450px;
    opacity: 0;
    transition: 0.5s ease;
    background-color: rgba(251, 41, 41, 0.7490196078);
  }
}
@media (min-width: 64em) {
  .carousel_brands .overlay {
    position: absolute;
    top: 15px;
    bottom: 0;
    left: 48.42%;
    transform: translateX(-50%);
    right: 0;
    height: 450px;
    width: 451px;
    opacity: 0;
    transition: 0.5s ease;
    background-color: rgba(251, 41, 41, 0.7490196078);
  }
}
.carousel_brands .image_container:hover .overlay {
  opacity: 1;
}
.carousel_brands .image_container:hover .text_logo img, .carousel_brands .image_container:hover .text_logo h3 {
  opacity: 1;
}
.carousel_brands .text_logo {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
}
.carousel_brands .text_logo img {
  display: block;
  align-items: center;
  margin: auto;
  width: 350px;
  height: auto;
}
.carousel_brands .text_logo h3 {
  color: #FFFFFF;
  font-weight: 600;
  opacity: 1;
}
.carousel_brands .text_logo:hover {
  opacity: 1;
}
.carousel .last {
  margin-bottom: 60px;
}
.carousel .first {
  margin-top: -30px;
}

.cta {
  margin-top: 30px;
  background-color: #faeae5;
  text-align: center;
}
@media (max-width: 63.9375em) {
  .cta {
    padding: 80px 30px;
  }
}
.cta h2 {
  font-size: 25px;
  font-weight: bold;
  color: #FB2929;
  margin-bottom: -30px;
}
@media (min-width: 40em) {
  .cta h2 {
    font-size: 25px;
  }
}
.cta p {
  font-size: 16px;
  font-weight: 500;
  margin: 55px 30px;
}
.cta > a {
  background-color: #FB2929;
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 15px 30px;
  vertical-align: center;
  align-items: center;
}
@media (min-width: 64em) {
  .cta > a {
    margin-top: -15px;
  }
}
.cta > a:hover {
  background-color: #1C329A;
  transition: 0.6s;
}

.footer {
  background-color: #FB2929;
}
@media (min-width: 64em) {
  .footer_content {
    display: flex;
    align-items: baseline;
  }
}
@media (min-width: 64em) {
  .footer_logo {
    flex-basis: 40%;
  }
}
@media (max-width: 39.9375em) {
  .footer_logo {
    margin: 30px auto;
  }
}
.footer_logo img {
  width: 170px;
  height: auto;
}
@media (max-width: 63.9375em) {
  .footer_logo img {
    margin: 20px auto;
  }
}
.footer_menu h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  border: solid 3px #FFFFFF;
  border-style: none none none solid;
  padding-left: 30px;
  margin-left: -30px;
}
@media (min-width: 64em) {
  .footer_menu {
    flex-basis: 10%;
    margin-left: 30px;
  }
}
.footer_menu ul {
  margin-left: -35px;
  list-style: none;
}
.footer_menu > li, .footer_menu a {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 2;
}
.footer_menu > li:hover, .footer_menu a:hover {
  transition: 0.6s;
  font-weight: bold;
}
.footer_address {
  margin-left: 80px;
  margin-right: auto;
  margin-top: 30px;
}
.footer_address h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  border: solid 3px #FFFFFF;
  border-style: none none none solid;
  padding-left: 30px;
  margin-left: -30px;
}
@media (min-width: 40em) {
  .footer_address {
    flex-basis: 10%;
  }
}
@media (max-width: 63.9375em) {
  .footer_address {
    padding-bottom: 60px;
  }
}
.footer_address p {
  margin-bottom: -10px;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
}
@media (max-width: 63.9375em) {
  .footer_address p {
    margin-left: -75px;
  }
}
.footer_contato h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  border: solid 3px #FFFFFF;
  border-style: none none none solid;
  padding-left: 30px;
  margin-left: -30px;
}
.footer_contato a {
  margin-bottom: -10px;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
}
@media (max-width: 63.9375em) {
  .footer_contato a {
    margin-left: -75px;
  }
}
.footer_contato hr {
  color: #FFFFFF;
}
@media (min-width: 40em) {
  .footer_contato {
    flex-basis: 20%;
  }
}
.footer_signature {
  background-color: #1C329A;
  margin-bottom: -40px;
}
.footer_signature p {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 7px;
  color: #FFFFFF;
  font-size: 0.875rem;
}

@media (min-width: 64em) {
  .quem_somos {
    max-width: 60%;
  }
}
.quem_somos > h2 {
  font-family: Literata;
  font-size: 30px;
  color: #FB2929;
  font-weight: bold;
}
@media (min-width: 64em) {
  .quem_somos > h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.quem_somos p {
  color: #1C329A;
  font-size: 0.875rem;
}

.como_fazemos {
  text-align: center;
}
.como_fazemos > h2 {
  font-family: Literata;
  font-size: 30px;
  color: #FB2929;
  font-weight: bold;
}
@media (min-width: 64em) {
  .como_fazemos > h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.como_fazemos p {
  color: #1C329A;
  font-size: 0.875rem;
}
.como_fazemos .boxes {
  display: flex;
  flex-basis: 25%;
  margin-bottom: -30px;
}
.como_fazemos .boxes_red {
  background-color: #FB2929;
  width: 350px;
  height: 530px;
  margin: 10px 10px;
}

.quem_faz {
  display: block;
  margin: auto;
  text-align: center;
}
.quem_faz > h2 {
  font-family: Literata;
  font-size: 30px;
  color: #FB2929;
  font-weight: bold;
}
@media (min-width: 64em) {
  .quem_faz > h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.quem_faz p {
  color: #1C329A;
  font-size: 0.875rem;
}

.portraits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media (min-width: 64em) {
  .portraits {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

.portrait_container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 15px auto;
}
@media (min-width: 64em) {
  .portrait_container {
    margin: auto;
    width: 460px;
    height: 530px;
  }
}
.portrait_container img {
  display: block;
  width: 100%;
  height: auto;
}
.portrait_container h3, .portrait_container p {
  padding-left: 10px;
  width: 290px;
}

.overlay_portrait {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  height: 100%;
  width: 350px;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(251, 41, 41, 0.7490196078);
}
@media (min-width: 40em) {
  .overlay_portrait {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    height: 100%;
    width: 350px;
    opacity: 0;
    transition: 0.5s ease;
    background-color: rgba(251, 41, 41, 0.7490196078);
  }
}
@media (min-width: 64em) {
  .overlay_portrait {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: 100%;
    height: 505px;
    opacity: 0;
    transition: 0.5s ease;
    background-color: rgba(251, 41, 41, 0.7490196078);
  }
}

.portrait_container:hover .overlay_portrait {
  opacity: 1;
}

.portrait_container:hover .text h3, .portrait_container:hover .text p {
  padding-left: 10px;
  width: 290px;
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 90%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: left;
  opacity: 1;
}
.text h3 {
  font-family: Work Sans;
  color: #FFFFFF;
  font-weight: 600;
  opacity: 1;
  margin-bottom: -20px;
}
.text p {
  font-family: Literata;
  color: #FFFFFF;
  font-size: 1.125rem;
}

form {
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 25px;
}
form input, form textarea {
  border: 2px solid #1C329A;
  margin: 5px 10px;
  padding: 6px;
  outline: none;
  background: #f5f5f5;
  font-size: 0.875rem;
}
form > button {
  height: auto;
  display: block;
  margin: 15px auto;
  min-width: 250px;
}

@media (min-width: 64em) {
  .contato {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 64em) {
  .contato_text {
    max-width: 30%;
  }
}
.contato_form {
  width: 100%;
  height: 100%;
}
@media (min-width: 64em) {
  .contato_form {
    min-width: 60%;
    display: block;
    margin: auto;
  }
}

.projetos h2 {
  font-size: 30px;
  font-weight: 600;
  color: #FB2929;
  margin-bottom: 5px;
}
.projetos h3 {
  font-size: 16px;
}
.projetos hr {
  max-width: 30%;
  color: #FB2929;
  margin-bottom: 30px;
}
.projetos p {
  font-weight: 500;
}
@media (min-width: 64em) {
  .projetos p {
    font-size: 16px;
  }
}
@media (min-width: 64em) {
  .projetos_desafio_solucao {
    display: flex;
    align-items: baseline;
  }
}
@media (min-width: 64em) {
  .projetos_desafio {
    max-width: 40%;
    margin-right: 30px;
  }
}
@media (min-width: 64em) {
  .projetos_solucao {
    max-width: 40%;
  }
}

.full_width_images {
  margin-top: -5px;
  margin-bottom: -7px;
}
.full_width_images img {
  height: 100%;
  width: 100%;
}
@media (min-width: 64em) {
  .full_width_images img {
    height: 100%;
    width: 100%;
  }
}

.text_and_image {
  display: block;
  align-items: center;
  margin-bottom: -5px;
}
.text_and_image ul {
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 64em) {
  .text_and_image ul {
    margin-left: -25px;
  }
}
.text_and_image .image_text {
  margin: 0;
}
@media (min-width: 64em) {
  .text_and_image .image_text {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.text_and_image .image_text h2 {
  font-size: 25px;
  font-weight: 600;
  color: #FB2929;
}
.text_and_image .image_text h3 {
  margin-top: -5px;
  font-size: 20px;
}
.text_and_image .image_text hr {
  max-width: 30%;
  color: #FB2929;
  margin-bottom: 30px;
}
.text_and_image .image_text p {
  font-weight: 500;
}
@media (min-width: 64em) {
  .text_and_image .image_text p {
    font-size: 16px;
  }
}
.text_and_image .image img {
  width: 100%;
  height: 100%;
}
@media (min-width: 64em) {
  .text_and_image {
    display: flex;
  }
  .text_and_image .text {
    padding: 30px 100px;
    align-items: center;
    min-width: 50%;
  }
  .text_and_image .text h2 {
    font-size: 25px;
    font-weight: 600;
    color: #FB2929;
  }
  .text_and_image .text h3 {
    margin-top: -5px;
    font-size: 20px;
  }
  .text_and_image .text hr {
    max-width: 30%;
    color: #FB2929;
    margin-bottom: 30px;
  }
  .text_and_image .text p {
    font-weight: 500;
  }
}
@media (min-width: 64em) and (min-width: 64em) {
  .text_and_image .text p {
    font-size: 16px;
  }
}
@media (min-width: 64em) {
  .text_and_image .image {
    min-width: 50%;
  }
  .text_and_image .image img {
    width: 100%;
    height: 100%;
  }
}

.naming {
  text-align: center;
}
@media (min-width: 64em) {
  .naming {
    max-width: 50%;
  }
}
.naming h2 {
  font-size: 25px;
  font-weight: 600;
  color: #FB2929;
  margin-bottom: 0px;
}
.naming p {
  font-size: 16px;
}

.double_image {
  flex-direction: column;
  margin-bottom: -5px;
}
.double_image img {
  width: 100%;
  height: 100%;
}
@media (min-width: 40em) {
  .double_image {
    display: flex;
    flex-direction: row;
  }
}
.double_image .double {
  margin-bottom: -5px;
}
@media (min-width: 40em) {
  .double_image .double {
    max-width: 50%;
  }
}

.ficha {
  align-items: baseline;
}
@media (min-width: 64em) {
  .ficha {
    display: flex;
    flex-basis: 50%;
    max-width: 60%;
    margin: auto;
  }
}
.ficha_servicos {
  margin-right: 150px;
}
@media (min-width: 64em) {
  .ficha_servicos {
    width: 50%;
  }
}
@media (max-width: 63.9375em) {
  .ficha_servicos {
    width: 100%;
    margin-bottom: 30px;
  }
}
.ficha_servicos h3 {
  margin-bottom: -5px;
  color: #FB2929;
  font-weight: bold;
}
.ficha_servicos ul {
  display: inline;
  list-style: none;
}
.ficha_servicos li {
  margin-bottom: 10px;
}
.ficha_servicos img {
  margin-right: 15px;
  width: 18px;
  height: auto;
}
.ficha_tecnica h3 {
  color: #FB2929;
  font-weight: bold;
}
.ficha_tecnica ul {
  list-style: none;
  margin-left: -35px;
}
.ficha_tecnica li {
  margin-bottom: 10px;
}
.ficha_tecnica span {
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */