/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

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

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

body {
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

section {
  clear: both;
  position: relative;
}

body {
  font-family: "Fira Sans", sans-serif;
  line-height: 1.2;
  margin: 0 auto;
  overflow-x: hidden;
  padding-top: 0.1px;
  font-size: 18px;
  font-size: 1.125rem;
  scroll-behavior: smooth;
  position: relative;
}

@media (max-width: 1439px) {
  body {
    font-size: 14.94px;
    font-size: 0.93375rem;
  }
}

@media (max-width: 1365px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Fira Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

.input-file {
  display: none;
}

.link-seo {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

strong,
.bold-text {
  font-weight: bold;
}

.full-width {
  width: auto;
  max-width: 100%;
  height: auto;
}

.full-height {
  width: auto;
  max-width: unset;
  height: 100%;
}

.no-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.bg-full {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.text-center {
  text-align: center;
}

.margin-center {
  margin-left: auto;
  margin-right: auto;
}

.text-box {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  text-align: center;
  width: 95%;
}

.block {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

@media (max-width: 1780px) {
  .premio-comunica {
    max-width: 150px;
  }
}

@media (max-width: 1280px) {
  .premio-comunica {
    max-width: 90px;
  }
}

@media (max-width: 1780px) {
  .idea-brasil {
    max-width: 100px;
  }
}

@media (max-width: 1280px) {
  .idea-brasil {
    max-width: 60px;
  }
}

.text {
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6rem;
}

@media (max-width: 780px) {
  .text {
    font-size: 0.875rem;
  }
}

.title {
  font-size: 4.2rem;
  font-weight: 100;
}

@media (max-width: 1280px) {
  .title {
    font-size: 3.5rem;
  }
}

@media (max-width: 820px) {
  .title {
    font-size: 2rem;
  }
}

.subtitle {
  font-size: 2.7rem;
  font-weight: 300;
  text-align: center;
}

.subtitle strong {
  font-weight: 600;
}

@media (max-width: 1280px) {
  .subtitle {
    font-size: 2rem;
  }
}

@media (max-width: 820px) {
  .subtitle {
    font-size: 1.5rem;
  }
}

.button {
  align-items: center;
  background-color: #ff5a28;
  color: #fff;
  font-size: 1rem;
  font-weight: 200;
  padding: 12px 30px;
  border-radius: 7px;
  transition: all 0.2s ease-in-out;
}

.button:hover {
  background-color: #e64616;
}

.btn-second {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 355px;
  width: 100%;
  height: 55px;
  background-color: #e42a15;
}

.btn-second:hover {
  background-color: #d1220e;
}

header {
  width: 100%;
  color: #fff;
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 100;
}

header nav {
  max-width: 1920px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}

@media (max-width: 1040px) {
  header nav {
    padding: 15px 40px;
  }
}

@media (max-width: 1040px) {
  header nav #logo {
    max-width: 120px;
  }
}

header nav .nav-links {
  font-size: 1rem;
  font-weight: 200;
  display: flex;
  gap: 100px;
}

header nav .nav-links .nav-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1040px) {
  header nav .nav-links .nav-item {
    display: none;
  }
}

header nav .nav-links .nav-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1040px) {
  header nav .nav-links .nav-social {
    display: none;
  }
}

header nav .mobile-menu-icon {
  display: none;
}

@media (max-width: 1040px) {
  header nav .mobile-menu-icon {
    display: block;
  }
}

header .mobile-menu {
  position: fixed;
  top: 70px;
  z-index: 1000;
  width: 100%;
}

header .mobile-menu li {
  display: none;
  color: #fff;
}

@media (max-width: 1040px) {
  header .mobile-menu li {
    display: block;
  }
}

@media (max-width: 1040px) {
  header .mobile-menu {
    display: none;
    padding: 20px;
    background-color: #373f4d;
  }

  header .mobile-menu li {
    margin-bottom: 40px;
  }

  header .mobile-menu li a {
    padding: 12px;
  }
}

.open {
  display: block !important;
}

.ativo {
  background-color: rgba(55, 63, 77, 0.7);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  color: #fff;
}

.nav-ativo {
  padding: 15px 40px;
}

.fale-conosco {
  background: rgb(243, 87, 49);
  background: radial-gradient(circle, rgb(243, 87, 49) 24%, rgb(230, 42, 21) 75%);
}

.fale-conosco .container {
  height: auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px 40px 75px 40px;
  text-align: center;
  gap: 20px;
  position: relative;
}

@media (max-width: 780px) {
  .fale-conosco .container {
    padding: 40px 15px;
  }
}

.fale-conosco .container h2 {
  margin-top: 15px;
  font-size: 2rem;
  font-weight: 300;
}

@media (max-width: 820px) {
  .fale-conosco .container h2 {
    font-size: 1.5rem;
  }
}

.fale-conosco .container p {
  font-weight: 200;
}

.fale-conosco img {
  position: absolute;
  top: -90px;
  z-index: -1;
}

@media (max-width: 600px) {
  .fale-conosco img {
    top: -75px;
  }
}

@media (max-width: 520px) {
  .fale-conosco img {
    top: -65px;
  }
}

@media (max-width: 450px) {
  .fale-conosco img {
    top: -55px;
  }
}

@media (max-width: 380px) {
  .fale-conosco img {
    top: -45px;
  }
}

.fale-conosco .btn-second {
  position: absolute;
  bottom: -35px;
  z-index: 10;
}

.footer {
  background-color: #373f4d;
  color: #fff;
  font-weight: 300;
}

.footer .container {
  padding: 40px 60px 80px 105px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

@media (max-width: 820px) {
  .footer .container {
    padding: 60px 15px;
  }
}

.footer ul {
  display: flex;
  gap: 15px;
}

@media (max-width: 820px) {
  .footer ul {
    gap: 10px;
  }
}

.footer .footer-address {
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
  color: #8b8b92;
}

.footer h3 {
  text-transform: uppercase;
}

.footer .footer-content-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 820px) {
  .footer .footer-content-icons {
    gap: 60px;
    flex-wrap: wrap;
  }
}

.footer .footer-content-icons #footer-icons {
  margin-top: -10px;
  margin-left: -10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1280px) {
  .footer .footer-content-icons #footer-icons {
    gap: 5px;
  }

  .footer .footer-content-icons #footer-icons li {
    width: 85px;
  }
}

@media (max-width: 840px) {
  .footer .footer-content-icons #footer-icons {
    flex-wrap: nowrap;
  }

  .footer .footer-content-icons #footer-icons .icon-invisible {
    display: none;
  }
}

.footer .footer-content-icons .footer-content-premios {
  margin-top: -40px;
  display: flex;
  align-items: center;
  gap: 25px;
}


.banner .banner-first .banner-content-premios {
  display: flex;
  align-items: center;
  gap: 45px;
  justify-content: end;
}

.banner .banner-first {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 220px;
  display: flex;
  align-items: flex-end;
  background: #313744;
}

.banner .banner-first .banner-content-premios img {
  width: 30%;
}

.banner .banner-first .banner-content-premios img.idea-brasil {
  width: 20%;
}

.banner .banner-first .wrapper-icons {
  padding: 15px 40px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.banner .banner-first .wrapper-icons .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 840px) {
  .banner .banner-first .wrapper-icons .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.banner .banner-first #banner-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1280px) {
  .banner .banner-first #banner-icons {
    gap: 5px;
  }

  .banner .banner-first #banner-icons li {
    width: 85px;
  }
}

@media (max-width: 840px) {
  .banner .banner-first #banner-icons {
    flex-wrap: nowrap;
  }

  .banner .banner-first #banner-icons .icon-invisible {
    display: none;
  }
}

.banner .banner-first .banner-content-premios {
  display: flex;
  align-items: center;
  gap: 45px;
}

.formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
}

.formulario .formulario-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 95px;
  padding-bottom: 110px;
}

@media (max-width: 840px) {
  .formulario .formulario-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 60px;
  }
}

.formulario .formulario-wrapper .formulario-conteudo h1 {
  max-width: 490px;
  text-align: left;
  margin-bottom: 40px;
}

.formulario .formulario-wrapper .formulario-conteudo p {
  max-width: 490px;
  line-height: 1.5rem;
}

.formulario .formulario-wrapper form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

@media (max-width: 840px) {
  .formulario .formulario-wrapper form {
    justify-items: center;
    grid-template-columns: 1fr;
  }
}

.formulario .formulario-wrapper form .wrapper-input {
  width: 285px;
  display: flex;
  flex-direction: column;
}

.formulario .formulario-wrapper form select {
  width: 285px;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 1rem;
  padding: 18px 10px 10px 10px;
  border: 1px solid #8b8b92;
  margin-bottom: 5px;
  border-radius: 5px;
}

@media (max-width: 840px) {
  .formulario .formulario-wrapper form .wrapper-input {
    align-items: center;
  }
}

.formulario .formulario-wrapper form .wrapper-input input {
  width: 100%;
  font-size: 1rem;
  padding: 20px 10px 10px 10px;
  border: 1px solid #8b8b92;
  margin-bottom: 5px;
  border-radius: 5px;
}

.formulario .formulario-wrapper form .wrapper-input input::-moz-placeholder {
  font-family: "Fira Sans", sans-serif;
  color: #373f4d;
}

.formulario .formulario-wrapper form .wrapper-input input:-ms-input-placeholder {
  font-family: "Fira Sans", sans-serif;
  color: #373f4d;
}

.formulario .formulario-wrapper form .wrapper-input input::placeholder {
  font-family: "Fira Sans", sans-serif;
  color: #373f4d;
}

.formulario .formulario-wrapper form .wrapper-input textarea {
  width: 100%;
  font-size: 1rem;
  font-family: "Fira Sans", sans-serif;
  color: #373f4d;
  padding: 15px 10px 10px 10px;
  border: 1px solid #8b8b92;
  margin-bottom: 5px;
  border-radius: 5px;
}

.formulario .formulario-wrapper form .wrapper-input textarea::-moz-placeholder {
  font-family: "Fira Sans", sans-serif;
  color: #373f4d;
}

.formulario .formulario-wrapper form .wrapper-input textarea:-ms-input-placeholder {
  font-family: "Fira Sans", sans-serif;
  color: #373f4d;
}

.formulario .formulario-wrapper form .wrapper-input textarea::placeholder {
  font-family: "Fira Sans", sans-serif;
  color: #373f4d;
}

.formulario .formulario-wrapper form button {
  grid-column: 1/-1;
  background-color: #e42a15;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 18px 12px;
}

.faq {
  padding: 65px 0 40px 0;
  background: rgb(230, 85, 21);
  background: linear-gradient(180deg, rgb(230, 85, 21) 0%, rgb(230, 85, 21) 65%, rgb(255, 255, 255) 65%);
}

.faq h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.faq .faq-lista {
  background-color: #373f4d;
  color: #fff;
  padding: 40px;
  margin: 0 170px;
}

@media (max-width: 840px) {
  .faq .faq-lista {
    padding: 20px 15px;
    margin: 0 20px;
  }
}

.faq .faq-lista dt {
  font-size: 1rem;
  font-weight: 500;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

@media (max-width: 840px) {
  .faq .faq-lista dt {
    padding: 10px 0;
  }
}

.faq .faq-lista dd {
  width: 70%;
  font-size: 1.125rem;
  font-weight: 200;
  padding: 20px;
  display: flex;
  align-items: center;
}

@media (max-width: 840px) {
  .faq .faq-lista dd {
    font-size: 1rem;
    width: 100%;
    padding: 10px 0;
  }
}

.faq .faq-lista dt::after {
  content: url(../../../../images/contato/arrow-up.svg);
  margin-left: 10px;
}

.faq .faq-lista dt.ativo {
  font-size: 2.2rem;
}

@media (max-width: 840px) {
  .faq .faq-lista dt.ativo {
    font-size: 1.5rem;
  }
}

.faq .faq-lista dt.ativo::after {
  content: url(../../../../images/contato/arrow-down.svg);
}

.faq .faq-lista dd {
  display: none;
}

.faq .faq-lista dd.ativo {
  display: block;
  -webkit-animation: slideDown 0.5s forwards;
  animation: slideDown 0.5s forwards;
}

@-webkit-keyframes slideDown {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    max-height: 200px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    max-height: 200px;
  }
}

.msg-clientes {
  padding: 0 15px 130px 15px;
}

@media (max-width: 840px) {
  .msg-clientes {
    padding: 0 20px 130px 20px;
  }
}

.msg-clientes .subtitle {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 40px;
}

.msg-clientes .owl-carousel {
  max-width: 1200px;
  margin: 0 auto;
}

.msg-clientes .owl-carousel .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.msg-clientes .owl-carousel .item img {
  max-width: 110px;
  margin-bottom: 10px;
}

.msg-clientes .owl-carousel .item p {
  font-size: 1rem;
}

.msg-clientes .owl-dots {
  text-align: left;
}

.msg-clientes .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: black;
  margin: 0 3px;
}

.msg-clientes .owl-dots button.owl-dot.active {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 3px solid black;
}

.msg-clientes .owl-dots button.owl-dot:focus {
  outline: none;
}

.msg-clientes .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.38) !important;
}

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