﻿/* FONTES */
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-light-webfont.eot");
  src: url("../fonts/raleway-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway-light-webfont.woff2") format("woff2"), url("../fonts/raleway-light-webfont.woff") format("woff"), url("../fonts/raleway-light-webfont.ttf") format("truetype"), url("../fonts/raleway-light-webfont.svg#ralewaylight") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-regular-webfont.eot");
  src: url("../fonts/raleway-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway-regular-webfont.woff2") format("woff2"), url("../fonts/raleway-regular-webfont.woff") format("woff"), url("../fonts/raleway-regular-webfont.ttf") format("truetype"), url("../fonts/raleway-regular-webfont.svg#ralewayregular") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-medium-webfont.eot");
  src: url("../fonts/raleway-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway-medium-webfont.woff2") format("woff2"), url("../fonts/raleway-medium-webfont.woff") format("woff"), url("../fonts/raleway-medium-webfont.ttf") format("truetype"), url("../fonts/raleway-medium-webfont.svg#ralewaymedium") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-bold-webfont.eot");
  src: url("../fonts/raleway-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway-bold-webfont.woff2") format("woff2"), url("../fonts/raleway-bold-webfont.woff") format("woff"), url("../fonts/raleway-bold-webfont.ttf") format("truetype"), url("../fonts/raleway-bold-webfont.svg#ralewaybold") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-extrabold-webfont.eot");
  src: url("../fonts/raleway-extrabold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway-extrabold-webfont.woff2") format("woff2"), url("../fonts/raleway-extrabold-webfont.woff") format("woff"), url("../fonts/raleway-extrabold-webfont.ttf") format("truetype"), url("../fonts/raleway-extrabold-webfont.svg#ralewayextrabold") format("svg");
  font-weight: 900;
  font-style: normal;
}

/*
light 		->	 300
regular 	->	 500
medium 		->	 600
bold 		->	 700
extrabold 	->	 900
*/

/* VARIÁVEIS */
:root {
  --orange: #f27021;
  --orange-light: #f69b63;
  --purple: #6a3c98;
  --purple-dark: #3f2661;
  --purple-light: #cdc5d7;
  --wine: #34175a;
  --gray: #b6b7b9;
  --gray-dark: #57585b;
  --gray-light: #f5f6f7;
  --white: #ffffff;
  --black: #000000;
  --dummy: #ffcc00;
}

/* GERAL */
html,
body {
  height: auto;
  width: 100%;
  overflow-x: hidden;
  border: none;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  color: var(--wine);
}
a:hover,
a:active,
a:focus,
button:hover,
button:active,
button:focus {
  outline: 0;
  border: none;
  text-decoration: none;
}
a {
  text-decoration: none;
}
.flex-center {
  display: flex;
  justify-content: center;
}

.bt a {
  font-size: 1.6em;
  font-weight: 900;
  display: inline-block;
  border-radius: 60px;
  padding: 15px 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.bt.roxo a {
  color: var(--white);
  background: var(--purple-dark);
}
.bt.roxo a:hover {
  background: var(--orange);
}
.bt.laranja a {
  color: var(--white);
  background: var(--orange);
}
.bt.laranja a:hover {
  background: var(--purple-dark);
}
.bt.branco a {
  color: var(--orange);
  background: var(--white);
}
.bt.branco a:hover {
  color: var(--white);
  background: var(--purple-dark);
}
.bt.center {
  text-align: center;
}

/* MENU */
nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s ease;
}
nav.stick {
  background: var(--wine);
}
nav .container {
  position: relative;
  z-index: 2;
}
nav .linguas {
  position: absolute;
  right: 10px;
  top: 8px;
}
nav .linguas li {
  list-style: none;
  display: inline;
}
nav .linguas li a {
  font-size: 1.1em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}
nav .linguas li a:hover {
  color: var(--orange);
}
nav .linguas li.current-lang a {
  background: var(--orange);
  border-radius: 50%;
}
nav .linguas li.current-lang a:hover {
  color: var(--white);
}
nav .holder {
  border-bottom: solid 1px var(--orange);
  padding: 33px 0 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
nav .logo {
  width: 192px;
}
nav .logo img {
  width: 100%;
}
nav .menu ul {
  margin: 0;
  padding: 0;
}
nav .menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  position: relative;
}
nav .menu a {
  font-size: 1.2em;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 10px 20px 10px;
  margin: 0 5px;
  position: relative;
  transition: all 0.3s ease;
}
nav .menu a:hover {
  color: var(--orange);
}
nav .menu a.last {
  padding-right: 0px;
  margin-right: 0px;
}
nav .menu a.selected {
  color: var(--orange);
}
nav .menu a.selected:before {
  content: "";
  width: 11px;
  height: 11px;
  background: url("../images/ico_circle.png") no-repeat center;
  position: absolute;
  left: -11px;
  top: 11px;
}

nav .drop-menu {
  position: absolute;
  left: 0;
  top: 37px;
  width: 50vw;
  height: 50vh;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  overflow: hidden;
}
nav .drop-menu .hld {
  position: absolute;
  left: 0;
  top: -500px;
  background: var(--wine);
  padding: 15px;
  pointer-events: all;
  transition: all 0.5s ease;
}
nav .drop-menu .hld a {
  display: block;
  white-space: nowrap;
  min-width: 100%;
  padding: 10px 0 10px 0;
}

nav .drop-down:hover .drop-menu .hld {
  top: 0px;
}

nav .area {
  position: fixed;
  left: 0;
  top: 77px;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(255, 255, 255, 0);
}

nav .bt-menu {
  position: absolute;
  right: 0;
  top: 25px;
  z-index: 3;
  display: none;
}
nav .bt-menu a {
  text-decoration: none;
  display: block;
  padding: 20px;
  transition: all 0.2s ease;
}
nav .bt-menu .bar {
  width: 19px;
  height: 2px;
  background: var(--white);
  margin-bottom: 5px;
}
nav .bt-menu .bar-1 {
  transform: rotate(0);
  transition: all 0.2s ease;
}
nav .bt-menu .bar-2 {
  opacity: 1;
  transition: all 0.2s ease;
}
nav .bt-menu .bar-3 {
  transform: rotate(0);
  transition: all 0.2s ease;
}

nav.open .bt-menu a {
  padding: 20px 15px 20px 20px;
}
nav.open .bt-menu .bar-1 {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
  transition: all 0.2s ease;
  margin-right: 0;
  margin-top: 0px;
  width: 24px;
}
nav.open .bt-menu .bar-2 {
  opacity: 0;
  transition: all 0.2s ease;
}
nav.open .bt-menu .bar-3 {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
  transition: all 0.2s ease;
  margin-left: 0;
  margin-top: 0px;
  width: 24px;
}
nav.open .area {
  display: block;
}

/* CORPO */
main .banner {
  position: relative;
}
main .banner video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
main .banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(63, 38, 97, 0.8);
  z-index: 2;
}
main .banner .container {
  height: calc(100vh - 192px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}
main .banner .container .hld-txt {
  font-weight: 900;
  margin: 0;
  color: var(--white);
}
main .banner .container .hld-txt * {
  margin: 0;
  line-height: 1.4;
}
main .banner .container .hld-txt h1 {
  font-size: 7.25vh;
}
main .banner .container .hld-txt h2 {
  font-size: 6.25vh;
}
main .banner .container .hld-txt h3 {
  font-size: 5.25vh;
}
main .banner .container .hld-txt h4 {
  font-size: 4.25vh;
}
main .banner .container .hld-txt h5 {
  font-size: 3.25vh;
}
main .banner .container .hld-txt h6 {
  font-size: 2.25vh;
}
main .banner .container .hld-txt p {
  font-size: 1.75vh;
  font-weight: 400;
}
main .banner .container .hld-txt strong {
  color: var(--orange);
  font-weight: 900;
}
main .banner .container .bt a {
  text-transform: uppercase;
  white-space: nowrap;
}

main .increva-se {
  background: var(--white);
  position: relative;
}
main .increva-se .container {
  min-height: 192px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}
main .increva-se .container .live {
  position: relative;
  padding-left: 43px;
}
main .increva-se .container .live img {
  max-width: 225px;
}
main .increva-se .container .live:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 190px;
  left: 0;
  bottom: 1px;
  background: var(--orange);
}
main .increva-se .container .txt {
  font-size: 2.4em;
  font-weight: 300;
  color: var(--purple);
}
main .increva-se .container .bt a {
  text-transform: uppercase;
  white-space: nowrap;
}

main .somos {
  background: var(--orange);
  color: var(--white);
  padding: 75px 0 100px 0;
  position: relative;
}
main .somos:after {
  content: "";
  width: 135px;
  height: 293px;
  background: url("../images/bg_circle_right.png") no-repeat center;
  position: absolute;
  right: 0;
  bottom: -146px;
  z-index: 2;
}
main .somos h2 {
  font-size: 6em;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}
main .somos h3 {
  font-size: 3em;
  font-weight: 600;
  line-height: 1.2;
}
main .somos p {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}
main .somos .ico {
  margin: 40px 0;
}

main .socios {
  background: var(--purple-dark);
  position: relative;
}
main .socios .container {
  position: relative;
}
main .socios .slide {
  height: 360px;
  overflow: hidden;
  position: relative;
  background: var(--purple-dark);
}
main .socios .slide:before {
  content: "";
  width: 2px;
  height: 360px;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--purple-light);
  z-index: 3;
}
main .socios .slide:last-child:after {
  content: "";
  width: 2px;
  height: 360px;
  position: absolute;
  right: 2px;
  top: 0;
  background: var(--purple-light);
  z-index: 3;
}
main .socios .slick-list:after {
  content: "";
  width: 2px;
  height: 360px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--purple-light);
  z-index: 3;
}
main .socios .slide .infos {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(63, 38, 97, 0.8);
  z-index: 2;
}
main .socios .slide .infos .nome {
  font-size: 2.5em;
  font-weight: 900;
  color: var(--white);
  margin: 30px 0 0 30px;
  line-height: 1;
}
main .socios .slide .infos .nome span {
  color: var(--orange);
}
main .socios .slide .infos .seta {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  line-height: 44px;
  border-radius: 50%;
  border: solid 2px var(--white);
  font-size: 2em;
  color: var(--white);
  text-align: center;
  transition: all 0.5s ease;
}
main .socios .slide .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform-origin: 50% 50%;
  transition: all 1s ease;
}
main .socios .slide a:hover .bg {
  transform: scale(1.5);
}
main .socios .slide a:hover .infos .seta {
  background: var(--orange);
  border-color: var(--orange);
}
main .socios .nav-slider {
  position: absolute;
  width: calc(100% + 30px);
  left: -15px;
  top: 50%;
  display: flex;
  justify-content: space-between;
}
main .socios .nav-slider .arrow {
  color: var(--orange);
  font-size: 2em;
  cursor: pointer;
}

main .conheca {
  background: var(--gray-light);
  position: relative;
  padding-bottom: 100px;
}
main .conheca:after {
  content: "";
  width: 138px;
  height: 293px;
  background: url("../images/bg_circle_left.png") no-repeat center;
  position: absolute;
  left: 0;
  bottom: -146px;
  z-index: 2;
}
main .conheca h2 {
  font-size: 6em;
  font-weight: 900;
  line-height: 1;
  margin-top: 130px;
  margin-bottom: 50px;
  color: var(--purple-dark);
}
main .conheca h2 span {
  color: var(--orange);
  font-weight: 900;
}
main .conheca p {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 50px;
}
main .conheca .titulo {
  padding: 0;
  background: none;
}
main .conheca .img {
  margin-top: 40px;
}
main .conheca .img img {
  width: 100%;
  max-width: 354px;
}
main .conheca .bt {
  position: relative;
  z-index: 3;
}

main .thinkers {
  background: var(--purple-dark);
  position: relative;
}
main .thinkers .container {
  position: relative;
}
main .thinkers .slide {
  height: 360px;
  overflow: hidden;
  position: relative;
  background: var(--purple-dark);
}
main .thinkers .slide:before {
  content: "";
  width: 2px;
  height: 360px;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--purple-light);
  z-index: 3;
}
main .thinkers .slide:last-child:after {
  content: "";
  width: 2px;
  height: 360px;
  position: absolute;
  right: 2px;
  top: 0;
  background: var(--purple-light);
  z-index: 3;
}
main .thinkers .slick-list:after {
  content: "";
  width: 2px;
  height: 360px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--purple-light);
  z-index: 3;
}
main .thinkers .slide .infos {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(63, 38, 97, 0.8);
  z-index: 2;
}
main .thinkers .slide .infos .nome {
  font-size: 2.5em;
  font-weight: 900;
  color: var(--white);
  margin: 30px 0 0 30px;
  line-height: 1;
}
main .thinkers .slide .infos .nome span {
  color: var(--orange);
}
main .thinkers .slide .infos .seta {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  line-height: 44px;
  border-radius: 50%;
  border: solid 2px var(--white);
  font-size: 2em;
  color: var(--white);
  text-align: center;
  transition: all 0.5s ease;
}
main .thinkers .slide .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform-origin: 50% 50%;
  transition: all 1s ease;
}
main .thinkers .slide a:hover .bg {
  transform: scale(1.5);
}
main .thinkers .slide a:hover .infos .seta {
  background: var(--orange);
  border-color: var(--orange);
}
main .thinkers .nav-slider {
  position: absolute;
  width: calc(100% + 30px);
  left: -15px;
  top: 50%;
  display: flex;
  justify-content: space-between;
}
main .thinkers .nav-slider .seta {
  color: var(--orange);
  font-size: 2em;
  cursor: pointer;
}

main .action {
  position: relative;
  background: var(--white);
  padding: 100px 0;
}
main .action h2 {
  font-size: 4em;
  font-weight: 900;
  color: var(--purple-dark);
  line-height: 1;
}
main .action h2 span {
  color: var(--orange);
  font-weight: 900;
}
main .action p {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.5;
  padding: 40px 0 0 37.5%;
}
main .action .titulo {
  padding: 0;
  background: none;
}

main .giro180 {
  position: relative;
  background: url("../images/bg_180_cinza.jpg") no-repeat center;
  background-size: cover;
  padding: 115px 0 150px 0;
}
main .giro180 .container {
  position: relative;
}
main .giro180 .container:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 190px;
  background: var(--orange);
  right: 0;
  top: -165px;
}
main .giro180 h2 {
  font-size: 4em;
  font-weight: 900;
  color: var(--purple-dark);
}
main .giro180 h2 span {
  color: var(--orange);
}
main .giro180 .posts {
  margin: 50px 0 75px 0;
}
main .giro180 .posts .post .img {
  border-radius: 30px;
  width: 100%;
  height: 0;
  padding-top: 62%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main .giro180 .posts .post h3 {
  font-size: 2.6em;
  font-weight: 900;
  color: var(--purple-dark);
  margin: 0;
}
main .giro180 .posts .post p {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--gray-dark);
  padding-bottom: 10px;
  margin: 0;
}
main .giro180 .posts .post .hld-titulo {
  height: 120px;
  display: flex;
  align-items: center;
}
main .giro180 .posts .post .mais {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
main .giro180 .posts .post .mais .linha {
  width: 100%;
  height: 1px;
  background: var(--gray);
  flex: 1;
}
main .giro180 .posts .post .mais .linha .bar {
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: all 0.5s ease;
}
main .giro180 .posts .post .mais .circle {
  width: 48px;
  height: 48px;
  line-height: 46px;
  border-radius: 50%;
  margin-left: 15px;
  border: solid 1px var(--gray);
  text-align: center;
  color: var(--gray);
  font-size: 2em;
  transition: all 0.3s ease;
}
main .giro180 .posts .post a .mais .circle i {
  transition: all 0.3s ease;
}
main .giro180 .posts .post a:hover .mais .circle {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transition-delay: 0.5s;
}
main .giro180 .posts .post a:hover .mais .circle i {
  transform: rotate(90deg);
  transition-delay: 0.5s;
}
main .giro180 .posts .post a:hover .mais .linha .bar {
  width: 100%;
}

main .giro180.interna:after {
  content: "";
  width: 135px;
  height: 293px;
  background: url("../images/bg_circle_right.png") no-repeat center;
  position: absolute;
  right: 0;
  top: -146px;
  z-index: 2;
}
main .giro180.interna .container:after {
  display: none;
}

main .faq {
  background: url("../images/pattern_roxo.jpg") repeat top left;
  position: relative;
  padding-bottom: 125px;
}
main .faq:before {
  content: "";
  width: 348px;
  height: 377px;
  background: url("../images/marca_dagua_180.png") no-repeat center;
  position: absolute;
  left: 0;
  top: -185px;
}
main .faq .box {
  background: var(--wine);
  padding: 70px;
  border-radius: 50px;
  margin-top: -100px;
}
main .faq .box:before {
  content: "";
  width: 179px;
  height: 128px;
  background: url("../images/ico_aspas.png") no-repeat center;
  position: absolute;
  right: 70px;
  top: -135px;
}
main .faq h2 {
  font-size: 4em;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 30px;
}
main .faq .spacer-top {
  margin-top: 80px;
}
main .faq h2 span {
  color: var(--orange);
}
main .faq h3 {
  font-size: 2.8em;
  color: var(--orange);
  margin-top: 20px;
}
main .faq p {
  font-size: 1.7em;
  color: var(--white);
  margin-bottom: 30px;
}

main .faq.interna .box:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 190px;
  background: var(--orange);
  right: -8.333%;
  top: -50px;
}

main .patrocinio {
  background: url("../images/pattern_roxo.jpg") repeat top left;
  position: relative;
  padding-bottom: 70px;
  padding-top: 30px;
}
main .patrocinio .box {
  background: var(--white);
  padding: 40px 40px 0 40px;
  border-radius: 50px;
  margin-top: -100px;
}
main .patrocinio h2 {
  font-size: 1.3em;
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
}
main .patrocinio .hld-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 690px;
  margin: 0 auto;
  margin-bottom: 50px;
}
main .patrocinio .hld-logos.center {
  justify-content: center;
}
main .patrocinio .hld-logos img {
  margin: 20px;
  display: block;
}
main .patrocinio .hld-logos.sp img {
  margin: 20px;
}
main .patrocinio .hld-logos.np img {
  margin: 20px;
}

main .posnrf {
  background: var(--white);
  position: relative;
  padding: 100px 0;
}
main .posnrf h1 {
  font-size: 6em;
  font-weight: 900;
  line-height: 1;
  margin-top: 100px;
  margin-bottom: 50px;
  color: var(--wine);
}
main .posnrf h1 span {
  color: var(--orange);
  font-weight: 900;
}
main .posnrf h2 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}
main .posnrf h3 {
  font-size: 2em;
  font-weight: 300;
  line-height: 1;
  color: var(--wine);
  margin-bottom: 50px;
}
main .posnrf h5 {
  font-size: 1.4em;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}
main .posnrf h5 b {
  font-size: 1.14em;
}
main .posnrf p {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
main .posnrf .form {
  margin-top: 20px;
  position: relative;
  z-index: 3;
}
main .posnrf .form .inputs {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .posnrf .form .inputs span {
  width: 46%;
  margin: 15px 2% 0 2%;
}
main .posnrf .form .inputs input[type="text"] {
  width: 100%;
  line-height: 30px;
  border-radius: 30px;
  border: solid 1px var(--white);
  background: none;
  color: var(--white);
  font-size: 1.2em;
  font-weight: 600;
  padding: 0 20px;
  outline-width: 0;
  outline: none;
}
main .posnrf .form .inputs input[type="email"] {
  width: 100%;
  line-height: 30px;
  border-radius: 30px;
  border: solid 1px var(--white);
  background: none;
  color: var(--white);
  font-size: 1.2em;
  font-weight: 600;
  padding: 0 20px;
  outline-width: 0;
  outline: none;
}
main .posnrf .form .inputs input[type="tel"] {
  width: 100%;
  line-height: 30px;
  border-radius: 30px;
  border: solid 1px var(--white);
  background: none;
  color: var(--white);
  font-size: 1.2em;
  font-weight: 600;
  padding: 0 20px;
  outline-width: 0;
  outline: none;
}
main .posnrf .form .inputs input[type="text"]:focus {
  border-width: 2px;
  line-height: 28px;
  outline-width: 0;
  outline: none;
  padding: 0 19px;
}
main .posnrf .form .inputs input[type="email"]:focus {
  border-width: 2px;
  line-height: 28px;
  outline-width: 0;
  outline: none;
  padding: 0 19px;
}
main .posnrf .form .inputs input[type="tel"]:focus {
  border-width: 2px;
  line-height: 28px;
  outline-width: 0;
  outline: none;
  padding: 0 19px;
}
main .posnrf .form .hld-bt {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -25px;
}
main .posnrf .form .hld-bt input[type="submit"] {
  font-size: 1.6em;
  font-weight: 900;
  display: inline-block;
  border-radius: 60px;
  border: solid 2px var(--purple-dark);
  text-transform: uppercase;
  padding: 13px 30px;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--white);
  background: var(--purple-dark);
}
main .posnrf .form .hld-bt input[type="submit"]:hover {
  background: var(--orange);
  border-color: var(--white);
}
main .posnrf .form .hld-bt .ajax-loader {
  position: absolute;
  left: 50%;
  top: -25px;
  margin: 0 0 0 -15px;
}
main .posnrf .form ::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}
main .posnrf .form ::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
main .posnrf .form :-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}
main .posnrf .form :-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
main .posnrf .form .wpcf7-not-valid-tip {
  position: absolute;
  left: 13px;
  top: 19px;
  color: var(--white);
}
main .posnrf .img-destaque {
  margin-top: -150px;
}
main .posnrf figure img {
  width: 100%;
  max-width: 428px;
  height: auto;
}
main .posnrf .wpcf7-response-output {
  margin-top: 30px;
  text-align: center;
  border: none;
  font-size: 1.4em;
  font-weight: 900;
  color: var(--orange);
}

main .contato {
  background: var(--white);
  position: relative;
  padding: 91px 15px 40px 15px;
}
main .contato h2 {
  font-size: 6em;
  font-weight: 900;
  line-height: 1;
  margin: 60px 0;
  color: var(--orange);
  position: relative;
}
main .contato h2:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 190px;
  background: var(--orange);
  left: -30px;
  bottom: -30px;
}
main .contato p {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
main .contato .form {
  margin-top: 140px;
}
main .contato .form input[type="text"] {
  width: 100%;
  margin-bottom: 10px;
  line-height: 38px;
  border-radius: 10px;
  border: solid 1px var(--orange);
  background: none;
  color: var(--purple-dark);
  font-size: 1.4em;
  font-weight: 600;
  padding: 0 20px;
  outline-width: 0;
  outline: none;
}
main .contato .form input[type="email"] {
  width: 100%;
  margin-bottom: 10px;
  line-height: 38px;
  border-radius: 10px;
  border: solid 1px var(--orange);
  background: none;
  color: var(--purple-dark);
  font-size: 1.4em;
  font-weight: 600;
  padding: 0 20px;
  outline-width: 0;
  outline: none;
}
main .contato .form input[type="tel"] {
  width: 100%;
  margin-bottom: 10px;
  line-height: 38px;
  border-radius: 10px;
  border: solid 1px var(--orange);
  background: none;
  color: var(--purple-dark);
  font-size: 1.4em;
  font-weight: 600;
  padding: 0 20px;
  outline-width: 0;
  outline: none;
}
main .contato .form input[type="text"]:focus {
  border-width: 2px;
  line-height: 36px;
  outline-width: 0;
  outline: none;
  padding: 0 19px;
}
main .contato .form input[type="email"]:focus {
  border-width: 2px;
  line-height: 36px;
  outline-width: 0;
  outline: none;
  padding: 0 19px;
}
main .contato .form input[type="tel"]:focus {
  border-width: 2px;
  line-height: 36px;
  outline-width: 0;
  outline: none;
  padding: 0 19px;
}
main .contato .form textarea {
  width: 100%;
  height: 160px;
  margin-bottom: 10px;
  line-height: 38px;
  border-radius: 10px;
  border: solid 1px var(--orange);
  background: none;
  color: var(--purple-dark);
  font-size: 1.4em;
  font-weight: 600;
  padding: 0 20px;
  outline-width: 0;
  outline: none;
  resize: none;
}
main .contato .form textarea:focus {
  border-width: 2px;
  line-height: 37.333px;
  outline-width: 0;
  outline: none;
  padding: 0 19px;
}
main .contato .form .hld-bt {
  text-align: center;
  margin-top: 10px;
}
main .contato .form .hld-bt input[type="submit"] {
  font-size: 1.6em;
  font-weight: 900;
  display: block;
  border-radius: 60px;
  border: solid 2px var(--purple-dark);
  text-transform: uppercase;
  padding: 13px 30px;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--white);
  background: var(--purple-dark);
  width: 100%;
}
main .contato .form .hld-bt input[type="submit"]:hover {
  background: var(--orange);
  border-color: var(--orange);
}
main .contato .form ::-webkit-input-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .contato .form ::-moz-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .contato .form :-ms-input-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .contato .form :-moz-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .contato .wpcf7 form.sent .wpcf7-response-output {
  border: none;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--orange);
  margin: 0;
  text-align: center;
}

main .form-contato {
  margin-top: 140px;
}

main .mapa {
  margin-bottom: 50px;
  position: relative;
}
main .mapa iframe {
  position: relative;
  z-index: 3;
  width: 100% !important;
}
main .mapa:after {
  content: "";
  width: 135px;
  height: 293px;
  background: url("../images/bg_circle_right.png") no-repeat center;
  position: absolute;
  right: 0;
  bottom: -85px;
  z-index: 2;
}

main .titulo {
  background: var(--white);
  position: relative;
  padding: 91px 15px 40px 15px;
}
main .titulo h2 {
  font-size: 5.6em;
  font-weight: 900;
  line-height: 1;
  margin: 60px 0 0 0;
  color: var(--wine);
  position: relative;
}
main .titulo h2 span {
  color: var(--orange);
}
main .titulo h2:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 190px;
  background: var(--orange);
  left: -30px;
  bottom: 0px;
}

main .artigos {
  position: relative;
  background: url("../images/bg_180_cinza.jpg") repeat-y center;
  background-size: cover;
  padding: 60px 0;
}
main .artigos:after {
  content: "";
  width: 135px;
  height: 293px;
  background: url("../images/bg_circle_right.png") no-repeat center;
  position: absolute;
  right: 0;
  bottom: 130px;
  z-index: 2;
  pointer-events: none;
}
main .artigos.interna:after {
  content: "";
  width: 138px;
  height: 293px;
  background: url("../images/bg_circle_left.png") no-repeat center;
  position: absolute;
  left: 0;
  bottom: 75px;
  z-index: 2;
  pointer-events: none;
}
main .artigos h2 {
  font-size: 4em;
  font-weight: 900;
  color: var(--purple-dark);
}
main .artigos h2 span {
  color: var(--orange);
}
main .artigos .posts {
  position: relative;
  z-index: 3;
}
main .artigos .posts .post {
  margin-bottom: 40px;
}
main .artigos .posts .post .img {
  border-radius: 30px;
  width: 100%;
  height: 0;
  padding-top: 62%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main .artigos .posts .post h3 {
  font-size: 2.6em;
  font-weight: 900;
  color: var(--purple-dark);
  margin: 0;
}
main .artigos .posts .post p {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--gray-dark);
  padding-bottom: 10px;
  margin: 0;
}
main .artigos .posts .post .hld-titulo {
  height: 120px;
  display: flex;
  align-items: center;
}
main .artigos .posts .post .mais {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
main .artigos .posts .post .mais .linha {
  width: 100%;
  height: 1px;
  background: var(--gray);
  flex: 1;
}
main .artigos .posts .post .mais .linha .bar {
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: all 0.5s ease;
}
main .artigos .posts .post .mais .circle {
  width: 48px;
  height: 48px;
  line-height: 46px;
  border-radius: 50%;
  margin-left: 15px;
  border: solid 1px var(--gray);
  text-align: center;
  color: var(--gray);
  font-size: 2em;
  transition: all 0.3s ease;
}
main .artigos .posts .post a .mais .circle i {
  transition: all 0.3s ease;
}
main .artigos .posts .post a:hover .mais .circle {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transition-delay: 0.5s;
}
main .artigos .posts .post a:hover .mais .circle i {
  transform: rotate(90deg);
  transition-delay: 0.5s;
}
main .artigos .posts .post a:hover .mais .linha .bar {
  width: 100%;
}
main .artigos .paginacao {
  text-align: center;
  width: 100%;
}
main .artigos .paginacao a {
  font-size: 2.7em;
  color: var(--purple-dark);
  width: 48px;
  height: 48px;
  line-height: 40px;
  text-align: center;
  margin: 0 15px;
  display: inline-block;
  position: relative;
  pointer-events: all;
}
main .artigos .paginacao span {
  font-size: 2.7em;
  color: var(--purple-dark);
  width: 48px;
  height: 48px;
  line-height: 40px;
  text-align: center;
  margin: 0 15px;
  display: inline-block;
  position: relative;
  pointer-events: all;
}
main .artigos .paginacao span.current {
  border: solid 2px var(--purple-dark);
  border-radius: 50%;
  pointer-events: none;
}
main .artigos .paginacao a.inactive {
  opacity: 0;
  pointer-events: none;
}
main .artigos .paginacao a i {
  margin-top: 27px;
  position: absolute;
}
main .artigos .paginacao a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
main .artigos .single h1 {
  font-size: 2.8em;
  font-weight: 600;
  color: var(--purple-dark);
  margin: 10px 0 0 0;
}
main .artigos .single h3 {
  font-size: 1.8em;
  color: var(--gray-dark);
  margin: 0 0 30px 0;
}
main .artigos .single p {
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--purple-dark);
  padding-bottom: 30px;
  margin: 0;
}
main .artigos .single ul {
  padding-bottom: 20px;
}
main .artigos .single ul li {
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--purple-dark);
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 0;
}
main .artigos .single figure {
  border-radius: 30px;
  width: 100%;
  margin: 0 0 30px 0;
}
main .artigos .single figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
main .artigos .single figcaption {
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--purple-dark);
  text-align: left;
}
main .artigos .back {
  margin-top: 20px;
}
main .artigos .back a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
main .artigos .back .linha {
  width: 100%;
  height: 1px;
  background: var(--wine);
  flex: 1;
}
main .artigos .back .linha .bar {
  width: 0;
  height: 1px;
  background: var(--orange);
  margin-left: 100%;
  transition: all 0.5s ease;
}
main .artigos .back .circle {
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  margin-right: 15px;
  border: solid 2px var(--wine);
  text-align: center;
  color: var(--wine);
  font-size: 2em;
  transition: all 0.3s ease;
}
main .artigos .back .circle .ico-arrow {
  width: 22px;
  height: 16px;
  display: inline-block;
  background: url("../images/ico_arrow_back.png") no-repeat top 0 left 0;
  transition: all 0.3s ease;
}
main .artigos .back a:hover .circle {
  color: var(--orange);
  border-color: var(--orange);
  transition-delay: 0.5s;
}
main .artigos .back a:hover .linha .bar {
  margin-left: 0;
  width: 100%;
}
main .artigos .back a:hover .circle .ico-arrow {
  background-position: top 0 left -22px;
  transition-delay: 0.5s;
}

main .sidebar {
  position: relative;
  z-index: 3;
}
main .sidebar .form {
  margin: 20px 0 60px 0;
  border: solid 1px var(--purple-dark);
  transform: skewX(-15deg);
  border-radius: 5px;
  position: relative;
}
main .sidebar .form input[type="text"] {
  font-size: 1.3em;
  color: var(--purple-dark);
  transform: skewX(15deg);
  width: 100%;
  line-height: 42px;
  background: none;
  padding: 0 20px;
  border: none;
  outline-width: 0;
  outline: none;
}
main .sidebar .form input[type="text"]:focus {
  outline-width: 0;
  outline: none;
}
main .sidebar .form button {
  font-size: 1.7em;
  color: var(--purple-dark);
  transform: skewX(15deg);
  line-height: 42px;
  padding: 0 15px;
  background: none;
  border: none;
  outline-width: 0;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
}
main .sidebar .form.focus {
  border-width: 2px;
}
main .sidebar .form.focus input[type="text"] {
  line-height: 40px;
  padding: 0 19px;
}
main .sidebar .form.focus button {
  line-height: 40px;
  padding: 0 14px;
}
main .sidebar .form ::-webkit-input-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .sidebar .form ::-moz-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .sidebar .form :-ms-input-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .sidebar .form :-moz-placeholder {
  color: var(--purple-dark);
  opacity: 1;
}
main .sidebar h3 {
  font-size: 2.4em;
  font-weight: 900;
  line-height: 1;
  color: var(--purple-dark);
  position: relative;
  margin-bottom: 25px;
}
main .sidebar .noticia {
  margin: 5px 0;
}
main .sidebar .noticia a {
  display: block;
  padding: 20px 0;
}
main .sidebar .noticia a h4 {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 10px;
}
main .sidebar .noticia a p {
  font-size: 1.4em;
  font-weight: 300;
  color: var(--gray-dark);
}
main .sidebar .noticia a:hover h4 {
  color: var(--orange);
}
main .sidebar .noticia a:hover p {
  color: var(--black);
}
main .sidebar .categorias {
  margin-top: 30px;
}
main .sidebar .categorias a {
  display: inline-block;
  border: solid 1px var(--purple-dark);
  transform: skewX(-15deg);
  border-radius: 5px;
  margin-right: 15px;
  margin-bottom: 15px;
}
main .sidebar .categorias a .hld {
  transform: skewX(15deg);
  line-height: 1.2;
  padding: 8px 15px;
  color: var(--purple-dark);
  text-transform: uppercase;
  font-size: 1.2em;
}
main .sidebar .categorias a:hover {
  background: var(--purple-dark);
}
main .sidebar .categorias a:hover .hld {
  color: var(--white);
}

/* RODAPÉ */
footer {
  background: var(--wine);
  position: relative;
  padding: 45px 0;
  z-index: 2;
}
footer .logo {
  width: 284px;
}
footer .logo img {
  width: 100%;
}
footer .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .menu a {
  font-size: 1.2em;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  padding: 10px;
  margin: 0 5px;
  position: relative;
  transition: all 0.3s ease;
}
footer .menu a:hover {
  color: var(--orange);
}
footer .menu a .ico-arrow {
  width: 12px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  background: url("../images/ico_arrow.png") no-repeat center;
}
footer .social {
  font-size: 1.2em;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  text-align: right;
  padding-right: 5px;
}
footer .social a {
  font-size: 1em;
  display: inline-block;
  width: 33px;
  height: 33px;
  line-height: 31px;
  border-radius: 50%;
  border: solid 2px var(--orange);
  color: var(--orange);
  text-align: center;
  margin: 0 10px;
}

footer .social a:hover {
  background: var(--orange);
  color: var(--white);
}

/* MEDIA QUERY */
@media (min-width: 1460px) {
  /* XXL */
}
@media (max-width: 1459.98px) {
  /* XL */
  main .artigos.interna:after {
    bottom: -130px;
  }
}
@media (max-width: 1199.98px) {
  /* LG */
  main .thinkers .nav-slider {
    width: 100%;
    left: 0;
  }
  main .socios .nav-slider {
    width: 100%;
    left: 0;
  }
  main .increva-se .container {
    max-width: 100%;
  }

  main .spacer {
    display: none;
  }
  main .artigos:after {
    bottom: -130px;
  }

  footer .container {
    max-width: 100%;
  }
  footer .menu a {
    padding: 10px 5px;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
  }
}
@media (max-width: 991.98px) {
  /* MD */
  nav .container {
    max-width: 100%;
  }
  nav .logo {
    width: 125px;
  }
  nav .menu a {
    padding: 10px 5px;
    margin: 0;
  }

  main .increva-se .container {
    display: block;
    height: auto;
    padding: 50px;
  }
  main .increva-se .container .txt {
    padding: 15px 0 15px 45px;
  }
  main .increva-se .container .bt {
    margin-left: 45px;
  }
  main .faq .box:before {
    right: 35px;
  }

  main .posnrf .form .inputs input[type="text"] {
    width: 100%;
    margin: 10px 0 0 0;
  }

  main .contato .form {
    margin-top: 40px;
  }
  main .form-contato {
    margin-top: 40px;
  }

  main .sidebar {
    margin-top: 40px;
  }

  main .artigos .posts .post .hld-titulo {
    height: 180px;
  }

  main .patrocinio .hld-logos.sp img {
    margin: 10px;
  }
  main .patrocinio .hld-logos.np img {
    margin: 10px;
  }

  footer .menu {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .menu .links {
    margin: 30px 0;
    text-align: right;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  /* XXS */
  nav .menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: -100vh;
    padding: 50px;
    background: var(--purple-dark);
    transition: all 0.7s ease;
  }
  nav.open .menu {
    top: 0;
    pointer-events: all;
  }
  nav .menu a {
    display: block;
  }
  nav .menu a.selected::before {
    top: 13px;
  }
  nav .bt-menu {
    display: block;
  }
  nav .hld-mobile {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 77px;
    left: 0;
    overflow: hidden;
    pointer-events: none;
  }

  nav .hld-mobile .menu ul li {
    display: block;
    padding: 0;
  }
  nav .drop-menu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    margin-left: 0px;
  }
  nav .drop-menu .hld {
    position: relative;
    left: 0;
    top: 0;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  nav .drop-menu .hld a {
    display: block;
    white-space: nowrap;
    min-width: 100%;
    padding: 10px 30px;
    margin: 0;
  }

  main .banner .container {
    flex-direction: column;
    justify-content: center;
  }
  main .banner .container .bt {
    margin-top: 50px;
  }

  main .posnrf .container.p-0 {
    padding: 0 15px !important;
  }

  main .increva-se .container .txt br {
    display: none;
  }
  main .somos {
    padding: 45px 15px 125px 15px;
  }
  main .conheca {
    padding: 0px 15px 50px 15px;
  }
  main .conheca .img {
    margin-top: 30px;
  }
  main .conheca .img img {
    width: 50%;
  }
  main .conheca h2 {
    margin-top: 30px;
  }
  main .action p {
    padding: 40px 0 0 15%;
  }
  main .giro180 .posts .post {
    margin-bottom: 30px;
  }
  main .faq {
    padding: 0 15px 50px 15px;
  }
  main .faq .box:before {
    width: 100px;
    background-size: contain;
    right: 35px;
    top: -145px;
  }
  main .faq .box {
    background: var(--wine);
    padding: 35px;
    border-radius: 50px;
    margin-top: -100px;
  }

  main .posnrf {
    padding: 0 15px 100px 15px;
  }
  main .posnrf .img {
    display: none;
  }

  footer .menu {
    align-items: center;
  }
  footer .menu .links {
    text-align: left;
    width: auto;
  }
  footer .menu .links a {
    display: block;
  }
  footer .social {
    text-align: center;
  }
}
@media (max-width: 589.98px) {
  main .posnrf .img-destaque {
    margin: 0 0 50px 0;
    width: 100%;
  }
  main .posnrf h1 {
    margin-bottom: 30px;
  }
  main .patrocinio.interna .box {
    margin: -100px 15px 0 15px;
  }
  main .patrocinio .box {
    margin: -100px 15px 0 15px;
  }
  .wp-block-columns {
    flex-direction: column-reverse;
  }
}
