@charset "UTF-8";

/**
 * Arquivo base do SCSS com definição das variáveis
 *
 * @author Alvaro junior
 * @version 1.0.0
 */

/* ============= BASE ============= */

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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

body {
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: none !important;
}

body {
  font-family: Proxima Nova;
}

header {
  font-family: Proxima Nova;
}

/* ============= INCLUDES ============= */

.header_container {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  padding: 5rem 8rem;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.header_container.scroll {
  padding: 2.5rem 8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.header_container .logo {
  flex: 1;
}

.header_container .navbar-nav {
  display: flex;
  align-items: center;
  flex: 1;
}

.header_container .navbar-nav .navbar-list {
  display: flex;
  width: 100%;
}

.header_container .navbar-nav .navbar-list .navbar-item {
  width: 100%;
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
}

.header_container .navbar-nav .navbar-list .navbar-item a {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: 0.3s all ease;
}

.header_container .navbar-nav .navbar-list .navbar-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  border-top: 3px solid #a600ff;
  transition: 0.5s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header_container .navbar-nav .navbar-list .navbar-item.nav_link_active a,
.header_container .navbar-nav .navbar-list .navbar-item:hover a {
  color: #a600ff;
}

.header_container .navbar-nav .navbar-list .navbar-item.nav_link_active a::after,
.header_container .navbar-nav .navbar-list .navbar-item:hover a::after {
  width: 100%;
}

.header_container-calc {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  padding: 5rem 8rem;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.header_container-calc.scroll {
  padding: 2.5rem 8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.header_container-calc .logo-result {
  flex: 1;
  text-decoration: none;
}

.header_container-calc .logo-result img {
  transform: translateY(20px);
}

.header_container-calc .logo-calc {
  font-family: RightGrotesk;
  font-weight: bold;
  font-size: 50px;
  line-height: 60px;
  text-decoration: none;
  color: #a600ff;
  display: inline;
}

.header_container-calc .navbar-nav-calc {
  display: flex;
  align-items: center;
}

.header_container-calc .navbar-nav-calc .navbar-list {
  display: flex;
  width: 100%;
}

.header_container-calc .navbar-nav-calc .navbar-list .navbar-item {
  width: 100%;
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
}

.header_container-calc .navbar-nav-calc .navbar-list .navbar-item a {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  position: relative;
}

.header_container-calc .navbar-nav-calc .navbar-list .navbar-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  border-top: 3px solid #a600ff;
  transition: 0.5s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header_container-calc .navbar-nav-calc .navbar-list .navbar-item.nav_link_active a::after {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .header_container {
    padding: 2rem;
  }

  .header_container .logo img {
    width: 130px !important;
  }

  .header_container .navbar-nav {
    display: none;
  }

  .header_container-calc {
    padding: 5rem 4rem;
  }

  .header_container-calc .logo-result {
    line-height: 42px;
  }

  .header_container-calc .logo-result img {
    transform: translateY(0);
    width: 130px !important;
  }

  .header_container-calc .logo-calc {
    display: none;
  }

  .header_container-calc .navbar-nav-calc .navbar-list .navbar-item a {
    display: none;
  }
}

@media screen and (max-width: 475px) {
  .header_container .logo img {
    width: 115px !important;
  }

  .header_container-calc {
    padding: 3rem 2rem;
  }

  .header_container-calc .logo-result img {
    width: 115px !important;
  }
}

.modal__container {
  height: 100vh;
  overflow: auto;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #000;
  display: flex;
  align-items: center;
  padding: 5rem 10rem;
  transform: translateY(-100%);
  z-index: -999;
  opacity: 0;
  pointer-events: none;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.5s;
}

.modal__container::-webkit-scrollbar {
  width: 0px;
}

.modal__container.show {
  transform: translateY(0%);
  z-index: 99999;
  opacity: 1;
  pointer-events: all;
}

.modal__container__close {
  position: absolute;
  right: 2%;
  top: 2%;
  cursor: pointer;
}

.modal__container__item {
  width: 100%;
  margin: 60px 30px 60px 30px;
}

.modal__container__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 991px) {
  .modal__container {
    flex-direction: column;
    padding: 3rem;
  }

  .modal__container__item {
    margin-bottom: 20px;
  }
}

/* ============= PAGES ============= */

.banner {
  height: 900px;
  position: relative;
  background: #000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.banner__destaque {
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  font-size: 520px;
  line-height: 624px;
  color: #a600ff;
  font-family: RightGrotesk;
  font-weight: bold;
  position: absolute;
  top: 20%;
  left: 100%;
  z-index: 0;
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
  white-space: nowrap;
  background: -webkit-linear-gradient(#a600ff, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner__destaque-back {
  display: none;
}

@-webkit-keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-150%, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-150%, 0);
  }
}

.banner__content {
  max-width: 650px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 70px;
}

.banner__content__title {
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: normal;
  font-size: 60px;
  line-height: 55px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 165px;
}

.banner__content__title strong {
  font-weight: bold;
}

.banner__content__btn {
  margin-bottom: 65px;
}

.banner__content__setas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 50px;
}

.banner__content__setas img {
  margin: 7.5px 0;
}

.banner__image {
  position: absolute;
  right: 10%;
  bottom: -3%;
}

.banner__image-mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .banner {
    height: 655px;
  }

  .banner__destaque-back {
    font-family: RightGrotesk;
    position: absolute;
    display: block;
    font-weight: bold;
    font-size: 250px;
    line-height: 175px;
    white-space: normal;
    -webkit-animation: none !important;
            animation: none !important;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-top: 5rem;
    background: none;
    z-index: 1;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.4px;
    -webkit-text-stroke-color: #a600ff;
  }

  .banner__destaque {
    -webkit-text-fill-color: #a600ff;
    font-weight: bold;
    font-size: 250px;
    line-height: 175px;
    white-space: normal;
    -webkit-animation: none;
            animation: none;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-top: 5rem;
    background: none !important;
    z-index: 0;
    color: #a600ff;
  }

  .banner__content {
    margin-bottom: 25px;
  }

  .banner__content__title {
    font-size: 30px;
    line-height: 27px;
    text-align: center;
    letter-spacing: -0.04em;
    max-width: 325px;
    margin: 0 auto 113px auto;
  }

  .banner__content__btn {
    margin-bottom: 35px;
  }

  .banner__content__setas img:last-child {
    display: none;
  }

  .banner__image {
    right: 50%;
    transform: translateX(50%);
    display: none;
  }

  .banner__image-mobile {
    display: block;
    position: absolute;
    right: 0;
    height: 655px;
    width: 100%;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    top: 5%;
    background-position: center center !important;
    display: flex;
    justify-content: center;
    z-index: 0;
  }

  .banner__image-mobile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 92.19%);
  }
}

@media screen and (max-width: 475px) {
  .banner {
    height: 655px;
  }

  .banner__destaque-back {
    font-size: 147px;
    line-height: 104px;
    top: 46%;
  }

  .banner__destaque {
    font-size: 147px;
    line-height: 104px;
    top: 46%;
  }

  .banner__content {
    margin-bottom: 10px;
  }

  .banner__content__title {
    margin: 0 auto 68px auto;
  }

  .banner__image-mobile {
    height: 595px;
    top: 8%;
  }

  .banner__image-mobile img {
    width: 90%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.calculadora {
  font-family: Proxima Nova Light;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  background: #222222;
  overflow: hidden;
  position: relative;
}

.calculadora .form {
  padding: 115px 12% 325px 12%;
}

.calculadora .form .gender {
  font-family: Proxima Nova Light;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 30px;
  display: flex;
  padding: 3rem 0 2rem 0;
}

.calculadora .form .gender .label {
  position: relative;
  cursor: pointer;
}

.calculadora .form .gender .label .inner {
  border: 2px solid #606060;
  box-sizing: border-box;
  border-radius: 10px;
  margin-right: 2rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  transition: 0.3s all ease;
}

.calculadora .form .gender .label .inner:hover {
  background: #a600ff;
}

.calculadora .form .gender .label .inner img {
  margin-right: 1rem;
}

.calculadora .form .gender input[type=radio] {
  display: block;
  position: absolute;
  z-index: -999;
  opacity: 0;
}

.calculadora .form .gender input[type=radio]:checked ~ .inner {
  background: #a600ff;
}

.calculadora .form .first .item .inputWrapper {
  width: 80px;
}

.calculadora .form .second .item .inputWrapper {
  width: 120px;
}

.calculadora .form .third .item .inputWrapper::after {
  content: "%";
  position: absolute;
  top: 0;
  right: -8px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  color: #a600ff;
}

.calculadora .form .row {
  font-family: Proxima Nova Light;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
  display: flex;
  padding: 1rem 0 1rem 0;
}

.calculadora .form .row .item {
  margin-right: 1rem;
  display: flex;
  align-items: center;
  position: relative;
}

.calculadora .form .row .item .inputWrapper {
  position: relative;
  margin: 0 10px;
  transform: translateY(-5px);
}

.calculadora .form .row .item .inputWrapper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px solid #a600ff;
}

.calculadora .form .row .item .inputWrapper input {
  font-family: Proxima Nova Light;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 30px;
  background: transparent;
  border: none;
  text-align: center;
  padding-bottom: 6px;
  width: 100%;
  -webkit-box-shadow: 0 0 0 30px #222222 inset !important;
  -webkit-text-fill-color: #a600ff !important;
}

.calculadora .form .row .item .inputWrapper input:focus {
  border: none;
  outline: none;
}

.calculadora .form .row .item .select-container {
  position: relative;
}

.calculadora .form .row .item .select-container svg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
}

.calculadora .form .row .item .select-container .js-activity {
  width: 320px;
}

.calculadora .form .row .item .select-container select {
  font-family: Proxima Nova Light;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: 15px;
  background: transparent;
  border: none;
  color: #a600ff;
  font-size: 30px;
  border-bottom: 3px solid #a600ff;
  padding: 0.5rem;
  cursor: pointer;
}

.calculadora .form .row .item .select-container select:focus {
  outline: none;
  border: none;
}

.calculadora .form .row .item .select-container select option {
  background-color: #222222 !important;
  border: none;
  outline: none;
  height: 50px;
}

.calculadora .form .row .item .duvida {
  font-family: Proxima Nova Light;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 15px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.calculadora .form .row .item .duvida img {
  margin-right: 1rem;
}

.calculadora .form .button:focus {
  border: none;
  outline: none;
}

.calculadora .form .button:hover {
  border: 3px solid #a600ff;
}

.calculadora marquee {
  font-family: RightGrotesk;
  font-style: normal;
  font-weight: bold;
  font-size: 444px;
  line-height: 533px;
  color: #181818;
  position: absolute;
  left: 0;
  top: 75%;
}

.calculadora .calculator-input {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.calculadora .calculator-input .inputWrapper {
    margin-right: 20px !important;
}

.calculadora .calculator-input .unidade-medida {
   flex-shrink: 0 !important;
}

@media screen and (max-width: 1024px) {
  .calculadora .form {
    padding: 115px 10% 325px 10%;
  }

  .calculadora .form .first .item {
    display: flex !important;
  }

  .calculadora .form .second .item {
    display: flex !important;
  }

  .calculadora .form .row .item {
    display: block;
  }

  .calculadora .form .row .item select {
    margin-left: auto;
  }
}

@media screen and (max-width: 991px) {
  .calculadora {
    height: 774px;
  }

  .calculadora .form {
    padding: 40px 7% 325px 7%;
  }

  .calculadora .form .gender {
    font-size: 20px;
    line-height: 20px;
    padding: 2rem 0 2rem 0;
  }

  .calculadora .form .gender .label .inner {
    padding: 0.6rem;
  }

  .calculadora .form .first .item {
    display: flex !important;
  }

  .calculadora .form .second {
    padding-bottom: 0;
  }

  .calculadora .form .second .item {
    display: flex !important;
  }

  .calculadora .form .row {
    font-size: 20px;
    line-height: 20px;
  }

  .calculadora .form .row .item {
    display: block;
  }

  .calculadora .form .row .item .inputWrapper input {
    font-size: 20px;
    line-height: 20px;
  }

  .calculadora .form .row .item select {
    margin-left: auto;
    font-size: 20px;
    line-height: 20px;
    padding-top: 2rem;
  }

  .calculadora .form .row .item select option {
    font-size: 20px;
  }

  .calculadora .form .row .item .duvida {
    font-size: 12px;
    line-height: 12px;
  }

  .calculadora marquee {
    font-size: 250px;
    line-height: 322px;
    top: 75%;
  }
}

@media screen and (max-width: 475px) {
  .calculadora {
    height: auto !important;
  }

  .calculadora .form {
    padding: 40px 40px 125px 40px;
    flex-direction: column;
  }

  .calculadora .form .gender {
    font-size: 20px;
    line-height: 20px;
    padding: 2rem 0 2rem 0;
  }

  .calculadora .form .gender .label .inner {
    padding: 0.6rem;
    margin-right: 0.8rem;
  }

  .calculadora .form .gender .label .inner img {
    margin-right: 1rem;
    max-width: 25px;
  }

  .calculadora .form .first .item {
    display: flex !important;
  }

  .calculadora .form .first .item .inputWrapper {
    width: 40px;
  }

  .calculadora .form .second {
    padding-bottom: 0;
  }

  .calculadora .form .second .item .inputWrapper {
    width: 60px;
  }

  .calculadora .form .third {
    padding-bottom: 0;
    flex-direction: column;
  }

  .calculadora .form .third .item {
    flex-direction: column;
  }

  .calculadora .form .third .item .text {
    max-width: 170px;
  }

  .calculadora .form .third .item .inputWrapper {
    width: 60px;
  }

  .calculadora .form .third .item .duvida {
    margin: 20px 0 50px;
  }

  .calculadora .form .third .item .duvida span {
    margin-left: 0 !important;
  }

  .calculadora .form .row {
    font-size: 20px;
    line-height: 20px;
    flex-direction: column;
    padding: 0;
  }

  .calculadora .form .row .item {
    padding-bottom: 1rem;
    width: 275px;
    margin-right: 0;
  }

  .calculadora .form .row .item .inputWrapper input {
    font-size: 20px;
    line-height: 20px;
  }

  .calculadora .form .row .item .select-container select {
    margin-left: auto;
    font-size: 19px;
    line-height: 19px;
    padding-top: 1rem;
    width: 255px !important;
    white-space: normal;
  }

  .calculadora .form .row .item .select-container select option {
    font-size: 20px;
  }

  .calculadora .form .row .item .select-container svg {
    right: 0;
  }

  .calculadora .form .row .item .arrow_down {
    width: 14px;
    height: 14px;
  }

  .calculadora marquee {
    font-size: 115px;
    line-height: 138px;
    top: 88%;
  }
}

@media screen and (max-width: 320px) {
  .calculadora .form {
    padding: 40px 8% 325px 8%;
  }
}

.fale_comigo {
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  background: #222222;
  text-align: center;
  padding-top: 8rem;
  border-bottom: 15px solid #000000;
}

.fale_comigo .title {
  font-family: RightGrotesk;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 71.02%;
  letter-spacing: 0.795em;
  padding-left: 0.799em;
  color: #ffffff;
  position: relative;
  margin-bottom: 25px;
}

.fale_comigo .title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -120%;
  width: 75px;
  border-bottom: 6px solid #a600ff;
  transform: translateX(-50%);
}

.fale_comigo .sub-title {
  padding: 3rem 0 2rem 0;
}

.fale_comigo .social {
  padding-bottom: 4rem;
  display: flex;
  justify-content: center;
}

.fale_comigo .social a {
  margin: 0 15px;
}

.fale_comigo .form_container {
  background: #000000;
  box-shadow: 0px 44px 84px rgba(0, 0, 0, 0.7);
  border-radius: 10px 10px 0px 0px;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  padding: 4rem 5rem 10rem 5rem;
}

.fale_comigo .form_container span.error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
  text-align: left;
  width: 100%;
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  display: none;
}

.fale_comigo .form_container span.error.active {
  display: block;
  color: red;
}

.fale_comigo .form_container .button {
  cursor: pointer;
}

.fale_comigo .form_container .button:focus {
  outline: none;
}

.fale_comigo .form_container .row {
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
}

.fale_comigo .form_container .row input {
  padding: 1.5rem 0 1rem;
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 3px solid #a600ff;
  -webkit-box-shadow: 0 0 0 30px #000000 inset !important;
  -webkit-text-fill-color: #ffffff !important;
}

.fale_comigo .form_container .row input:focus ~ label,
.fale_comigo .form_container .row input:valid ~ label {
  transform: translateY(-20px);
  color: #a600ff;
  font-size: 16px;
}

.fale_comigo .form_container .row label {
  position: absolute;
  top: 10px;
  left: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.fale_comigo .form_container .row_text {
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
}

.fale_comigo .form_container .row_text span.error {
  bottom: -25px;
}

.fale_comigo .form_container .row_text textarea {
  padding-top: 1.5rem;
  max-height: 130px;
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid #a600ff;
  resize: none;
}

.fale_comigo .form_container .row_text textarea:focus ~ label,
.fale_comigo .form_container .row_text textarea:valid ~ label {
  transform: translateY(-20px);
  color: #a600ff;
  font-size: 16px;
}

.fale_comigo .form_container .row_text textarea:focus {
  outline: none;
}

.fale_comigo .form_container .row_text label {
  position: absolute;
  top: 10px;
  left: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.fale_comigo .form_container .deen {
  margin-top: 50px;
}

.fale_comigo .form_container .deen .a_deen {
  width: 40px;
  position: relative;
  z-index: 1;
  height: 15px;
  opacity: 0.4;
}

.fale_comigo .form_container .deen .a_deen svg {
  width: 40px;
  height: 15px;
}

.fale_comigo .form_container .deen .a_deen svg path {
  stroke-dasharray: 800;
  transition: all 2s cubic-bezier(0.47, 0, 0.745, 0.715);
  stroke: #9b9b9b;
}

.fale_comigo .form_container .deen .a_deen svg:hover path {
  -webkit-animation-name: deen;
          animation-name: deen;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes deen {
  0% {
    stroke-dashoffset: 800;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes deen {
  0% {
    stroke-dashoffset: 800;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@media screen and (max-width: 475px) {
  .fale_comigo {
    font-size: 15px;
    line-height: 153%;
    padding-top: 5rem;
  }

  .fale_comigo .title {
    padding-left: 0;
    font-size: 40px;
    line-height: 91.02%;
    text-align: center;
    letter-spacing: 0.56em;
    max-width: 175px;
    margin: 0 auto;
    display: flex;
  }

  .fale_comigo .title::before {
    top: -40%;
    width: 80px;
  }

  .fale_comigo .sub-title {
    max-width: 235px;
    margin: 0 auto;
    display: flex;
    padding: 2rem 0 2rem 0;
  }

  .fale_comigo .social {
    padding-bottom: 2rem;
  }

  .fale_comigo .form_container {
    padding: 2rem 2rem 8rem 2rem;
  }

  .fale_comigo .form_container .row input {
    font-size: 15px;
    line-height: 153%;
  }

  .fale_comigo .form_container .row input:focus ~ label,
  .fale_comigo .form_container .row input:valid ~ label {
    font-size: 15px;
  }

  .fale_comigo .form_container .row_text {
    margin-bottom: 3rem;
  }

  .fale_comigo .form_container .row_text textarea {
    font-size: 15px;
    line-height: 153%;
  }

  .fale_comigo .form_container .row_text textarea:focus ~ label,
  .fale_comigo .form_container .row_text textarea:valid ~ label {
    font-size: 15px;
  }

  .fale_comigo .form_container .button {
    margin: auto;
  }
}

.sobre_mim {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  background: #181818;
  display: flex;
  align-items: center;
}

.sobre_mim .sobre_mim_inner {
  display: flex;
  padding: 10rem;
  align-items: center;
}

.sobre_mim .sobre_mim_inner .left {
  font-family: RightGrotesk;
  font-style: normal;
  font-weight: bold;
  font-size: 200px;
  line-height: 71.02%;
  color: #ffffff;
  width: 100%;
  position: relative;
  text-transform: uppercase;
}

.sobre_mim .sobre_mim_inner .left::before {
  content: "";
  position: absolute;
  left: 0;
  top: -25%;
  width: 75px;
  border-bottom: 6px solid #a600ff;
}

.sobre_mim .sobre_mim_inner .right {
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 29px;
  color: #ffffff;
  width: 100%;
}

.sobre_mim .sobre_mim_inner .right p {
  padding-bottom: 30px;
}

.sobre_mim .sobre_mim_inner .right strong {
  background-color: #a600ff;
  padding: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .sobre_mim {
    background-position: center;
  }
}

@media screen and (max-width: 991px) {
  .sobre_mim {
    height: 728px;
    background-position: center;
  }

  .sobre_mim .sobre_mim_inner {
    padding: 7rem;
  }

  .sobre_mim .sobre_mim_inner .left {
    font-size: 150px;
    line-height: 71.02%;
  }

  .sobre_mim .sobre_mim_inner .right {
    font-size: 16px;
    line-height: 24px;
  }

  .sobre_mim .sobre_mim_inner .right p {
    padding-bottom: 25px;
  }

  .sobre_mim .sobre_mim_inner .right strong {
    padding: 0.4rem;
  }
}

@media screen and (max-width: 475px) {
  .sobre_mim {
    background-attachment: scroll !important;
  }

  .sobre_mim .sobre_mim_inner {
    padding: 3rem;
    flex-direction: column;
  }

  .sobre_mim .sobre_mim_inner .left {
    font-size: 100px;
    line-height: 71.02%;
    padding-bottom: 2rem;
  }

  .sobre_mim .sobre_mim_inner .right {
    font-size: 15px;
    line-height: 24px;
  }

  .sobre_mim .sobre_mim_inner .right p {
    padding-bottom: 20px;
  }

  .sobre_mim .sobre_mim_inner .right strong {
    padding: 0.3rem;
  }
}

.banner-calc {
  height: 585px;
  position: relative;
  background: #000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.banner-calc .banner__destaque-calc {
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  font-size: 450px;
  line-height: 540px;
  color: #a600ff;
  font-family: RightGrotesk;
  font-weight: bold;
  position: absolute;
  top: 150px;
  left: 100%;
  z-index: 0;
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
  white-space: nowrap;
  background: -webkit-linear-gradient(#a600ff, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-calc .banner__content-calc {
  max-width: 650px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 70px;
}

.banner-calc .banner__content-calc .banner__content__title-calc {
  font-size: 30px;
  line-height: 91.5%;
  letter-spacing: -0.04em;
  color: #ffffff;
  position: absolute;
  top: 60%;
  left: 14%;
}

.banner-calc .banner__content-calc .banner__content__title-calc strong {
  font-family: Proxima Nova Bold;
  font-weight: bold;
  font-size: 100px;
  line-height: 91.5%;
  letter-spacing: -0.04em;
  color: #ffffff;
  display: flex;
}

.resultCalories {
  background-color: #000000;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  border-bottom: 1px solid #242424;
}

.resultCalories__container {
  padding-top: 1rem;
  margin: 0rem 12rem 0rem 12rem;
  position: relative;
}

.resultCalories__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  border-right: 2px solid #a600ff;
  height: 100%;
}

.resultCalories__container .description {
  padding-bottom: 3rem;
  max-width: 744px;
}

.resultCalories__container .list {
  padding-bottom: 3rem;
  max-width: 500px;
}

.resultCalories__container .list .item {
  font-family: Proxima Nova Light;
  font-size: 25px;
  line-height: 192.5%;
  font-weight: normal;
}

.resultCalories__container .list .item strong {
  font-family: Proxima Nova Bold;
  font-weight: bold;
}

.resultCalories__container .list .item_active {
  font-size: 25px;
  line-height: 192.5%;
  font-weight: normal;
  position: relative;
  z-index: 1;
}

.resultCalories__container .list .item_active::before {
  width: calc(100% + 75px);
  background: #a600ff;
  border-radius: 0px 5px 5px 0px;
  height: 51px;
  content: "";
  position: absolute;
  z-index: -1;
  left: -75px;
}

.resultCalories__container .list .item_active strong {
  font-weight: bold;
}

.resultNutrition {
  background-color: #000000;
  color: #ffffff;
}

.resultNutrition__container {
  padding-top: 3rem;
  margin: 0rem 12rem 0 12rem;
  position: relative;
}

.resultNutrition__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  border-right: 2px solid #a600ff;
  height: 100%;
}

.resultNutrition__container .title {
  font-size: 30px;
  line-height: 192.5%;
  font-weight: bold;
  padding-bottom: 2rem;
}

.resultNutrition__container .options {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 2rem;
}

.resultNutrition__container .options .item:first-child {
  margin-right: 50px;
}

.resultNutrition__container .options .item {
  font-size: 18px;
  line-height: 18px;
  padding-bottom: 1rem;
  cursor: pointer;
  font-weight: 600;
}

.resultNutrition__container .options .item.item_active {
  color: #a600ff;
  border-bottom: 3px solid #a600ff;
}

.resultNutrition__container .recomended {
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
  color: #575757;
  padding-bottom: 1rem;
}

.resultNutrition__container .result-container {
  display: none;
}

.resultNutrition__container .result-container .calories {
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  padding-bottom: 2rem;
}

.resultNutrition__container .result-container .calories strong {
  background-color: #a600ff;
  display: flex;
  justify-content: center;
  width: 100px;
  padding: 4px;
  border-radius: 5px;
}

.resultNutrition__container .result-container .macros {
  display: flex;
  padding-bottom: 2rem;
}

.resultNutrition__container .result-container .macros .item:nth-child(2) {
  border-radius: none;
}

.resultNutrition__container .result-container .macros .item:last-child {
  border-radius: 0 10px 10px 0px;
}

.resultNutrition__container .result-container .macros .item:first-child {
  border-radius: 10px 0px 0 10px;
}

.resultNutrition__container .result-container .macros .item {
  font-size: 15px;
  line-height: 15px;
  margin-right: 3px;
  text-align: center;
  width: 100%;
  max-width: 260px;
  background-color: #a600ff;
  padding: 2rem 4rem 2rem 4rem;
}

.resultNutrition__container .result-container .macros .item .number {
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
}

.resultNutrition__container .result-container.active {
  display: block;
}

.resultNutrition__container .obs {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #606060;
  margin-bottom: 71px;
  display: flex;
  align-items: center;
}

.resultNutrition__container .obs img {
  margin-right: 1rem;
}

.resultNutrition .btnWrapper {
  margin-left: 12rem;
  padding-bottom: 146px;
}

@media screen and (max-width: 1024px) {
  .resultCalories__container {
    margin: 0rem 8rem 0rem 8rem;
  }

  .resultNutrition__container {
    margin: 0rem 8rem 0rem 8rem;
  }

  .resultNutrition .btnWrapper {
    margin-left: 8rem;
  }
}

@media screen and (max-width: 991px) {
  .banner-calc {
    height: 565px;
  }

  .banner-calc .banner__destaque-calc {
    font-size: 265px;
    line-height: 73.52%;
    top: 30%;
    left: 8%;
    -webkit-animation: none;
    animation: none;
    white-space: initial;
    max-width: 660px;
    padding: 2rem 0 0;
  }

  .banner-calc .banner__content-calc .banner__content__title-calc {
    font-size: 25px;
    line-height: 91.5%;
    top: 35%;
    left: 52%;
  }

  .banner-calc .banner__content-calc .banner__content__title-calc strong {
    font-size: 80px;
  }

  .resultCalories__container {
    margin: 0rem 0rem 0rem 7rem;
  }

  .resultNutrition__container {
    margin: 0rem 0rem 0rem 7rem;
  }

  .resultNutrition__container .macros {
    flex-direction: column;
  }

  .resultNutrition__container .macros .item {
    border-radius: 10px !important;
  }
}

@media screen and (max-width: 500px) {
  .banner-calc {
    height: 320px;
  }

  .banner-calc .banner__destaque-calc {
    font-size: 150px !important;
    line-height: 73.52%;
    top: 28%;
    left: 8%;
  }

  .banner-calc .banner__content-calc .banner__content__title-calc {
    font-size: 18px;
    line-height: 91.5%;
    top: 40%;
    left: 60%;
  }

  .banner-calc .banner__content-calc .banner__content__title-calc strong {
    font-size: 50px;
  }

  .resultCalories {
    font-size: 15px;
    line-height: 152.5%;
  }

  .resultCalories__container {
    margin: 0rem 0rem 0rem 32px;
    padding-left: 30px;
    width: 80%;
  }

  .resultCalories__container::before {
    top: 20px;
    left: 0px;
  }

  .resultCalories__container .list .item {
    font-size: 14px;
  }

  .resultCalories__container .list .item_active {
    font-size: 14px;
  }

  .resultCalories__container .list .item_active::before {
    height: 27px;
    left: -28px;
    width: calc(100% + 28px);
  }

  .resultNutrition__container {
    margin: 0rem 0rem 0rem 32px;
    padding-left: 30px;
    width: 80%;
    padding-bottom: 3rem;
  }

  .resultNutrition__container::before {
    top: 20px;
    left: 0px;
  }

  .resultNutrition__container .title {
    font-size: 25px;
  }

  .resultNutrition__container .options {
    font-size: 15px;
    line-height: 15px;
  }

  .resultNutrition__container .recomended {
    font-size: 13px;
    line-height: 13px;
  }

  .resultNutrition__container .calories {
    font-size: 25px;
    line-height: 100.5%;
  }

  .resultNutrition__container .macros {
    flex-direction: column;
  }

  .resultNutrition__container .macros .item {
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 4px;
    border-radius: 10px;
  }

  .resultNutrition__container .macros .item .number {
    font-size: 25px;
    line-height: 100.5%;
  }

  .resultNutrition__container .obs {
    font-size: 12px;
    line-height: 150%;
    margin-bottom: 0;
  }

  .resultNutrition .btnWrapper {
    margin-left: 5rem;
    padding-bottom: 80px;
    width: 226px;
    display: flex;
    justify-content: center;
  }

  .resultNutrition .btnWrapper .button {
    width: 100%;
    padding: 15px 10px;
  }
}

@media screen and (max-width: 320px) {
  .resultCalories {
    font-size: 12px;
  }

  .resultCalories .resultCalories__container .list .item {
    font-size: 11px;
  }

  .resultCalories .resultCalories__container .list .item_active {
    font-size: 11px;
    width: 250px;
  }
}

/* ============= COMPONENTES ============= */

.button {
  padding: 22px 40px;
  font-family: Proxima Nova;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  background: #a600ff;
  border-radius: 200px;
  text-decoration: none;
  border: none;
  transition: 0.3s all ease;
  border: 3px solid transparent;
}

.button:hover {
  border: 3px solid #a600ff;
  background: transparent;
  color: #a600ff;
}

@media screen and (max-width: 991px) {
  .button {
    padding: 15px 30px;
    font-size: 15px;
    line-height: 15px;
  }
}

@media screen and (max-width: 475px) {
  .button {
    padding: 10px 20px;
    font-size: 15px;
    line-height: 15px;
    display: flex;
    justify-content: center;
  }
}

/* ============= FONTS ============= */

@font-face {
  font-family: Proxima Nova;
  src: url("/fonts/ProximaNova-Regular.ttf") format("truetype");
}

@font-face {
  font-family: Proxima Nova Light;
  src: url("/fonts/ProximaNova-Light.ttf") format("truetype");
}

@font-face {
  font-family: Proxima Nova Bold;
  src: url("/fonts/ProximaNova-Bold.ttf") format("truetype");
}

@font-face {
  font-family: RightGrotesk;
  src: url("/fonts/RightGrotesk-TallBold.ttf") format("truetype");
}

