/*
0 - 600px:    phone
600 - 900px:  tablet portrait
900 - 1200px: tablet landscape
[1200px - 1800px] - normal styles
1800px +:     big desktop

$breakpoint args choice
- phone
- tablet-port
- tablet-land
- big-desktop
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 58% !important;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 51% !important; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 46% !important; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 63% !important; } }

body {
  box-sizing: border-box;
  padding: 3rem; }
  @media only screen and (max-width: 75em) {
    body {
      padding: 2rem; } }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }

::selection {
  background: #4A4A49 ;
  color:  #00A092; }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes pulse {
  0% {
    color: white; }
  25% {
    color: rgba(255, 255, 255, 0.8); }
  50% {
    color: rgba(0, 160, 146, 0.8); }
  75% {
    color: rgba(0, 160, 146, 0.9); }
  100% {
    color:  #00A092; } }

/* lato-100 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: url("../css/fonts/lato-v20-latin-100.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../css/fonts/lato-v20-latin-100.eot?#iefix") format("embedded-opentype"), url("../css/fonts/lato-v20-latin-100.woff2") format("woff2"), url("../css/fonts/lato-v20-latin-100.woff") format("woff"), url("../css/fonts/lato-v20-latin-100.ttf") format("truetype"), url("../css/fonts/lato-v20-latin-100.svg#Lato") format("svg");
  /* Legacy iOS */
  font-display: swap; }

/* lato-300 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url("../css/fonts/lato-v20-latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../css/fonts/lato-v20-latin-300.eot?#iefix") format("embedded-opentype"), url("../css/fonts/lato-v20-latin-300.woff2") format("woff2"), url("../css/fonts/lato-v20-latin-300.woff") format("woff"), url("../css/fonts/lato-v20-latin-300.ttf") format("truetype"), url("../css/fonts/lato-v20-latin-300.svg#Lato") format("svg");
  /* Legacy iOS */
  font-display: swap; }

/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url("../css/fonts/lato-v20-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../css/fonts/lato-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("../css/fonts/lato-v20-latin-regular.woff2") format("woff2"), url("../css/fonts/lato-v20-latin-regular.woff") format("woff"), url("../css/fonts/lato-v20-latin-regular.ttf") format("truetype"), url("../css/fonts/lato-v20-latin-regular.svg#Lato") format("svg");
  /* Legacy iOS */
  font-display: swap; }

/* lato-700 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url("../css/fonts/lato-v20-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../css/fonts/lato-v20-latin-700.eot?#iefix") format("embedded-opentype"), url("../css/fonts/lato-v20-latin-700.woff2") format("woff2"), url("../css/fonts/lato-v20-latin-700.woff") format("woff"), url("../css/fonts/lato-v20-latin-700.ttf") format("truetype"), url("../css/fonts/lato-v20-latin-700.svg#Lato") format("svg");
  /* Legacy iOS */
  font-display: swap; }

/* lato-900 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url("../css/fonts/lato-v20-latin-900.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../css/fonts/lato-v20-latin-900.eot?#iefix") format("embedded-opentype"), url("../css/fonts/lato-v20-latin-900.woff2") format("woff2"), url("../css/fonts/lato-v20-latin-900.woff") format("woff"), url("../css/fonts/lato-v20-latin-900.ttf") format("truetype"), url("../css/fonts/lato-v20-latin-900.svg#Lato") format("svg");
  /* Legacy iOS */
  font-display: swap; }

body {
  font-family: 'Lato', sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #4A4A49  !important; }

.heading-primary {
  color: #f7f7f7;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6rem;
  backface-visibility: hidden; }
  .heading-primary--main {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: .3rem;
    animation: moveInLeft 1s ease-out; }
    @media only screen and (max-width: 56.25em) {
      .heading-primary--main {
        font-size: 4rem;
        letter-spacing: .2rem;
        line-height: 1.5; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 3.2rem;
        letter-spacing: .1rem;
        line-height: 1.4;
        margin-bottom: .5rem; } }
  .heading-primary--sub {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .2rem;
    animation: moveInRight 1s ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        font-size: 1.8rem;
        letter-spacing: .2rem; } }

.heading-secondary {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #4A4A49 ;
  letter-spacing: 0.2rem;
  transition: all .2s; }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      line-height: 1.2; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 3.5rem;
      letter-spacing: .1rem; } }
  .heading-secondary:hover {
    text-shadow: 0.5rem 1rem 2rem rgba(65, 65, 65, 0.3); }

.heading-secondary-small {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #4A4A49 ;
  letter-spacing: 0.2rem;
  transition: all .2s; }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary-small {
      line-height: 1.2; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary-small {
      font-size: 3rem;
      letter-spacing: .1rem; } }
  .heading-secondary-small:hover {
    text-shadow: 0.5rem 1rem 2rem rgba(65, 65, 65, 0.3); }

.heading-secondary-white {
  font-size: 4.8rem;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  color: #f7f7f7;
  letter-spacing: 0.3rem;
  transition: all .2s; }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary-white {
      font-size: 3.5rem;
      letter-spacing: .2rem; } }
  .heading-secondary-white:hover {
    transform: scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(247, 247, 247, 0.2); }

.heading-secondary-green {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  color:  #00A092;
  letter-spacing: 0.3rem;
  transition: all .2s; }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary-green {
      font-size: 3.5rem;
      letter-spacing: .2rem; } }
  .heading-secondary-green:hover {
    text-shadow: 0.5rem 1rem 2rem rgba(65, 65, 65, 0.4); }

.heading-secondary-dark {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #4A4A49 ;
  letter-spacing: 0.3rem;
  transition: all .2s; }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary-dark {
      font-size: 3.5rem;
      letter-spacing: .2rem; } }
  .heading-secondary-dark:hover {
    text-shadow: 0.5rem 1rem 2rem rgba(65, 65, 65, 0.4); }

.heading-tertiary {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase; }
  @media only screen and (max-width: 37.5em) {
    .heading-tertiary {
      font-size: 1.5rem;
      letter-spacing: .1rem; } }

.heading-tertiary-light-grey {
  color: color-grey-light-1;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase; }
  @media only screen and (max-width: 56.25em) {
    .heading-tertiary-light-grey {
      font-size: 2.3rem;
      letter-spacing: .1rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-tertiary-light-grey {
      font-size: 1.8rem;
      letter-spacing: .1rem; } }

.heading-tertiary-small {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #f7f7f7; }
  @media only screen and (max-width: 56.25em) {
    .heading-tertiary-small {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: .1rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-tertiary-small {
      font-size: 1.2rem; } }

.heading-quaternary {
  color:  #00A092;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 700; }
  @media only screen and (max-width: 37.5em) {
    .heading-quaternary {
      font-size: 1.1rem; } }

.heading-quinary {
  color: #f7f7f7;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900; }
  @media only screen and (max-width: 56.25em) {
    .heading-quinary {
      letter-spacing: 0.1rem;
      font-size: 1.3rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-quinary {
      font-weight: 700;
      font-size: 1.2rem; } }

.paragraph {
  font-size: 1.6rem;
  text-align: justify; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 5rem !important; } }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-medium {
      margin-bottom: 3rem !important; } }
  @media only screen and (max-width: 37.5em) {
    .u-margin-bottom-medium {
      margin-bottom: 2rem !important; } }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-top-big {
  margin-top: 12rem !important; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-top-big {
      margin-top: 6rem !important; } }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all .2s;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  border: none;
  cursor: pointer; }
  @media only screen and (max-width: 37.5em) {
    .btn, .btn:link, .btn:visited {
      padding: 1.5rem 1.5rem; } }

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0,160,146, 0.3); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0,160,146, 0.3); }

.btn--white {
  background-color: #fff;
  color: #4A4A49 ; }

.btn--green {
  background-color:  #00A092;
  color: #FFF; }
  .btn--green::after {
    background-color:  #00A092; }
  .btn--green-flat {
    margin-top: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.32rem 0.7rem;
    display: inline-block;
    border-radius: 3px;
    transition: all .3s;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFFFFF; }
    .btn--green-flat:hover {
      transform: translateY(-0.3rem); }
      .btn--green-flat:hover::after {
        transform: none;
        box-shadow: 0 0.5rem 1rem rgba(156, 195, 61, 0.3);
        opacity: 0; }
    .btn--green-flat:active, .btn--green-flat:focus {
      outline: none;
      transform: translateY(-0.1rem); }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

.btn--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.negocio {
  width: 100%; }
  .negocio p {
    color: #4A4A49 ;
    font-size: 1.4rem;
    margin-top: 1rem; }
    @media only screen and (max-width: 37.5em) {
      .negocio p {
        font-size: 1.2rem; } }

.composition {
  padding: 6rem 2rem 6rem 2rem;
  text-align: center; }
  .composition hr {
    border: 0;
    clear: both;
    display: block;
    text-align: center;
    width: 10%;
    margin-top: 0.7rem;
    margin-bottom: 1rem; }
    @media only screen and (max-width: 56.25em) {
      .composition hr {
        width: 15%; } }
  @media only screen and (max-width: 75em) {
    .composition {
      padding: 5rem 2rem 4rem 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .composition {
      padding: 5rem 0rem 3rem 0rem; } }
  @media only screen and (max-width: 37.5em) {
    .composition {
      padding: 5rem 0rem 2rem 0rem; } }
  .composition__box {
    text-align: justify; }
  .composition__icon {
    height: 14rem; }
    @media only screen and (max-width: 56.25em) {
      .composition__icon {
        height: 12rem; } }
    @media only screen and (max-width: 37.5em) {
      .composition__icon {
        margin-top: 0;
        display: none; } }
  .composition__heading {
    font-size: 2.2rem;
    letter-spacing: 1px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase; }
    @media only screen and (max-width: 56.25em) {
      .composition__heading {
        font-size: 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .composition__heading {
        font-size: 1.9rem; } }
  .composition__paragraph {
    font-size: 1.6rem; }
  .composition__divisao {
    background:  #00A092;
    height: 0.5rem; }
  .composition-reverse {
    background-color: #4A4A49 ;
    color: #f7f7f7; }
  .composition__accordion {
    margin-top: -4rem; }
    @media only screen and (max-width: 37.5em) {
      .composition__accordion {
        margin-bottom: 2rem; } }
    .composition__accordion-item {
      margin-top: 1rem; }
      .composition__accordion-item-logo {
        height: 5rem; }
        @media only screen and (max-width: 37.5em) {
          .composition__accordion-item-logo {
            margin-bottom: 0.5rem; } }
        .composition__accordion-item-logo-texto {
          text-transform: uppercase;
          font-size: 1.4rem;
          margin-top: 0.5rem; }
          @media only screen and (max-width: 37.5em) {
            .composition__accordion-item-logo-texto {
              display: block;
              font-size: 1.2rem; } }
  .composition summary[open] {
    animation: ease;
    transition: all 1s; }
  .composition summary[close] {
    animation: ease;
    transition: all 2s; }

.resultado-box {
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 3px;
  height: 20rem;
  width: 75%;
  margin: 0 auto;
  color: #4A4A49 ;
  transition: transform 0.3s;
  border: #f7f7f7 2px solid;
  box-shadow: 0 1rem 3rem rgba(247, 247, 247, 0.25); }
  @media only screen and (max-width: 75em) {
    .resultado-box {
      width: 85%;
      padding: 1rem 0.5rem; } }
  @media only screen and (max-width: 56.25em) {
    .resultado-box {
      height: 18rem;
      width: 100%;
      padding: 1.5rem 0.2rem; } }
  @media only screen and (max-width: 37.5em) {
    .resultado-box {
      height: 15rem;
      box-shadow: none;
      hyphens: auto; } }
  @media only screen and (max-width: 56.25em) {
    .resultado-box__hidden {
      opacity: 0;
      visibility: hidden;
      display: none; } }
  .resultado-box:active {
    transform: translateY(-1rem); }
  .resultado-box__icon {
    height: 12rem; }
    @media only screen and (max-width: 56.25em) {
      .resultado-box__icon {
        margin-bottom: .1rem;
        height: 8rem; } }
    @media only screen and (max-width: 37.5em) {
      .resultado-box__icon {
        margin-bottom: .1rem;
        height: 6rem; } }
  .resultado-box:hover {
    transform: translateY(-1.5rem) scale(1.03); }
  .resultado-box-small {
    padding: 1rem 1rem;
    text-align: center;
    border-radius: 3px;
    width: 60%;
    margin: 0 auto; }
    @media only screen and (max-width: 75em) {
      .resultado-box-small {
        width: 70%;
        padding: 1rem 0.5rem; } }
    @media only screen and (max-width: 56.25em) {
      .resultado-box-small {
        padding: 1rem 0.2rem;
        width: 100%; } }
    @media only screen and (max-width: 37.5em) {
      .resultado-box-small {
        height: auto; } }
    .resultado-box-small__icon {
      height: 10rem;
      margin-bottom: 1rem;
      border-radius: 3px;
      padding: 0.3rem; }
      @media only screen and (max-width: 56.25em) {
        .resultado-box-small__icon {
          height: 8rem; } }
      @media only screen and (max-width: 37.5em) {
        .resultado-box-small__icon {
          height: 6rem; } }

.sobre {
  margin: 0 auto;
  width: 85%;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  color: #f7f7f7;
  border: #f7f7f7 4px solid;
  box-shadow: 2rem 1.5rem 1rem rgba(65, 65, 65, 0.7);
  font-weight: 700;
  border-radius: 3px;
  transform: skewX(-12deg);
  text-align: justify; }
  @media only screen and (max-width: 56.25em) {
    .sobre {
      width: 100%;
      padding: 4rem;
      padding-left: 7rem;
      font-size: 1.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .sobre {
      transform: skewX(0);
      font-size: 1.5rem;
      padding: 2rem;
      padding-left: 2rem; } }
  .sobre__shape {
    width: 13rem;
    height: 12rem;
    margin-right: 3rem;
    float: left;
    transform: skewX(12deg); }
    @media only screen and (max-width: 37.5em) {
      .sobre__shape {
        transform: skewX(0);
        width: 13rem;
        height: 13rem; 
        margin-right: 1rem;} }
  .sobre__img {
    height: 100%;
    transform: translateX(-0.7rem); }
  .sobre__texto {
    transform: skewX(12deg); }
    @media only screen and (max-width: 37.5em) {
      .sobre__texto {
        transform: skewX(0); } }

.form__group:not(:last-child) {
  margin-bottom: 1rem; }
  @media only screen and (max-width: 56.25em) {
    .form__group:not(:last-child) {
      margin-bottom: 0.6rem; } }

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all .3s; }
  @media only screen and (max-width: 56.25em) {
    .form__input {
      width: 100%; } }
  .form__input:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid  #00A092; }
  .form__input:focus:invalid {
    border-bottom: 3px solid #ff7730; }
  .form__input::-webkit-input-placeholder {
    color: #999; }

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: .7rem;
  display: block;
  transition: all .3s; }

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4.3rem); }

.form__textarea {
  height: 10rem; }
  @media only screen and (max-width: 56.25em) {
    .form__textarea {
      height: 12rem; } }

.form__radio-group {
  margin-top: 0.5rem;
  width: 33%;
  display: inline-block; }
  @media only screen and (max-width: 37.5em) {
    .form__radio-group {
      margin-top: 0.3rem;
      width: 100%;
      margin-bottom: 1.5rem; } }

.form__radio-input {
  display: none; }

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 3.5rem; }

.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid  #00A092;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -.5rem; }
  .form__radio-button::after {
    content: "";
    display: block;
    height: 1.3rem;
    width: 1.3rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:  #00A092;
    opacity: 0;
    transition: opacity .2s; }

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1; }

.ferramentas__img {
  height: 11rem; }

.divisao {
  border: 0;
  height: 1rem;
  width: 100%;
  position: relative;
  margin: 0 auto;
  background: #f7f7f7;
  height: 2rem;
  background-image: url(../img/divisao.svg);
  background-repeat: repeat; }
  .divisao-branco {
    background: #f7f7f7;
    height: 0.7rem;
    overflow: hidden;
    position: relative;
    width: 8%;
    margin: 0 auto;
    margin-bottom: 1.5rem; }
    @media only screen and (max-width: 75em) {
      .divisao-branco {
        width: 10%; } }
    @media only screen and (max-width: 37.5em) {
      .divisao-branco {
        width: 18%; } }
  .divisao-green {
    border: 0;
    background:  #00A092;
    height: 0.7rem;
    overflow: hidden;
    position: relative;
    width: 8%;
    margin: 0 auto;
    margin-bottom: 1.5rem; }
    @media only screen and (max-width: 75em) {
      .divisao-green {
        width: 10%; } }
    @media only screen and (max-width: 37.5em) {
      .divisao-green {
        width: 18%; } }

.map {
  position: relative;
  margin-top: 2rem;
  height: 28rem; }
  @media only screen and (max-width: 56.25em) {
    .map {
      height: 30rem; } }
  @media only screen and (max-width: 37.5em) {
    .map {
      height: 35rem; } }

.map iframe {
  border-radius: 3px;
  left: 7rem;
  height: 100%;
  width: 88%;
  position: absolute;
  padding-right: 1rem; }
  @media only screen and (max-width: 75em) {
    .map iframe {
      width: 95%;
      left: 3rem; } }
  @media only screen and (max-width: 56.25em) {
    .map iframe {
      left: 0;
      width: 100%;
      float: none;
      padding-right: 0; } }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row__no-bottom {
    margin-bottom: 0 !important; }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 65rem;
      padding: 0 3rem; } }
  @media only screen and (max-width: 37.5em) {
    .row {
      max-width: 58rem;
      padding: 0 1.5rem; } }
  @media only screen and (max-width: 56.25em) {
    .row__bottom-margin:not(:last-child) {
      margin-bottom: 0 !important; } }
  .row:not(:last-child) {
    margin-bottom: 3rem; }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 3rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 3rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-2-100p {
    width: calc((100% - 6rem) / 2);
    margin-bottom: 0 !important; }
    @media only screen and (max-width: 56.25em) {
      .row .col-1-of-2-100p {
        width: calc((100% - 6rem) / 2) !important;
        margin-bottom: 2rem !important; }
        .row .col-1-of-2-100p:not(:last-child) {
          margin-right: 6rem; } }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
    @media only screen and (max-width: 56.25em) {
      .row .col-1-of-3 {
        margin-bottom: 2rem !important; } }
    @media only screen and (max-width: 56.25em) {
      .row .col-1-of-3__hidden {
        margin-bottom: 0 !important; } }
  .row .col-1-of-3-100p {
    width: calc((100% - 2 * 6rem) / 3); }
    @media only screen and (max-width: 56.25em) {
      .row .col-1-of-3-100p {
        width: calc((100% - 2 * 1.8rem) / 3) !important;
        margin-bottom: 1rem !important; }
        .row .col-1-of-3-100p:not(:last-child) {
          margin-right: 1.8rem; } }
    @media only screen and (max-width: 37.5em) {
      .row .col-1-of-3-100p {
        width: calc((100% - 2 * 1rem) / 3) !important; }
        .row .col-1-of-3-100p:not(:last-child) {
          margin-right: 1rem; } }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
    @media only screen and (max-width: 56.25em) {
      .row .col-1-of-4 {
        width: calc((100% - 3 * 4rem) / 4) !important; }
        .row .col-1-of-4:not(:last-child) {
          margin-right: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .row .col-1-of-4 {
        margin-bottom: 0 !important; } }
  .row .col-1-of-4-100p {
    width: calc((100% - 3 * 6rem) / 4); }
    @media only screen and (max-width: 56.25em) {
      .row .col-1-of-4-100p {
        width: calc((100% - 3 * 4rem) / 4) !important;
        margin-bottom: 1rem !important; }
        .row .col-1-of-4-100p:not(:last-child) {
          margin-right: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .row .col-1-of-4-100p {
        margin-bottom: 0 !important; } }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }
    @media only screen and (max-width: 56.25em) {
      .row .col-3-of-4 {
        width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem) !important; } }
    @media only screen and (max-width: 37.5em) {
      .row .col-3-of-4 {
        width: 100% !important; } }
  .row .col-1-of-5 {
    width: calc((100% - 4 * 6rem) / 5); }
    @media only screen and (max-width: 56.25em) {
      .row .col-1-of-5 {
        width: calc((100% - 4 * 3.5rem) / 5) !important;
        margin-bottom: 0 !important; }
        .row .col-1-of-5:not(:last-child) {
          margin-right: 3rem; } }

.header {
  height: 95vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)), url(../img/hero.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 85vh, 50% 100%, 0 85vh, 0 0);
  clip-path: polygon(50% 0, 100% 0, 100% 85vh, 50% 100%, 0 85vh, 0 0); }
  @media only screen and (min-resolution: 192dpi) and (min-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), only screen and (min-width: 125em) {
    .header {
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)), url(../img/hero_large.webp); } }
  @media only screen and (min-resolution: 192dpi) and (max-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em) {
    .header {
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)), url(../img/hero_small.webp); } }
  @media only screen and (max-width: 37.5em) {
    .header {
      height: 85vh;
      -webkit-clip-path: polygon(50% 0, 100% 0, 100% 80vh, 50% 100%, 0 80vh, 0 0);
      clip-path: polygon(50% 0, 100% 0, 100% 80vh, 50% 100%, 0 80vh, 0 0); } }
  .header__logo-box {
    position: absolute;
    top: 3rem;
    left: 3rem; }
    @media only screen and (max-width: 56.25em) {
      .header__logo-box {
        top: 4rem;
        left: 2rem; } }
  .header__logo {
    height: 11rem; }
    @media only screen and (max-width: 75em) {
      .header__logo {
        height: 10rem; } }
    @media only screen and (max-width: 56.25em) {
      .header__logo {
        height: 9rem; } }
    @media only screen and (max-width: 37.5em) {
      .header__logo {
        height: 7rem; } }
  .header__text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    @media only screen and (max-width: 37.5em) {
      .header__text-box {
        top: 50%; } }

        .header {
  height: 95vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)), url(../img/hero.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 85vh, 50% 100%, 0 85vh, 0 0);
  clip-path: polygon(50% 0, 100% 0, 100% 85vh, 50% 100%, 0 85vh, 0 0); }
  @media only screen and (min-resolution: 192dpi) and (min-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), only screen and (min-width: 125em) {
    .header {
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)), url(../img/hero_large.webp); } }
  @media only screen and (min-resolution: 192dpi) and (max-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em) {
    .header {
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)), url(../img/hero_small.webp); } }
  @media only screen and (max-width: 37.5em) {
    .header {
      height: 85vh;
      -webkit-clip-path: polygon(50% 0, 100% 0, 100% 80vh, 50% 100%, 0 80vh, 0 0);
      clip-path: polygon(50% 0, 100% 0, 100% 80vh, 50% 100%, 0 80vh, 0 0); } }
  .header__logo-box {
    position: absolute;
    top: 3rem;
    left: 3rem; }
    @media only screen and (max-width: 56.25em) {
      .header__logo-box {
        top: 4rem;
        left: 2rem; } }
  .header__logo {
    height: 11rem; }
    @media only screen and (max-width: 75em) {
      .header__logo {
        height: 10rem; } }
    @media only screen and (max-width: 56.25em) {
      .header__logo {
        height: 9rem; } }
    @media only screen and (max-width: 37.5em) {
      .header__logo {
        height: 7rem; } }
  .header__text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    @media only screen and (max-width: 37.5em) {
      .header__text-box {
        top: 50%; } }

    .btn-container {
      align-items: center;
      display: flex;
      flex-direction: column;
    }

    .btn-container a{
      margin-bottom: 1.5rem;
    }


/*######## CARTORIO ########*/

.section-cartorio {
  padding: 10rem 5rem;
}

.section-cartorio h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.header_cartorio {
  height: 15rem;
  position: relative;
  margin-bottom: 10rem;
}
  .header_cartorio__logo-box {
    position: absolute;
    top: 3rem;
    left: 3rem; }
    @media only screen and (max-width: 56.25em) {
      .header_cartorio__logo-box {
        top: 4rem;
        left: 2rem; } }
  .header_cartorio__logo {
    height: 11rem; }
    @media only screen and (max-width: 75em) {
      .header_cartorio__logo {
        height: 10rem; } }
    @media only screen and (max-width: 56.25em) {
      .header_cartorio__logo {
        height: 9rem; } }
    @media only screen and (max-width: 37.5em) {
      .header_cartorio__logo {
        height: 7rem; } }
  .header_cartorio__text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    @media only screen and (max-width: 37.5em) {
      .header__text-box {
        top: 50%; } }

.cartorio {
  margin: 0 auto;
  width: 70%;
}  

.cartorio h3{
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.cartorio hr{
  width: 25%;
  margin-bottom: 2rem;
}
.cartorio p{
  font-size: 2rem;
  line-height: 1.8;
  text-align: justify;
}

.contratar {
  margin-bottom: 10rem;
  text-align: center;
}

.clientes {
  margin: 0 auto;
  width: 70%;
  padding: 5rem 0;
}

.clientes h3 {
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 0.2rem solid #00A092;
}


.clientes-lista {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  
}

.clientes-lista li{
 list-style-type: none;
 font-size: 1.6rem;
 margin-bottom: 0.5rem;
}

.clientes-lista span {
  color: #00A092;
}


@media (max-width: 56em) {
  .section-cartorio {
    padding: 5rem 2rem;
  }
  
  .section-cartorio h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .cartorio {
    margin: 0 auto;
    width: 100%;
  }  
  
  .cartorio h3{
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .cartorio hr{
    width: 25%;
    margin-bottom: 2rem;
  }
  .cartorio p{
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: justify;
  }
  
  .contratar {
    margin-bottom: 10rem;
    text-align: center;
  }
  
  .clientes {
    margin: 0 auto;
    width: 100%;
    padding: 4rem 0;
  }
  
  .clientes h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 0.2rem solid #00A092;
  }
  
  
  .clientes-lista {
    display: flex;
    flex-direction: column;
    
  }
  
  .clientes-lista li{
   list-style-type: none;
   font-size: 1.6rem;
   margin-bottom: 0.5rem;
   padding: 0.5rem;
  }
}


.marca {
  margin: 10rem auto;
  text-align: center;
  width: 50%;
  padding-bottom: 5rem;
}



.marca h2{
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.marca ul {
  display: flex;
  justify-content: space-around;
}

.marca li {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  
}

.marca img {
  margin-top: 1rem;
  height: 10rem;
}


@media (max-width: 56em) {
  .marca {
    width: 75%;
  }
  .marca img {
    margin-top: 0.5rem;
    height: 8rem;
    padding: 1rem;
  }
}



/*################*/

/*######## Botão Whatsapp ########*/

.sticky-whatsapp {
  position: fixed;
  bottom: 5rem;
  right: 3rem;
  z-index: 100;
}

.sticky-whatsapp img{
  width: 12rem;
}


@media (max-width: 100em) {
  .sticky-whatsapp img {
    width: 12rem;
  
  }
}

@media (max-width: 75em) {
  .sticky-whatsapp {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    z-index: 100;
  }

  .sticky-whatsapp img {
    width: 10rem;
  
  }
}
@media (max-width: 56em) {
  .sticky-whatsapp {
    position: fixed;
    bottom: 4rem;
    right: 0rem;
    z-index: 100;
  }

  .sticky-whatsapp img {
    width: 8rem;
  
  }
}


/*################*/

.footer {
  background-color: #333;
  padding: 8rem 0;
  font-size: 1.5rem;
  color: #f7f7f7; }
  @media only screen and (max-width: 56.25em) {
    .footer {
      padding: 6rem 0; } }
  @media only screen and (max-width: 37.5em) {
    .footer {
      padding: 4rem 0; } }
  .footer__logo-box {
    text-align: center;
    margin-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__logo-box {
        margin-bottom: 2rem; } }
  .footer__logo {
    width: 30rem;
    height: auto; }
    @media only screen and (max-width: 56.25em) {
      .footer__logo {
        width: 28rem; } }
    @media only screen and (max-width: 37.5em) {
      .footer__logo {
        width: 26rem; } }
  .footer__frase {
    text-align: center;
    letter-spacing: 0.2rem;
    font-size: 2rem;
    font-weight: 400; }
    .footer__frase-pulse {
      animation: pulse 2s infinite; }
  .footer__icon {
    margin-right: 0.8rem; }
  .footer__navigation {
    border-top: 1px solid #999;
    padding: 2rem 2rem 0 2rem;
    display: inline-block; }
    @media only screen and (max-width: 56.25em) {
      .footer__navigation {
        width: 100%; } }
  .footer__list {
    list-style: none;
    font-size: 1.7rem; }
  .footer__item {
    margin-bottom: 2.8rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__item {
        margin-bottom: 1.5rem; } }
  .footer__link:link, .footer__link:visited {
    color: #f7f7f7;
    background-color: #333;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s; }
  .footer__link:hover, .footer__link:active {
    color:  #00A092;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
    transform: rotate(3deg) scale(1.3); }
  .footer__paragraph {
    width: 88%;
    border-top: 1px solid #999;
    padding: 2rem 2rem 0 2rem;
    float: right; }
    @media only screen and (max-width: 75em) {
      .footer__paragraph {
        width: 95%;
        padding: 2rem 4rem 0 2rem; } }
    @media only screen and (max-width: 56.25em) {
      .footer__paragraph {
        width: 100%;
        float: none;
        padding: 0; } }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  position: fixed;
  top: 6rem;
  right: 6rem;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer; }
  @media only screen and (max-width: 56.25em) {
    .navigation__button {
      top: 4rem;
      right: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__button {
      top: 3rem;
      right: 3rem; } }

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#4A4A49 ,  #00A092);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
  @media only screen and (max-width: 56.25em) {
    .navigation__background {
      top: 4.5rem;
      right: 4.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__background {
      top: 3.5rem;
      right: 3.5rem; } }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 235%;
  transition: all .4s; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #4A4A49 ;
  transform: translateX(1rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%; }

.navigation__icon {
  position: relative;
  margin-top: 3.5rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #333;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -.8rem; }
  .navigation__icon::after {
    top: .8rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

.section-servicos {
  background-color: #f7f7f7;
  padding: 14rem 0;
  margin-top: -15vh; }
  @media only screen and (max-width: 56.25em) {
    .section-servicos {
      margin-top: -10vh;
      padding: 10rem 0; } }
  @media only screen and (max-width: 37.5em) {
    .section-servicos {
      padding: 10rem 0; } }

.section-resultados {
  padding: 10rem 0 15rem 0;
  margin-top: -10rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)), url(../img/servico.webp);
  background-blend-mode: darken;
  background-position: center;
  background-size: cover;
  -webkit-clip-path: polygon(0 10vh, 50% 0, 100% 10vh, 100% 90%, 50% 100%, 0 90%);
  clip-path: polygon(0 10vh, 50% 0, 100% 10vh, 100% 90%, 50% 100%, 0 90%); }
  @media only screen and (min-resolution: 192dpi) and (min-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), only screen and (min-width: 125em) {
    .section-resultados {
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)), url(../img/servico_large.webp); } }
  @media only screen and (min-resolution: 192dpi) and (max-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em) {
    .section-resultados {
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)), url(../img/servico_small.webp); } }
  @media only screen and (max-width: 75em) {
    .section-resultados {
      padding: 8rem 0 13rem 0; } }
  @media only screen and (max-width: 56.25em) {
    .section-resultados {
      padding: 7rem 0 10rem 0;
      -webkit-clip-path: polygon(0 8vh, 50% 0, 100% 8vh, 100% 90%, 50% 100%, 0 90%);
      clip-path: polygon(0 8vh, 50% 0, 100% 8vh, 100% 90%, 50% 100%, 0 90%); } }

.section-ferramentas {
  /* background-color: #f7f7f7; */
  padding: 10rem 0 25rem 0;
  
   }
  @media only screen and (max-width: 56.25em) {
    .section-ferramentas {
      padding: 10rem 0 20rem 0; } }

.section-plano_negocios {
  background-color: #f7f7f7;
  padding: 15rem 0 35rem 0; }
  @media only screen and (max-width: 37.5em) {
    .section-plano_negocios {
      padding: 10rem 0 18rem 0; } }

.section-sobre {
  padding: 14rem 0 18rem 0;
  margin-top: -12rem;
  background-image: linear-gradient(to bottom right,  #00A092,  #00A092);
  -webkit-clip-path: polygon(0 10vh, 50% 0, 100% 10vh, 100% 100%, 50% 100%, 0 100%);
  clip-path: polygon(0 10vh, 50% 0, 100% 10vh, 100% 100%, 50% 100%, 0 100%); }
  @media only screen and (max-width: 56.25em) {
    .section-sobre {
      padding: 8rem 0 17rem 0;
      -webkit-clip-path: polygon(0 8vh, 50% 0, 100% 8vh, 100% 100%, 50% 100%, 0 100%);
      clip-path: polygon(0 8vh, 50% 0, 100% 8vh, 100% 100%, 50% 100%, 0 100%); } }
  @media only screen and (max-width: 37.5em) {
    .section-sobre {
      padding: 8rem 0 12rem 0;
      clip-path: polygon(0 6vh, 50% 0, 100% 6vh, 100% 100%, 50% 100%, 0 100%); } }

.section-contato {
  padding: 16rem 0;
  background-color: #f7f7f7; }
  @media only screen and (max-width: 37.5em) {
    .section-contato {
      padding: 13rem 0; } }

.contato {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/contato.webp);
  background-size: cover;
  border-radius: 3px;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4); }
  @media only screen and (min-resolution: 192dpi) and (min-width: 37.5em), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), only screen and (min-width: 125em) {
    .contato {
      background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/contato_large.webp); } }
  @media (min-resolution: 192dpi) and (max-width: 37.5em), (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em) {
    .contato {
      background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/contato_small.webp); } }
  @media only screen and (max-width: 75em) {
    .contato {
      background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(../img/contato.webp);
      background-size: cover; } }
  @media only screen and (max-width: 56.25em) {
    .contato {
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(../img/contato.webp); } }
  @media only screen and (max-width: 37.5em) {
    .contato {
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(../img/contato_small.webp); } }
  .contato__form {
    width: 50%;
    padding: 6rem; }
    @media only screen and (max-width: 75em) {
      .contato__form {
        width: 65%; } }
    @media only screen and (max-width: 56.25em) {
      .contato__form {
        width: 100%;
        padding: 5rem 3rem; } }
