@charset "UTF-8";
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: opensans;
  src: url("../fonts/opensans/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }
@font-face {
  font-family: titillium;
  src: url("../fonts/titillium/TitilliumWeb-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: titillium;
  src: url("../fonts/titillium/TitilliumWeb-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: titillium;
  src: url("../fonts/titillium/TitilliumWeb-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: titillium;
  src: url("../fonts/titillium/TitilliumWeb-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: titillium;
  src: url("../fonts/titillium/TitilliumWeb-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }
@keyframes circle_animate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(3600deg); } }
input[type="submit"], input[type="radio"], input[type="checkbox"] {
  cursor: pointer; }

* {
  outline: none !important; }

select,
input,
textarea {
  -webkit-appearance: none; }

*[data-load="on"] {
  color: transparent !important;
  pointer-events: none;
  position: sticky;
  filter: opacity(0.9);
  transition: all .3s; }
  *[data-load="on"]:before {
    content: "";
    position: absolute;
    background: url(../img/loading.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: rotate_load;
    animation-duration: 4s;
    animation-iteration-count: infinite; }
  *[data-load="on"]:after {
    content: "Carregando";
    position: absolute;
    color: white;
    font-family: ubuntu;
    font-size: 10px;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: text_load;
    animation-duration: 4s;
    animation-iteration-count: infinite; }

@keyframes rotate_load {
  100% {
    transform: translate(-50%, -50%) rotate(1080deg); } }
@keyframes text_load {
  0% {
    content: 'Carregando'; }
  25% {
    content: "Carregando."; }
  50% {
    content: "Carregando.."; }
  75% {
    content: "Carregando..."; }
  100% {
    content: "Carregando"; } }
body * {
  font-family: titillium; }

header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex !important;
  display: -webkit-flex !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 50px 0 45px; }
  header a.logo {
    display: block;
    width: 210px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center; }
  header .content {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; }
    header .content .paginas {
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      align-items: center; }
      header .content .paginas a {
        position: relative;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        color: #1F404A;
        display: block;
        padding: 0 0 10px;
        margin: 0 60px 0 0; }
        header .content .paginas a.active:before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 38px;
          height: 2px;
          background: #E9B652; }
      header .content .paginas .dropdown:hover .itens {
        opacity: 1;
        bottom: 0;
        pointer-events: all; }
      header .content .paginas .dropdown span {
        position: relative;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        color: #1F404A;
        display: block;
        padding: 0 18px 10px 0;
        background-image: url(./../img/header/select_header.svg);
        background-repeat: no-repeat;
        background-position: right 11px;
        cursor: default; }
        header .content .paginas .dropdown span.active:before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 38px;
          height: 2px;
          background: #E9B652; }
      header .content .paginas .dropdown .itens {
        transition: all .3s;
        pointer-events: none;
        position: absolute;
        width: 300px;
        opacity: 0;
        bottom: 10px;
        left: -25px;
        transform: translateY(100%);
        background: white;
        padding: 20px 25px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
        border-radius: 15px; }
        header .content .paginas .dropdown .itens a {
          font-weight: normal;
          padding: 0;
          margin: 0 0 5px; }
          header .content .paginas .dropdown .itens a:last-of-type {
            margin: 0; }
    header .content a.proposta {
      display: block;
      width: 200px;
      padding: 9px 0;
      margin: 0 0 0 95px;
      border-radius: 30px;
      background: #1F404A;
      color: white;
      font-size: 14px;
      font-weight: bold;
      text-align: center;
      transition: all .2s; }
      header .content a.proposta:hover {
        background: white;
        color: #1F404A;
        box-shadow: 0 3px 10px rgba(31, 64, 74, 0.4); }
  header button.menu {
    width: 65px;
    height: 40px;
    display: none;
    background: transparent;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 0; }
  @media (max-width: 1300px) {
    header {
      padding: 30px 30px 0 40px; }
      header a.logo {
        width: 180px;
        height: 60px; }
      header .content .paginas a {
        margin: 0 35px 0 0; }
      header .content a.proposta {
        margin: 0 0 0 60px;
        width: 170px; } }
  @media (max-width: 1050px) {
    header {
      padding: 30px 20px 0 30px; }
      header .content {
        display: none; }
      header button.menu {
        display: flex;
        display: -webkit-flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap; } }
  @media (max-width: 550px) {
    header {
      padding: 30px 10px 0 25px;
      align-items: center; } }

section.drop_menu {
  z-index: 11;
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: white;
  transition: all .3s;
  overflow: auto; }
  section.drop_menu[active="false"] {
    opacity: 0;
    pointer-events: none; }
    section.drop_menu[active="false"] .content_menu {
      transform: translateY(-10px); }
      section.drop_menu[active="false"] .content_menu a.sub_item {
        transform: translateY(-10px); }
  section.drop_menu .header_menu a.logo {
    display: block;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 180px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center; }
  section.drop_menu .header_menu button.fechar {
    position: absolute;
    top: 50px;
    right: 20px;
    border: none;
    background: transparent;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 65px;
    height: 40px;
    justify-content: center;
    align-items: center;
    padding: 0; }
  section.drop_menu .content_menu {
    padding: 165px 0 50px;
    transition: all .3s; }
    section.drop_menu .content_menu a.item {
      width: fit-content;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: -o-fit-content;
      display: block;
      margin: 0 auto 23px;
      padding: 0 10px;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 1px;
      color: #1F404A; }
    section.drop_menu .content_menu span {
      width: fit-content;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: -o-fit-content;
      display: block;
      margin: 0 auto 10px;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 1px;
      color: #1F404A; }
    section.drop_menu .content_menu a.sub_item {
      width: fit-content;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: -o-fit-content;
      display: block;
      margin: 0 auto 10px;
      padding: 0 10px;
      font-size: 16px;
      font-weight: initial;
      letter-spacing: 1px;
      color: #145E51;
      transition: all .3s; }
    section.drop_menu .content_menu a.proposta {
      display: block;
      width: 240px;
      padding: 11px 0;
      margin: 50px auto 30px;
      border-radius: 30px;
      background: #1F404A;
      color: white;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      transition: all .2s; }
      section.drop_menu .content_menu a.proposta:hover {
        background: white;
        color: #1F404A;
        box-shadow: 0 3px 10px rgba(31, 64, 74, 0.4); }
  @media (max-width: 1050px) {
    section.drop_menu {
      display: block; } }
  @media (max-width: 550px) {
    section.drop_menu .header_menu a.logo {
      top: 30px;
      left: 25px; }
    section.drop_menu .header_menu button.fechar {
      top: 40px;
      right: 10px; } }

footer {
  position: relative; }
  footer .content {
    width: 1235px;
    margin: 0 auto;
    padding: 0 0 95px; }
    footer .content .top_content {
      width: 100%;
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #DFDFDF;
      height: 200px;
      padding: 10px 0 0; }
      footer .content .top_content a.logo {
        width: 210px;
        height: 70px;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: contain; }
      footer .content .top_content .paginas {
        display: flex;
        display: -webkit-flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap; }
        footer .content .top_content .paginas a {
          font-size: 14px;
          letter-spacing: 1px;
          color: #1F404A;
          margin: 0 0 0 50px; }
    footer .content .bottom_content {
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      height: 135px; }
      footer .content .bottom_content p.endereco {
        width: 280px;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1px;
        margin: 0;
        color: #1F404A; }
      footer .content .bottom_content p.telefone {
        margin: 0;
        font-size: 22px;
        letter-spacing: 1px;
        color: #1F404A; }
      footer .content .bottom_content .redes {
        display: flex;
        display: -webkit-flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap; }
        footer .content .bottom_content .redes a {
          display: flex;
          display: -webkit-flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          width: 44px;
          height: 44px;
          background: rgba(198, 152, 77, 0.32);
          margin: 0 0 0 5px;
          transition: all .2s; }
          footer .content .bottom_content .redes a:hover {
            background: #1f404a; }
            footer .content .bottom_content .redes a:hover svg * {
              fill: white; }
          footer .content .bottom_content .redes a svg * {
            transition: all .2s; }
  footer a.logo_hibrida {
    background-image: url(./../img/logo-hibrida.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 25px; }
  @media (max-width: 1300px) {
    footer .content {
      width: 1000px;
      padding: 0 0 50px; } }
  @media (max-width: 1050px) {
    footer .content {
      width: 800px; } }
  @media (max-width: 850px) {
    footer .content {
      width: 100%;
      padding: 0 0 70px; }
      footer .content .top_content {
        border-bottom: initial;
        justify-content: center;
        height: 190px;
        padding: 0; }
        footer .content .top_content .paginas {
          display: none; }
      footer .content .bottom_content {
        height: auto;
        flex-direction: column;
        justify-content: center; }
        footer .content .bottom_content p.endereco {
          text-align: center;
          margin: 0 auto 20px; }
        footer .content .bottom_content p.telefone {
          text-align: center;
          margin: 0 auto 20px; }
        footer .content .bottom_content .redes {
          justify-content: center;
          width: 100%; }
          footer .content .bottom_content .redes a:first-of-type {
            margin: 0; } }
  @media (max-width: 550px) {
    footer .content {
      padding: 125px 0 80px; }
      footer .content .top_content {
        height: auto;
        padding: 0 0 45px; }
      footer .content .bottom_content p.endereco {
        margin: 0 auto 30px; }
      footer .content .bottom_content p.telefone {
        margin: 0 auto 40px; } }

section.home_banner {
  position: relative;
  background-image: url(./../img/home/bg_header[1920x890].jpg);
  background-position: center;
  background-size: cover;
  height: 890px; }
  section.home_banner .content {
    width: 1440px;
    height: 100%;
    position: relative;
    padding: 0 0 0 50px;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center; }
    section.home_banner .content .text h1 {
      width: 100%;
      max-width: 745px;
      font-weight: 600;
      font-size: 52px;
      line-height: 54px;
      color: #1F404A;
      margin: 0 0 35px; }
    section.home_banner .content .text p {
      width: 100%;
      max-width: 520px;
      font-weight: 300;
      font-size: 17px;
      letter-spacing: 1px;
      line-height: 28px;
      color: #000000;
      margin: 0 0 45px; }
    section.home_banner .content .text a {
      display: block;
      border: 2px solid #145E51;
      border-radius: 10px;
      width: 295px;
      text-transform: uppercase;
      text-align: center;
      font-weight: bold;
      font-size: 15px;
      color: #145E51;
      padding: 17px 0;
      transition: all .1s; }
      section.home_banner .content .text a:hover {
        background: #145E51;
        color: white; }
    section.home_banner .content .image {
      position: absolute;
      right: 0;
      bottom: 0;
      background-position: center bottom;
      background-size: contain;
      background-repeat: no-repeat;
      width: 900px;
      height: 755px; }
  section.home_banner svg {
    position: absolute;
    left: 160px;
    bottom: -40px;
    animation-name: horizontal_animate;
    animation-duration: 8s;
    animation-iteration-count: infinite; }
  @media (max-width: 1450px) {
    section.home_banner {
      height: 700px; }
      section.home_banner .content {
        width: 1120px;
        padding: 90px 0 0; }
        section.home_banner .content .text h1 {
          max-width: 625px;
          font-size: 45px;
          line-height: 47px;
          margin: 0 0 30px; }
        section.home_banner .content .text p {
          margin: 0 0 35px; }
        section.home_banner .content .text a {
          width: 270px;
          padding: 15px 0; }
        section.home_banner .content .image {
          width: 650px;
          height: 545px; }
      section.home_banner svg {
        height: auto;
        width: 140px;
        left: 80px;
        bottom: -28px; } }
  @media (max-width: 1200px) {
    section.home_banner {
      height: 550px; }
      section.home_banner .content {
        width: 880px;
        padding: 100px 0 0; }
        section.home_banner .content .text h1 {
          max-width: 480px;
          font-size: 35px;
          line-height: 37px;
          margin: 0 0 25px; }
        section.home_banner .content .text p {
          max-width: 440px;
          font-size: 15px;
          line-height: 24px;
          margin: 0 0 30px; }
        section.home_banner .content .text a {
          width: 250px;
          padding: 13px 0;
          font-size: 12px; }
        section.home_banner .content .image {
          width: 500px;
          height: 420px; }
      section.home_banner svg {
        width: 120px;
        left: 60px;
        bottom: -33px; } }
  @media (max-width: 950px) {
    section.home_banner {
      height: auto;
      background-image: initial;
      background-color: #E9F3F2; }
      section.home_banner .content {
        width: 100%;
        padding: 140px 0 0; }
        section.home_banner .content .text {
          margin: 0 auto;
          max-width: 650px;
          padding: 0 35px 50px; }
          section.home_banner .content .text h1 {
            max-width: initial;
            text-align: center; }
          section.home_banner .content .text p {
            max-width: initial;
            text-align: center; }
          section.home_banner .content .text a {
            margin: 0 auto; }
        section.home_banner .content .image {
          position: relative;
          margin: 0 auto; }
      section.home_banner svg {
        display: none; } }
  @media (max-width: 550px) {
    section.home_banner .content {
      padding: 170px 0 0; }
      section.home_banner .content .text {
        padding: 0 20px 35px; }
        section.home_banner .content .text h1 {
          font-size: 26px;
          line-height: 30px; }
        section.home_banner .content .text p {
          margin: 0 0 20px; }
        section.home_banner .content .text a {
          width: 310px;
          padding: 12px 0; }
      section.home_banner .content .image {
        width: 86.111vw;
        height: 70.833vw; } }
section.home_frotas {
  background-image: url(./../img/home/frotas_bg[675x750].jpg);
  background-position: left center;
  background-repeat: no-repeat; }
  section.home_frotas .content {
    height: 750px;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 0 0 85px; }
    section.home_frotas .content .image {
      width: 950px;
      height: 550px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      margin: 0 45px 0 0; }
    section.home_frotas .content .text {
      width: 495px; }
      section.home_frotas .content .text h2 {
        font-weight: bold;
        font-size: 40px;
        line-height: 46px;
        color: #000000;
        margin: 0 0 25px; }
      section.home_frotas .content .text p {
        font-size: 17px;
        line-height: 28px;
        letter-spacing: 1px;
        color: #707070;
        margin: 0 0 60px; }
      section.home_frotas .content .text a {
        background: #1F404A;
        color: #FFFFFF;
        width: 295px;
        border-radius: 10px;
        display: block;
        text-transform: uppercase;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        padding: 18px 0 19px;
        transition: all .2s; }
        section.home_frotas .content .text a:hover {
          background: white;
          color: #1F404A;
          box-shadow: 0 3px 10px rgba(31, 64, 74, 0.4); }
  @media (max-width: 1600px) {
    section.home_frotas .content {
      padding: 0 0 0 40px;
      height: 650px; }
      section.home_frotas .content .image {
        width: 800px;
        height: 465px;
        margin: 0 40px 0 0; }
      section.home_frotas .content .text h2 {
        font-size: 35px;
        line-height: 41px; }
      section.home_frotas .content .text p {
        margin: 0 0 40px; } }
  @media (max-width: 1400px) {
    section.home_frotas {
      background-size: auto 550px; }
      section.home_frotas .content {
        height: 550px; }
        section.home_frotas .content .image {
          width: 700px;
          height: 405px; }
        section.home_frotas .content .text {
          width: 420px; }
          section.home_frotas .content .text h2 {
            font-size: 30px;
            line-height: 35px;
            margin: 0 0 20px; }
          section.home_frotas .content .text p {
            font-size: 16px;
            line-height: 26px; }
          section.home_frotas .content .text a {
            width: 270px;
            padding: 15px 0; } }
  @media (max-width: 1250px) {
    section.home_frotas {
      position: relative;
      padding-bottom: 450px;
      background-position: left bottom; }
      section.home_frotas .content {
        height: auto;
        padding: 0; }
        section.home_frotas .content .image {
          position: absolute;
          bottom: 0;
          left: 50px;
          margin: 0; }
        section.home_frotas .content .text {
          margin: 0 auto;
          width: 600px;
          text-align: center;
          padding: 70px 0 20px; }
          section.home_frotas .content .text a {
            margin: 0 auto; } }
  @media (max-width: 750px) {
    section.home_frotas {
      background-size: auto 73.333vw;
      padding-bottom: 60vw; }
      section.home_frotas .content .image {
        width: 93.333vw;
        height: 54vw;
        left: 6.667vw; }
      section.home_frotas .content .text {
        width: 100%;
        max-width: 650px;
        padding: 90px 25px 40px; }
        section.home_frotas .content .text h2 {
          font-size: 24px;
          line-height: 30px; }
        section.home_frotas .content .text a {
          font-size: 12px;
          width: 310px;
          padding: 14px 0; } }
section.home_porque {
  position: relative; }
  section.home_porque:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 58%;
    height: 100%;
    background: #dcedea; }
  section.home_porque:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 395px;
    background: #1F404A; }
  section.home_porque .circles {
    position: absolute;
    right: 0;
    top: -390px;
    width: 160px;
    height: 855px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none; }
    section.home_porque .circles:before {
      content: '';
      position: absolute;
      bottom: 90px;
      left: 0;
      width: 625px;
      height: 625px;
      background: #E9B652;
      border-radius: 50%;
      animation-name: vertical_animate;
      animation-duration: 8s;
      animation-iteration-count: infinite; }
    section.home_porque .circles:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 625px;
      height: 625px;
      border: 1px solid #E9B652;
      border-radius: 50%;
      animation-name: vertical_animate;
      animation-duration: 9s;
      animation-iteration-count: infinite;
      animation-delay: 1.3s; }
    section.home_porque .circles svg {
      position: absolute;
      left: 0;
      bottom: 0;
      animation-name: vertical_animate;
      animation-duration: 12s;
      animation-iteration-count: infinite; }
  section.home_porque .content {
    position: relative;
    z-index: 1;
    padding: 85px 0 90px; }
    section.home_porque .content h2 {
      font-weight: bold;
      font-size: 36px;
      line-height: 46px;
      text-align: center;
      color: #FFFFFF;
      margin: 0 0 45px; }
    section.home_porque .content .iten_list {
      width: calc((370px + 18px) * 3);
      margin: 0 auto;
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: center; }
      section.home_porque .content .iten_list .item {
        width: 370px;
        min-height: 350px;
        margin: 0 9px;
        padding: 35px 30px 45px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.12); }
        section.home_porque .content .iten_list .item .icone {
          background-position: center;
          background-size: contain;
          background-repeat: no-repeat;
          width: 100px;
          height: 85px;
          margin: 0 0 23px; }
        section.home_porque .content .iten_list .item h3 {
          font-weight: bold;
          font-size: 22px;
          line-height: 24px;
          min-height: 48px;
          color: #145E51;
          margin: 0 0 15px; }
        section.home_porque .content .iten_list .item p {
          font-size: 15px;
          line-height: 22px;
          letter-spacing: 0.5px;
          color: #707070;
          margin: 0; }
  @media (max-width: 1450px) {
    section.home_porque .circles {
      top: -270px;
      width: 110px;
      height: 825px; } }
  @media (max-width: 1250px) {
    section.home_porque:before {
      width: 75%; }
    section.home_porque .circles {
      display: none; }
    section.home_porque .content h2 {
      font-size: 33px;
      line-height: 43px; }
    section.home_porque .content .iten_list {
      width: calc((310px + 18px) * 3); }
      section.home_porque .content .iten_list .item {
        width: 310px;
        min-height: initial;
        padding: 35px 30px 30px; }
        section.home_porque .content .iten_list .item .icone {
          margin: 0 auto 23px; }
        section.home_porque .content .iten_list .item h3 {
          font-size: 20px;
          line-height: 24px;
          min-height: 48px;
          text-align: center; }
        section.home_porque .content .iten_list .item p {
          text-align: center; } }
  @media (max-width: 1000px) {
    section.home_porque .content .iten_list {
      width: calc((310px + 18px) * 2); }
      section.home_porque .content .iten_list .item {
        margin: 0 9px 20px; } }
  @media (max-width: 700px) {
    section.home_porque .content {
      padding: 55px 0 50px; }
      section.home_porque .content h2 {
        font-size: 26px;
        line-height: 32px;
        margin: 0 0 25px; }
      section.home_porque .content .iten_list {
        width: 310px; }
        section.home_porque .content .iten_list .item {
          margin: 0 0 25px; } }
section.home_credenciada {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding: 90px 0 130px; }
  section.home_credenciada:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 58%;
    height: 100%;
    background: #dcedea; }
  section.home_credenciada .left_content {
    width: 44%;
    position: relative;
    z-index: 1; }
    section.home_credenciada .left_content .text_content {
      width: 505px;
      margin: 0 0 0 auto;
      padding: 55px 0 0; }
      section.home_credenciada .left_content .text_content h2 {
        font-weight: bold;
        font-size: 40px;
        line-height: 46px;
        color: #000000;
        margin: 0 0 30px; }
      section.home_credenciada .left_content .text_content p {
        max-width: 365px;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.5px;
        color: #707070;
        margin: 0 0 65px; }
      section.home_credenciada .left_content .text_content a {
        background: #1F404A;
        color: #FFFFFF;
        width: 295px;
        border-radius: 10px;
        display: block;
        text-transform: uppercase;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        padding: 18px 0 19px;
        transition: all .2s; }
        section.home_credenciada .left_content .text_content a:hover {
          background: white;
          color: #1F404A;
          box-shadow: 0 3px 10px rgba(31, 64, 74, 0.4); }
  section.home_credenciada .right_content {
    width: 56%;
    position: relative;
    z-index: 1; }
    section.home_credenciada .right_content .image {
      background-position: left center;
      background-size: cover;
      width: 100%;
      height: 630px; }
  @media (max-width: 1250px) {
    section.home_credenciada {
      padding: 60px 0 80px; }
      section.home_credenciada:before {
        width: 75%; }
      section.home_credenciada .left_content {
        width: 45%; }
        section.home_credenciada .left_content .text_content {
          width: 430px; }
          section.home_credenciada .left_content .text_content h2 {
            font-size: 35px;
            line-height: 41px;
            margin: 0 0 20px; }
          section.home_credenciada .left_content .text_content p {
            margin: 0 0 40px; }
      section.home_credenciada .right_content {
        width: 55%; }
        section.home_credenciada .right_content .image {
          height: 500px; } }
  @media (max-width: 1050px) {
    section.home_credenciada {
      padding: 30px 0 80px; }
      section.home_credenciada:before {
        height: 320px; }
      section.home_credenciada .left_content {
        order: 1;
        width: 100%; }
        section.home_credenciada .left_content .text_content {
          width: 600px;
          margin: 0 auto;
          padding: 40px 0 0; }
          section.home_credenciada .left_content .text_content p {
            max-width: initial; }
          section.home_credenciada .left_content .text_content a {
            width: 270px;
            padding: 15px 0;
            margin: 0 auto; }
      section.home_credenciada .right_content {
        order: 0;
        width: 100%; }
        section.home_credenciada .right_content .image {
          height: 350px;
          width: 600px;
          margin: 0 auto; } }
  @media (max-width: 650px) {
    section.home_credenciada {
      padding: 20px 0 110px; }
      section.home_credenciada:before {
        height: 53vw; }
      section.home_credenciada .left_content .text_content {
        padding: 40px 25px 0;
        width: 100%; }
        section.home_credenciada .left_content .text_content h2 {
          font-size: 26px;
          line-height: 30px;
          margin: 0 0 30px; }
        section.home_credenciada .left_content .text_content p {
          margin: 0 0 30px; }
        section.home_credenciada .left_content .text_content a {
          font-size: 12px;
          width: 310px;
          padding: 14px 0; }
      section.home_credenciada .right_content .image {
        width: 86.111vw;
        height: 50.278vw; } }
section.home_proposta {
  background-image: url(./../img/home/proposta_bg.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  height: 450px; }
  section.home_proposta .content {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1235px;
    margin: 0 auto; }
    section.home_proposta .content h2 {
      font-weight: 300;
      font-size: 42px;
      line-height: 50px;
      margin: 0;
      color: #FFFFFF;
      max-width: 580px; }
    section.home_proposta .content p {
      font-size: 15px;
      line-height: 22px;
      letter-spacing: 1px;
      color: #FFFFFF;
      margin: 0;
      max-width: 580px; }
    section.home_proposta .content a {
      display: block;
      width: 100%;
      background: #C6984D;
      color: white;
      font-size: 24px;
      font-weight: bold;
      line-height: 50px;
      padding: 13px 0 12px;
      border-radius: 10px;
      text-align: center;
      margin: 75px 0 0;
      transition: all .2s; }
      section.home_proposta .content a:hover {
        background: white;
        color: #C6984D; }
  @media (max-width: 1300px) {
    section.home_proposta .content {
      width: 800px; }
      section.home_proposta .content h2 {
        width: 100%;
        max-width: initial;
        text-align: center;
        font-size: 38px;
        line-height: 46px;
        margin: 0 0 25px; }
      section.home_proposta .content p {
        width: 100%;
        max-width: initial;
        text-align: center; }
      section.home_proposta .content a {
        margin: 50px 0 0; } }
  @media (max-width: 850px) {
    section.home_proposta {
      height: auto; }
      section.home_proposta .content {
        width: 100%;
        padding: 80px 50px 60px; }
        section.home_proposta .content h2 {
          font-size: 34px;
          line-height: 38px; } }
  @media (max-width: 650px) {
    section.home_proposta .content {
      padding: 70px 25px 55px; }
      section.home_proposta .content h2 {
        font-size: 26px;
        line-height: 28px; }
      section.home_proposta .content a {
        font-size: 18px;
        line-height: 30px;
        padding: 8px 0;
        margin: 35px 0 0; } }

section.sobre_header {
  position: relative;
  padding: 240px 0 145px; }
  section.sobre_header:before {
    content: '';
    position: absolute;
    background-image: url(./../img/sobre/sobre_topo_bg[1920x610].png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 610px;
    left: 0;
    top: 0; }
  section.sobre_header .content {
    width: 1235px;
    position: relative;
    z-index: 1;
    margin: 0 auto; }
    section.sobre_header .content .image {
      position: relative;
      width: 100%;
      height: 485px;
      background-size: cover;
      background-position: center;
      margin: 0 0 100px; }
      section.sobre_header .content .image svg {
        position: absolute;
        top: -35px;
        left: 160px;
        animation-name: horizontal_animate;
        animation-duration: 8s;
        animation-iteration-count: infinite; }
    section.sobre_header .content .text_content {
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between; }
      section.sobre_header .content .text_content .left_content {
        width: 515px; }
        section.sobre_header .content .text_content .left_content h1 {
          font-weight: bold;
          font-size: 40px;
          line-height: 46px;
          color: #000000;
          margin: 0 0 40px; }
        section.sobre_header .content .text_content .left_content a.solicitar_proposta {
          display: block;
          width: 295px;
          border: 1px solid #1F404A;
          border-radius: 10px;
          text-transform: uppercase;
          text-align: center;
          font-weight: bold;
          font-size: 14px;
          color: #1F404A;
          padding: 19px 0 18px;
          transition: all .2s; }
          section.sobre_header .content .text_content .left_content a.solicitar_proposta:hover {
            background: #1F404A;
            color: #ffffff; }
      section.sobre_header .content .text_content .right_content {
        width: 600px; }
        section.sobre_header .content .text_content .right_content p {
          margin: 0;
          font-size: 17px;
          line-height: 28px;
          letter-spacing: .5px;
          color: #707070; }
  @media (max-width: 1300px) {
    section.sobre_header {
      padding: 200px 0 100px; }
      section.sobre_header:before {
        height: 450px; }
      section.sobre_header .content {
        width: 950px; }
        section.sobre_header .content .image {
          height: 373px; }
          section.sobre_header .content .image svg {
            height: auto;
            width: 130px;
            left: 60px; }
        section.sobre_header .content .text_content .left_content {
          width: 380px; }
          section.sobre_header .content .text_content .left_content h1 {
            font-size: 30px;
            line-height: 36px;
            margin: 0 0 30px; }
          section.sobre_header .content .text_content .left_content a.solicitar_proposta {
            width: 250px;
            padding: 15px 0; }
        section.sobre_header .content .text_content .right_content {
          width: 500px; }
          section.sobre_header .content .text_content .right_content p {
            font-size: 16px;
            line-height: 26px; } }
  @media (max-width: 1000px) {
    section.sobre_header {
      padding: 170px 0 70px; }
      section.sobre_header:before {
        height: 380px; }
      section.sobre_header .content {
        width: 750px; }
        section.sobre_header .content .image {
          height: 294px;
          margin: 0 0 50px; }
          section.sobre_header .content .image svg {
            width: 100px;
            left: 50px;
            top: -26px; }
        section.sobre_header .content .text_content .left_content {
          width: 100%;
          margin: 0 0 30px; }
        section.sobre_header .content .text_content .right_content {
          width: 100%; } }
  @media (max-width: 800px) {
    section.sobre_header {
      padding: 155px 0 55px; }
      section.sobre_header:before {
        height: 330px; }
      section.sobre_header .content {
        width: 600px; }
        section.sobre_header .content .image {
          height: 235px;
          margin: 0 0 30px; }
          section.sobre_header .content .image svg {
            width: 80px;
            left: 35px;
            top: -20px; }
        section.sobre_header .content .text_content .left_content h1 {
          font-size: 28px;
          line-height: 34px;
          margin: 0 0 20px; }
        section.sobre_header .content .text_content .left_content a.solicitar_proposta {
          width: 230px; } }
  @media (max-width: 650px) {
    section.sobre_header {
      padding: 160px 0 70px; }
      section.sobre_header:before {
        display: none; }
      section.sobre_header .content {
        width: 86.111vw; }
        section.sobre_header .content .image {
          height: 33.817vw;
          margin: 0 0 40px; }
          section.sobre_header .content .image svg {
            width: 12.222vw;
            top: -1.944vw;
            left: 11.111vw; }
        section.sobre_header .content .text_content .left_content {
          margin: 0 0 45px; }
          section.sobre_header .content .text_content .left_content h1 {
            font-size: 25px;
            line-height: 27px;
            margin: 0 0 25px; }
          section.sobre_header .content .text_content .left_content a.solicitar_proposta {
            width: 100%;
            padding: 12px 0 11px; } }
section.sobre_info {
  position: relative;
  background-color: #F3F3F3;
  background-image: url(./../img/sobre/info_image[985x845].png);
  background-position: right bottom;
  background-repeat: no-repeat;
  min-height: 845px; }
  section.sobre_info:before {
    content: '';
    position: absolute;
    background-image: url(./../img/sobre/info_before[720x1020].png);
    background-size: cover;
    background-position: left center;
    width: 720px;
    height: 1020px;
    right: 0;
    top: -180px; }
  section.sobre_info .content {
    position: relative;
    z-index: 1;
    width: 1230px;
    margin: 0 auto;
    padding: 85px 0 0; }
    section.sobre_info .content > div {
      width: 600px; }
      section.sobre_info .content > div .visao {
        margin: 0 0 90px; }
        section.sobre_info .content > div .visao h2 {
          text-transform: uppercase;
          font-weight: bold;
          font-size: 32px;
          color: #000000;
          margin: 0 0 10px; }
        section.sobre_info .content > div .visao p {
          font-size: 17px;
          line-height: 28px;
          letter-spacing: .5px;
          color: #707070;
          margin: 0; }
      section.sobre_info .content > div .valores {
        display: flex;
        display: -webkit-flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between; }
        section.sobre_info .content > div .valores h2 {
          width: 100%;
          text-transform: uppercase;
          font-weight: bold;
          font-size: 32px;
          color: #000000;
          margin: 0 0 28px; }
        section.sobre_info .content > div .valores .item {
          width: 220px;
          margin: 0 0 68px; }
          section.sobre_info .content > div .valores .item h3 {
            min-height: 34px;
            display: flex;
            display: -webkit-flex;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
            margin: 0 0 12px; }
            section.sobre_info .content > div .valores .item h3 span {
              display: block; }
              section.sobre_info .content > div .valores .item h3 span.icon {
                width: 34px;
                height: 34px;
                background-position: center;
                background-repeat: no-repeat; }
              section.sobre_info .content > div .valores .item h3 span.title {
                width: calc(100% - 34px);
                padding: 7px 0 0 18px;
                font-weight: bold;
                font-size: 17px;
                line-height: 18px;
                letter-spacing: .5px;
                color: #2A8D7C;
                text-transform: uppercase; }
          section.sobre_info .content > div .valores .item p {
            font-size: 15px;
            line-height: 24px;
            letter-spacing: .5px;
            color: #707070;
            margin: 0; }
  @media (max-width: 1300px) {
    section.sobre_info {
      background-position: calc(100% + 250px) bottom; }
      section.sobre_info:before {
        width: 460px;
        height: 740px;
        top: -90px; }
      section.sobre_info .content {
        width: 950px; }
        section.sobre_info .content > div {
          width: 500px; }
          section.sobre_info .content > div .visao {
            margin: 0 0 70px; } }
  @media (max-width: 1000px) {
    section.sobre_info {
      background-position: calc(100% + 350px) bottom; }
      section.sobre_info:before {
        display: none; }
      section.sobre_info .content {
        width: 100%;
        padding: 85px 35px 0; } }
  @media (max-width: 800px) {
    section.sobre_info {
      background-position: right bottom;
      background-size: 350px; }
      section.sobre_info .content {
        padding: 60px 0 250px; }
        section.sobre_info .content > div {
          width: 600px;
          margin: 0 auto; }
          section.sobre_info .content > div .visao h2 {
            font-size: 30px; }
          section.sobre_info .content > div .visao p {
            font-size: 16px;
            line-height: 26px; }
          section.sobre_info .content > div .valores h2 {
            font-size: 30px; }
          section.sobre_info .content > div .valores .item {
            width: 250px;
            margin: 0 0 60px; } }
  @media (max-width: 650px) {
    section.sobre_info {
      background-size: auto 240px; }
      section.sobre_info .content {
        padding: 75px 0 232px; }
        section.sobre_info .content > div {
          width: 86.111vw; }
          section.sobre_info .content > div .visao {
            margin: 0 0 45px; }
            section.sobre_info .content > div .visao h2 {
              font-size: 28px;
              margin: 0 0 15px; }
          section.sobre_info .content > div .valores h2 {
            font-size: 28px;
            margin: 0 0 25px; }
          section.sobre_info .content > div .valores .item {
            width: 100%;
            margin: 0 0 40px; }
            section.sobre_info .content > div .valores .item h3 {
              margin: 0 0 10px; } }

section.space_top {
  width: 100%;
  height: 160px;
  background: white; }
  @media (max-width: 1300px) {
    section.space_top {
      height: 135px; } }
  @media (max-width: 550px) {
    section.space_top {
      height: 120px; } }
section.frotas_header {
  position: relative; }
  section.frotas_header .banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 610px;
    background-position: center;
    background-size: cover; }
  section.frotas_header .content {
    position: relative;
    width: 1240px;
    margin: 0 auto;
    padding: 110px 0 135px; }
    section.frotas_header .content h1 {
      font-weight: bold;
      font-size: 50px;
      text-align: center;
      color: #FFFFFF;
      margin: 0 0 17px; }
    section.frotas_header .content > p {
      font-size: 24px;
      line-height: 30px;
      text-align: center;
      color: #FFFFFF;
      max-width: 950px;
      margin: 0 auto 75px; }
    section.frotas_header .content .image_content {
      position: relative;
      width: 100%;
      margin: 0 0 125px; }
      section.frotas_header .content .image_content .image_1 {
        position: relative;
        z-index: 1;
        width: 825px;
        height: 490px;
        margin: 0 auto;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat; }
      section.frotas_header .content .image_content .image_2 {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 520px;
        height: 340px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
      section.frotas_header .content .image_content .image_3 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 520px;
        height: 340px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
    section.frotas_header .content .text_content {
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between; }
      section.frotas_header .content .text_content > div {
        width: 510px; }
        section.frotas_header .content .text_content > div p {
          font-size: 17px;
          line-height: 30px;
          letter-spacing: .5px;
          color: #000000;
          margin: 0; }
  section.frotas_header svg {
    position: absolute;
    left: -35px;
    bottom: 125px;
    pointer-events: none; }
  @media (max-width: 1300px) {
    section.frotas_header .banner {
      height: 545px; }
    section.frotas_header .content {
      width: 1030px;
      padding: 80px 0 100px; }
      section.frotas_header .content > p {
        margin: 0 auto 55px; }
      section.frotas_header .content .image_content {
        margin: 0 0 80px; }
        section.frotas_header .content .image_content .image_1 {
          width: 700px;
          height: 415px; }
        section.frotas_header .content .image_content .image_2 {
          width: 400px;
          height: 260px; }
        section.frotas_header .content .image_content .image_3 {
          width: 400px;
          height: 260px; }
      section.frotas_header .content .text_content > div {
        width: 470px; }
    section.frotas_header svg {
      height: auto;
      width: 540px;
      left: -30px;
      bottom: 120px; } }
  @media (max-width: 1100px) {
    section.frotas_header .banner {
      height: 440px; }
    section.frotas_header .content {
      width: 700px;
      padding: 80px 0; }
      section.frotas_header .content h1 {
        font-size: 40px;
        margin: 0 0 15px; }
      section.frotas_header .content > p {
        font-size: 22px;
        line-height: 28px;
        max-width: 850px;
        margin: 0 auto 50px; }
      section.frotas_header .content .image_content {
        margin: 0 0 50px; }
        section.frotas_header .content .image_content .image_1 {
          width: 500px;
          height: 296px; }
        section.frotas_header .content .image_content .image_2 {
          width: 270px;
          height: 176px; }
        section.frotas_header .content .image_content .image_3 {
          width: 270px;
          height: 176px; }
      section.frotas_header .content .text_content > div {
        width: 100%;
        margin: 0 0 20px; } }
  @media (max-width: 750px) {
    section.frotas_header .content {
      width: 500px; }
      section.frotas_header .content .image_content .image_2 {
        display: none; }
      section.frotas_header .content .image_content .image_3 {
        display: none; } }
  @media (max-width: 550px) {
    section.frotas_header .banner {
      height: 485px; }
    section.frotas_header .content {
      width: 86.111vw;
      padding: 145px 0 25px; }
      section.frotas_header .content h1 {
        font-size: 34px;
        margin: 0 0 40px; }
      section.frotas_header .content > p {
        font-size: 20px;
        line-height: 26px;
        margin: 0 auto 55px; }
      section.frotas_header .content .image_content .image_1 {
        width: 100%;
        height: 51.111vw; }
      section.frotas_header .content .text_content > div {
        margin: 0 0 30px; }
        section.frotas_header .content .text_content > div p {
          font-size: 16px;
          line-height: 26px; }
    section.frotas_header svg {
      display: none; } }
section.frotas_content {
  padding: 0 0 50px; }
  section.frotas_content.gestor .image_content .banner {
    right: 0;
    border-radius: 0 0 0 200px; }
  section.frotas_content.gestor .list_item .item h3 {
    color: #C6984D; }
  section.frotas_content.equipe .image_content .banner {
    left: 0;
    border-radius: 0 0 200px 0; }
  section.frotas_content.equipe .list_item .item h3 {
    color: #2A8D7C; }
  section.frotas_content .image_content {
    position: relative;
    width: 100%;
    height: 430px;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center; }
    section.frotas_content .image_content .banner {
      position: absolute;
      top: 0;
      width: 92%;
      height: 100%;
      overflow: hidden;
      background-position: center;
      background-size: cover; }
      section.frotas_content .image_content .banner:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #1F404A;
        opacity: .54; }
    section.frotas_content .image_content svg {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%); }
    section.frotas_content .image_content h2 {
      position: relative;
      z-index: 1;
      font-weight: bold;
      font-size: 32px;
      letter-spacing: .5px;
      color: white;
      width: 100%;
      text-align: center;
      margin: 0; }
  section.frotas_content .list_item {
    position: relative;
    z-index: 1;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin: -42px auto 0;
    width: calc((154px + (28px * 2)) * 6); }
    section.frotas_content .list_item .item {
      width: 154px;
      margin: 0 28px 40px; }
      section.frotas_content .list_item .item .icon {
        display: block;
        width: 78px;
        height: 78px;
        background-color: white;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
        margin: 0 0 30px; }
      section.frotas_content .list_item .item h3 {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 15px;
        letter-spacing: .5px;
        color: black;
        margin: 0 0 5px; }
      section.frotas_content .list_item .item p {
        font-size: 15px;
        line-height: 24px;
        letter-spacing: .5px;
        color: #000000;
        margin: 0; }
  @media (max-width: 1500px) {
    section.frotas_content .image_content .banner {
      width: 97%; }
    section.frotas_content .list_item {
      width: calc((154px + (20px * 2)) * 6); }
      section.frotas_content .list_item .item {
        margin: 0 20px 40px; } }
  @media (max-width: 1300px) {
    section.frotas_content .image_content {
      height: 350px; }
      section.frotas_content .image_content svg {
        width: auto;
        height: 300px;
        bottom: 60px; }
      section.frotas_content .image_content h2 {
        font-size: 28px; }
    section.frotas_content .list_item {
      width: calc((154px + (20px * 2)) * 3); } }
  @media (max-width: 900px) {
    section.frotas_content .image_content .banner {
      width: 100%;
      border-radius: 0 !important; }
    section.frotas_content .image_content svg {
      height: 200px;
      bottom: 100px; } }
  @media (max-width: 600px) {
    section.frotas_content .image_content {
      height: 270px; }
      section.frotas_content .image_content svg {
        display: none; }
    section.frotas_content .list_item {
      width: 310px;
      justify-content: space-between; }
      section.frotas_content .list_item .item {
        width: 130px;
        margin: 0 0 60px; } }
section.frotas_proposta {
  background: #F3F3F3; }
  section.frotas_proposta .content {
    position: relative;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 1230px;
    height: 460px;
    padding: 0 120px 0 0; }
    section.frotas_proposta .content svg {
      position: absolute;
      top: -40px;
      right: 120px;
      animation-name: horizontal_animate;
      animation-duration: 8s;
      animation-iteration-count: infinite; }
    section.frotas_proposta .content .text {
      width: 600px; }
      section.frotas_proposta .content .text h2 {
        font-weight: bold;
        font-size: 40px;
        line-height: 46px;
        color: #000000;
        margin: 0 0 32px; }
      section.frotas_proposta .content .text p {
        font-size: 17px;
        line-height: 28px;
        letter-spacing: .5px;
        color: #707070;
        margin: 0; }
    section.frotas_proposta .content a {
      display: block;
      width: 296px;
      border-radius: 10px;
      background: #2A8D7C;
      color: white;
      text-transform: uppercase;
      text-align: center;
      font-weight: bold;
      font-size: 15px;
      padding: 19px 0;
      transition: all .2s; }
      section.frotas_proposta .content a:hover {
        background: white;
        color: #2A8D7C;
        box-shadow: 0 3px 10px rgba(42, 141, 124, 0.4); }
  @media (max-width: 1300px) {
    section.frotas_proposta .content {
      width: 100%;
      padding: 0 50px; }
      section.frotas_proposta .content svg {
        right: 50px; } }
  @media (max-width: 1000px) {
    section.frotas_proposta .content {
      display: block;
      height: auto;
      padding: 70px 30px; }
      section.frotas_proposta .content svg {
        display: none; }
      section.frotas_proposta .content .text {
        width: 100%;
        text-align: center; }
        section.frotas_proposta .content .text h2 {
          font-size: 33px;
          line-height: 39px;
          margin: 0 0 20px; }
        section.frotas_proposta .content .text p {
          margin: 0 0 50px; }
      section.frotas_proposta .content a {
        margin: 0 auto; } }
  @media (max-width: 550px) {
    section.frotas_proposta .content {
      padding: 65px 25px; }
      section.frotas_proposta .content .text h2 {
        font-size: 28px;
        line-height: 30px;
        margin: 0 0 40px; }
      section.frotas_proposta .content .text p {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 35px; }
      section.frotas_proposta .content a {
        width: 100%;
        max-width: 310px;
        padding: 12px 0; } }

section.proposta_content {
  position: relative;
  padding: 90px 0 100px;
  background-color: rgba(239, 239, 239, 0.4); }
  section.proposta_content .banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 435px;
    background-position: center;
    background-size: cover; }
    section.proposta_content .banner:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #1F404A;
      opacity: .82; }
  section.proposta_content h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    letter-spacing: .5px;
    text-align: center;
    color: white;
    margin: 0 0 55px;
    padding: 0 0 20px; }
    section.proposta_content h1:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 2px;
      background: #E9B652; }
  section.proposta_content .form_content {
    position: relative;
    z-index: 1; }
    section.proposta_content .form_content form {
      margin: 0 auto;
      width: 740px;
      border-radius: 15px;
      box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
      background: white;
      padding: 65px 44px 53px;
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between; }
      section.proposta_content .form_content form h2 {
        width: 100%;
        font-weight: 300;
        font-size: 28px;
        color: #000000;
        margin: 0 0 25px;
        text-align: center; }
      section.proposta_content .form_content form .item {
        width: 100%;
        margin: 0 0 15px;
        position: relative;
        font-size: 14px; }
        section.proposta_content .form_content form .item input, section.proposta_content .form_content form .item select {
          outline: none;
          min-width: 100px;
          height: 60px;
          transition: all .3s ease-out;
          -webkit-transition: all .3s ease-out;
          -moz-transition: all .3s ease-out;
          -webkit-appearance: none;
          padding: 10px 20px 0; }
          section.proposta_content .form_content form .item input:focus, section.proposta_content .form_content form .item select:focus {
            border-color: #1f404a; }
            section.proposta_content .form_content form .item input:focus + label, section.proposta_content .form_content form .item select:focus + label {
              color: #1f404a; }
          section.proposta_content .form_content form .item input::placeholder, section.proposta_content .form_content form .item select::placeholder {
            color: transparent; }
          section.proposta_content .form_content form .item input:required:invalid + label:after, section.proposta_content .form_content form .item select:required:invalid + label:after {
            content: '*';
            color: red; }
          section.proposta_content .form_content form .item input:focus + label, section.proposta_content .form_content form .item input:not(:placeholder-shown) + label, section.proposta_content .form_content form .item select:focus + label, section.proposta_content .form_content form .item select:not(:placeholder-shown) + label {
            font-weight: 600;
            font-size: 0.8em;
            top: 13px;
            padding: 0 0; }
        section.proposta_content .form_content form .item label {
          pointer-events: none;
          position: absolute;
          left: 20px;
          top: 50%;
          transform: translateY(-50%);
          transition: all .3s ease-out;
          -webkit-transition: all .3s ease-out;
          -moz-transition: all .3s ease-out;
          margin: 0; }
        section.proposta_content .form_content form .item.half {
          width: calc((100% - 20px) / 2); }
        section.proposta_content .form_content form .item input {
          border: 1px solid #C4C4C4;
          border-radius: 10px;
          background: transparent;
          width: 100%;
          color: #000000;
          font-weight: 300; }
          section.proposta_content .form_content form .item input::placeholder {
            color: #000000; }
        section.proposta_content .form_content form .item select {
          border: 1px solid #C4C4C4;
          border-radius: 10px;
          width: 100%;
          height: 60px;
          color: #000000;
          font-weight: 300;
          font-size: 14px;
          padding: 0 40px 0 20px;
          background-color: transparent;
          background-image: url(./../img/select_1.svg);
          background-position: calc(100% - 15px) center;
          background-repeat: no-repeat; }
      section.proposta_content .form_content form button {
        width: 100%;
        height: 60px;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        background: #C6984D;
        color: white;
        border-radius: 10px;
        border: none; }
    @media (max-width: 800px) {
      section.proposta_content .form_content form {
        padding: 50px 35px;
        width: 490px; }
        section.proposta_content .form_content form h2 {
          font-size: 26px; }
        section.proposta_content .form_content form .item.half {
          width: 100%; } }
    @media (max-width: 550px) {
      section.proposta_content .form_content {
        padding: 0 25px; }
        section.proposta_content .form_content form {
          width: 100%;
          padding: 30px 20px 50px; }
          section.proposta_content .form_content form h2 {
            font-size: 24px; } }
  @media (max-width: 1300px) {
    section.proposta_content {
      padding: 80px 0 100px; }
      section.proposta_content .banner {
        height: 380px; }
      section.proposta_content h1 {
        font-size: 40px;
        margin: 0 0 50px;
        padding: 0 0 15px; } }
  @media (max-width: 800px) {
    section.proposta_content .banner {
      height: 350px; }
    section.proposta_content h1 {
      font-size: 34px; } }
  @media (max-width: 550px) {
    section.proposta_content {
      padding: 115px 0 0; }
      section.proposta_content .banner {
        height: 485px; } }
section.credenciado_content {
  position: relative;
  padding: 90px 0 100px;
  background-color: rgba(239, 239, 239, 0.4); }
  section.credenciado_content .banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 435px;
    background-position: center;
    background-size: cover; }
    section.credenciado_content .banner:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #1F404A;
      opacity: .82; }
  section.credenciado_content h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    letter-spacing: .5px;
    text-align: center;
    color: white;
    margin: 0 0 20px; }
  section.credenciado_content p {
    position: relative;
    z-index: 1;
    font-size: 20px;
    line-height: 24px;
    color: white;
    text-align: center;
    max-width: 990px;
    padding: 0 20px;
    margin: 0 auto 70px; }
  section.credenciado_content .form_content {
    position: relative;
    z-index: 1; }
    section.credenciado_content .form_content form {
      margin: 0 auto;
      width: 740px;
      border-radius: 15px;
      box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
      background: white;
      padding: 65px 44px 53px;
      display: flex;
      display: -webkit-flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between; }
      section.credenciado_content .form_content form h2 {
        width: 100%;
        font-weight: 300;
        font-size: 28px;
        color: #000000;
        margin: 0 0 25px;
        text-align: center; }
      section.credenciado_content .form_content form .item {
        width: 100%;
        margin: 0 0 15px;
        position: relative;
        font-size: 14px; }
        section.credenciado_content .form_content form .item input, section.credenciado_content .form_content form .item select {
          outline: none;
          min-width: 100px;
          height: 60px;
          transition: all .3s ease-out;
          -webkit-transition: all .3s ease-out;
          -moz-transition: all .3s ease-out;
          -webkit-appearance: none;
          padding: 10px 20px 0; }
          section.credenciado_content .form_content form .item input:focus, section.credenciado_content .form_content form .item select:focus {
            border-color: #1f404a; }
            section.credenciado_content .form_content form .item input:focus + label, section.credenciado_content .form_content form .item select:focus + label {
              color: #1f404a; }
          section.credenciado_content .form_content form .item input::placeholder, section.credenciado_content .form_content form .item select::placeholder {
            color: transparent; }
          section.credenciado_content .form_content form .item input:required:invalid + label:after, section.credenciado_content .form_content form .item select:required:invalid + label:after {
            content: '*';
            color: red; }
          section.credenciado_content .form_content form .item input:focus + label, section.credenciado_content .form_content form .item input:not(:placeholder-shown) + label, section.credenciado_content .form_content form .item select:focus + label, section.credenciado_content .form_content form .item select:not(:placeholder-shown) + label {
            font-weight: 600;
            font-size: 0.8em;
            top: 13px;
            padding: 0 0; }
        section.credenciado_content .form_content form .item label {
          pointer-events: none;
          position: absolute;
          left: 20px;
          top: 50%;
          transform: translateY(-50%);
          transition: all .3s ease-out;
          -webkit-transition: all .3s ease-out;
          -moz-transition: all .3s ease-out;
          margin: 0; }
        section.credenciado_content .form_content form .item.half {
          width: calc((100% - 20px) / 2); }
        section.credenciado_content .form_content form .item input {
          border: 1px solid #C4C4C4;
          border-radius: 10px;
          background: transparent;
          width: 100%;
          color: #000000;
          font-weight: 300; }
          section.credenciado_content .form_content form .item input::placeholder {
            color: #000000; }
        section.credenciado_content .form_content form .item select {
          border: 1px solid #C4C4C4;
          border-radius: 10px;
          width: 100%;
          height: 60px;
          color: #000000;
          font-weight: 300;
          font-size: 14px;
          padding: 0 40px 0 20px;
          background-color: transparent;
          background-image: url(./../img/select_1.svg);
          background-position: calc(100% - 15px) center;
          background-repeat: no-repeat; }
      section.credenciado_content .form_content form button {
        width: 100%;
        height: 60px;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        background: #C6984D;
        color: white;
        border-radius: 10px;
        border: none; }
    @media (max-width: 800px) {
      section.credenciado_content .form_content form {
        padding: 50px 35px;
        width: 490px; }
        section.credenciado_content .form_content form h2 {
          font-size: 26px; }
        section.credenciado_content .form_content form .item.half {
          width: 100%; } }
    @media (max-width: 550px) {
      section.credenciado_content .form_content {
        padding: 0 25px; }
        section.credenciado_content .form_content form {
          width: 100%;
          padding: 30px 20px 50px; }
          section.credenciado_content .form_content form h2 {
            font-size: 24px; } }
  @media (max-width: 1300px) {
    section.credenciado_content {
      padding: 80px 0 100px; }
      section.credenciado_content .banner {
        height: 380px; }
      section.credenciado_content h1 {
        font-size: 40px;
        margin: 0 0 20px; }
      section.credenciado_content p {
        font-size: 18px;
        line-height: 22px; } }
  @media (max-width: 800px) {
    section.credenciado_content .banner {
      height: 350px; }
    section.credenciado_content h1 {
      font-size: 34px; } }
  @media (max-width: 550px) {
    section.credenciado_content {
      padding: 115px 0 0; }
      section.credenciado_content .banner {
        height: 485px; } }

section.politica_header {
  position: relative;
  width: 100%;
  height: 215px;
  background-position: center;
  background-size: cover;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center; }
  section.politica_header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1F404A;
    opacity: .82; }
  section.politica_header h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    color: white;
    letter-spacing: .5px;
    width: 100%;
    text-align: center;
    margin: 0; }
  @media (max-width: 1500px) {
    section.politica_header h1 {
      font-size: 40px; } }
  @media (max-width: 1300px) {
    section.politica_header {
      height: 200px; }
      section.politica_header h1 {
        font-size: 35px; } }
  @media (max-width: 550px) {
    section.politica_header {
      height: 170px; }
      section.politica_header h1 {
        font-size: 27px; } }
section.politica_content {
  background-color: rgba(239, 239, 239, 0.4); }
  section.politica_content .content {
    width: 845px;
    margin: 0 auto;
    padding: 60px 0 80px; }
    section.politica_content .content p {
      font-size: 16px;
      line-height: 28px;
      letter-spacing: .5px;
      color: #000000;
      margin: 0 0 30px; }
  @media (max-width: 900px) {
    section.politica_content .content {
      padding: 50px 25px 40px;
      width: 100%; }
      section.politica_content .content p {
        font-size: 15px;
        line-height: 25px; } }

section.rede_header {
  position: relative;
  width: 100%;
  height: 355px;
  background-position: center;
  background-size: cover;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center; }
  section.rede_header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1F404A;
    opacity: .82; }
  section.rede_header h1 {
    position: relative;
    z-index: 1;
    max-width: 995px;
    padding: 0 25px;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 50px;
    color: white;
    text-align: center; }
  section.rede_header p {
    position: relative;
    z-index: 1;
    max-width: 995px;
    padding: 0 25px;
    margin: 0 auto 30px;
    font-size: 20px;
    line-height: 24px;
    color: white;
    text-align: center; }
  section.rede_header a {
    position: relative;
    z-index: 1;
    display: block;
    border: 1px solid #E9B652;
    border-radius: 10px;
    width: 295px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    margin: 0 auto;
    padding: 18px 0;
    color: white;
    transition: all .2s; }
    section.rede_header a:hover {
      background: #ffffff;
      border-color: #ffffff;
      color: #E9B652;
      box-shadow: 0 3px 10px rgba(233, 182, 82, 0.4); }
  @media (max-width: 1300px) {
    section.rede_header h1 {
      font-size: 45px; }
    section.rede_header p {
      font-size: 18px; } }
  @media (max-width: 700px) {
    section.rede_header h1 {
      font-size: 34px; } }
  @media (max-width: 550px) {
    section.rede_header {
      height: 485px; }
      section.rede_header h1 {
        margin: 0 auto 30px; }
      section.rede_header a {
        width: 260px; } }
section.rede_content {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }
  section.rede_content .content {
    width: calc(100% - 805px); }
    section.rede_content .content .header_content {
      background: #F6F6F6; }
      section.rede_content .content .header_content .filtros {
        width: 775px;
        margin: 0 0 0 auto;
        padding: 70px 0 45px;
        display: flex;
        display: -webkit-flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap; }
        section.rede_content .content .header_content .filtros select {
          border: 1px solid #B7B7B7;
          border-radius: 5px;
          width: 210px;
          height: 50px;
          margin: 0 10px 0 0;
          font-size: 14px;
          color: #7B7B7B;
          padding: 0 30px 0 20px;
          background-color: white;
          background-image: url(./../img/select_2.svg);
          background-position: calc(100% - 10px) center;
          background-repeat: no-repeat; }
    section.rede_content .content .footer_content .lista {
      width: 775px;
      margin: 0 0 0 auto;
      padding: 65px 0 50px; }
      section.rede_content .content .footer_content .lista .item {
        position: relative;
        padding: 0 0 0 55px;
        margin: 0 0 60px;
        width: 590px; }
        section.rede_content .content .footer_content .lista .item svg {
          position: absolute;
          left: 0;
          top: 5px; }
        section.rede_content .content .footer_content .lista .item h2 {
          font-weight: bold;
          font-size: 20px;
          color: #000000;
          margin: 0 0 10px; }
        section.rede_content .content .footer_content .lista .item p.endereco {
          font-size: 14px;
          line-height: 21px;
          color: #707070;
          margin: 0; }
          section.rede_content .content .footer_content .lista .item p.endereco:before {
            content: 'Endereço: ';
            font-weight: bold;
            color: #000000; }
        section.rede_content .content .footer_content .lista .item p.telefone {
          font-weight: bold;
          font-size: 16px;
          color: #000000;
          margin: 0 0 15px; }
        section.rede_content .content .footer_content .lista .item a.ver_mapa, section.rede_content .content .footer_content .lista .item button.ver_mapa {
          display: block;
          background: transparent;
          border: 1px solid #C6984D;
          border-radius: 50px;
          width: 185px;
          text-transform: uppercase;
          text-align: center;
          font-weight: bold;
          font-size: 9px;
          letter-spacing: 1px;
          color: #C6984D;
          padding: 10px 0 9px;
          transition: all .2s; }
          section.rede_content .content .footer_content .lista .item a.ver_mapa:hover, section.rede_content .content .footer_content .lista .item button.ver_mapa:hover {
            background: #C6984D;
            color: white; }
        section.rede_content .content .footer_content .lista .item a.ver_mapa {
          display: none; }
  section.rede_content .mapa {
    width: 805px;
    min-height: 880px; }
  @media (max-width: 1700px) {
    section.rede_content .content {
      width: calc(100% - 650px); }
    section.rede_content .mapa {
      width: 650px; } }
  @media (max-width: 1500px) {
    section.rede_content .content {
      width: calc(100% - 550px); }
      section.rede_content .content .header_content .filtros {
        width: 700px; }
      section.rede_content .content .footer_content .lista {
        width: 700px; }
    section.rede_content .mapa {
      width: 550px; } }
  @media (max-width: 1300px) {
    section.rede_content .content {
      width: 620px; }
      section.rede_content .content .header_content {
        width: 100%; }
        section.rede_content .content .header_content .filtros {
          padding: 50px 0 40px 23px;
          width: 100%; }
          section.rede_content .content .header_content .filtros select {
            width: 185px; }
      section.rede_content .content .footer_content {
        width: 100%;
        padding: 0 40px; }
        section.rede_content .content .footer_content .lista {
          width: 100%; }
          section.rede_content .content .footer_content .lista .item {
            width: 100%; }
    section.rede_content .mapa {
      width: calc(100% - 620px); } }
  @media (max-width: 1200px) {
    section.rede_content .content {
      width: 100%; }
      section.rede_content .content .header_content .filtros {
        justify-content: center;
        padding: 50px 0 40px; }
        section.rede_content .content .header_content .filtros select {
          margin: 0 5px; }
      section.rede_content .content .footer_content {
        padding: 0; }
        section.rede_content .content .footer_content .lista {
          width: 500px;
          margin: 0 auto; }
          section.rede_content .content .footer_content .lista .item a.ver_mapa {
            display: block; }
          section.rede_content .content .footer_content .lista .item button.ver_mapa {
            display: none; }
    section.rede_content .mapa {
      display: none; } }
  @media (max-width: 600px) {
    section.rede_content .content .header_content .filtros {
      padding: 40px 0 20px; }
      section.rede_content .content .header_content .filtros select {
        width: 310px;
        margin: 0 0 10px; }
    section.rede_content .content .footer_content .lista {
      width: 310px;
      padding: 60px 0 0; }
      section.rede_content .content .footer_content .lista .item p.endereco {
        line-height: 16px;
        margin: 0 0 5px; } }

section.politica_modal {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #2a8d7c;
  z-index: 20;
  width: 100%;
  transition: all .3s; }
  section.politica_modal[active="false"] {
    transform: translateY(100%); }
  section.politica_modal .content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0; }
    section.politica_modal .content p {
      color: white;
      font-size: 12px;
      margin: 0;
      width: 800px; }
      section.politica_modal .content p a {
        color: white;
        text-decoration: revert; }
    section.politica_modal .content button {
      border: none;
      padding: 10px 30px;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: bold;
      border-radius: 5px;
      background: #c6984d;
      color: white; }
  @media (max-width: 1250px) {
    section.politica_modal .content {
      width: 950px; }
      section.politica_modal .content p {
        width: 700px; } }
  @media (max-width: 1000px) {
    section.politica_modal .content {
      width: 750px; }
      section.politica_modal .content p {
        width: 590px; } }
  @media (max-width: 800px) {
    section.politica_modal .content {
      width: 600px;
      justify-content: center; }
      section.politica_modal .content p {
        width: 100%;
        text-align: center;
        margin: 0 0 20px; } }
  @media (max-width: 650px) {
    section.politica_modal .content {
      width: 100%;
      padding: 20px; }
      section.politica_modal .content p {
        font-size: 11px;
        margin: 0 0 15px; }
      section.politica_modal .content button {
        padding: 10px 25px;
        font-size: 12px; } }

@keyframes horizontal_animate {
  0% {
    transform: translateX(-20px); }
  50% {
    transform: translateX(20px); }
  100% {
    transform: translateX(-20px); } }
@keyframes vertical_animate {
  0% {
    transform: translateY(-20px); }
  50% {
    transform: translateY(20px); }
  100% {
    transform: translateY(-20px); } }
section.content_404 {
  padding: 100px 0 70px; }
  section.content_404 svg {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 5px; }
    section.content_404 svg * {
      fill: #1f404a; }
  section.content_404 p {
    font-size: 25px;
    font-weight: 300;
    color: #1f404a;
    text-align: center;
    margin: 0; }
  @media (max-width: 600px) {
    section.content_404 {
      padding: 50px 0; }
      section.content_404 svg {
        width: 120px; }
      section.content_404 p {
        font-size: 20px; } }

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