html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* COLORS */

:root{
  --MainColor: #F8ED54;
  --DarkMainColor: #EADB0B;
  --Black: #000;
  --White: #fff;
  --AltBlack: #121212;
  --ParagraphDark: #424242;
  --AltGrey: #BCBCBC;
  --Alt2Grey: #5C5C5C;
  --MainGrey: #F7F7F7;
  --MainLightGrey: #F2F2F2;
}

/* COLORS */

main {
  flex: 1 0 auto;
}

img .responsive-img, video .responsive-video {
  max-width: 100%;
  height: auto;
}

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

a {
  text-decoration: none;
}

p, a {
  font-weight: 300;
}

ol {
  font-weight: 300;
  font-weight: bold;
  margin-left: 20px!important;
}

input {
  font-family: "Inter", sans-serif;
}

textarea{
  font-family: "Inter", sans-serif;
}

/* UTILITÁRIOS -> FIM */

/* SCROLL DO MOUSE -> INÍCIO */

::-webkit-scrollbar-track {
  background: #333333; /* Old browsers */
}

::-webkit-scrollbar {
  width: 12px;
  background: #333333;
}

::-webkit-scrollbar-thumb {
  background: transparent linear-gradient(90deg, var(--MainColor) 0%, var(--MainColor) 100%) 0% 0% no-repeat;
  border-radius: 50px;
  height: 50px;
}
/* SCROLL DO MOUSE -> FIM */

/* CONTACT FLOAT BUTTON -> INÍCIO */

.whatsapp-button {
  display: none;
}

.contact-float-button {
    position: fixed;
    z-index: 999;
    bottom: 30px;
    right: 30px;
    width: 66px;
    height: 66px;
    border-radius: 50px;
    background: #3c86ba;
}

.contact-float-button--checkmedia {
    display: none;
}

.contact-float-button__icon {   
    fill: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 66px;
    height: 56px;
    position: relative;
    top: 12px;
    left: 6px;
}

.pulse {
    animation: animate-pulse 3s linear infinite;
}
  
@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51,204,102,.7),0 0 0 0 rgba(51,204,102,.7)
  }

  40% {
    box-shadow: 0 0 0 50px transparent,0 0 0 0 rgba(51,204,102,.7)
  }

  80% {
    box-shadow: 0 0 0 50px transparent,0 0 0 30px transparent
  }

  100% {
    box-shadow: 0 0 0 0 transparent,0 0 0 30px transparent
  }
}

@keyframes productAnimation {
  0%   {right: 50px; opacity:0;}
  50%  {right: 25px; opacity:0.5;}
  100% {right: 0px; opacity:1;}
}
  
@media only screen and (min-width: 992px) {
    .contact-float-button--checkmedia {
      display: block;
    }
}

@media only screen and (min-width: 1024px) {
  .whatsapp-button {
    display: block;
  }

}

/* WHATSAPP BUTTON -> FIM */

/* MOBILE CONTACT */

.mobile-contact {
  z-index: 10;
  display: block;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 72px;
  background-color: #D9D9D9;
}

.mobile-contact-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.mobile-contact__icon {
  background-color: #232340;
  border-radius: 50px;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-contact__icon svg path {
  fill: #FFF;
}

@media only screen and (min-width: 1024px) {
  .mobile-contact { 
    display: none;
  }
}

/* MOBILE CONTACT */

/* CAPTCHA -> INÍCIO */

.g-recaptcha {
  clear: both
}

/* CAPTCHA -> FIM */

/* FRAMES -> INÍCIO */

.frame-upper {
  position: relative;
  width: 80px;
  top: -5px;
}


/* FRAMES -> FIM */

/* Cookies */

.cookieConsentContainer{
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 120px;
    right: 30px;
    display: none;
}

.cookieTitle {
    color: #FFF;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}

.cookieConsentContainer .cookieTitle a {
    color: #FFF;
    font-size: 18px;
    line-height: 20px;
    display: block;
    font-weight: bold;
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;    
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: var(--MainColor);
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    border: 1px solid transparent;
    transition: .3s ease-in-out;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    color: #FFF;
    background: var(--MainColor);
    border: 1px solid #FFF;
    transition: .3s ease-in-out;
}

.cookieButton span {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: var(--MainColor);
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    border: 1px solid transparent;
    transition: .3s ease-in-out;
}

.cookieButton span:hover {
    cursor: pointer;
    color: #FFF;
    background: var(--MainColor);
    border: 1px solid #FFF;
    transition: .3s ease-in-out;
}

@media (max-width:980px){
    .cookieConsentContainer{
        bottom: 0!important;
        left: 0!important;
        width: 100%!important
    }
}

/* Color CSS */

.color-B{
  color: var(--Black);
}

.color-W{
  color: var(--White);
}

.color-AltB{
  color: var(--AltBlack);
}

.color-ParagraphBlack{
  color: var(--ParagraphDark);
}

.color-Main{
  color: var(--MainColor);
}

/* base CSS */

.container {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}

.mgb-32{
  margin-bottom: 32px;
}

.mgb-24{
  margin-bottom: 24px;
}

.intern-paragraph{
  color: var(--ParagraphDark);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.paragraph{
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.title-h2{
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.title-h3{
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
}

.title-h4{
  font-size:24px;
  font-weight: 600;
  line-height:32px;
}

.grey-section{
  background-color: var(--MainLightGrey);
  padding: 80px 0;
}

.special-grey-section{
  background-color: var(--MainLightGrey);
  padding-bottom: 80px;
}

.white-section{
  background-color: var(--White);
  padding: 80px 0;
}

.mc-section{
  background-color: var(--MainColor);
  padding: 80px 0;
}

.button-w {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--White);
  border-radius: 60px;
  padding: 16px 24px;
  border: 2px solid var(--Black);
  justify-content:space-between;
  color: var(--Black);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  transition: .3s ease-in-out;
}

.button-w:hover {
    color: var(--MainColor);
    background-color: var(--AltBlack);
}

.button-b {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--Black);
  border-radius: 60px;
  padding: 16px 24px;
  border: 2px solid var(--Black);
  justify-content:space-between;
  color: var(--White);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  transition: .3s ease-in-out;
}

.button-b:hover {
  background-color: var(--AltGrey);
}

.button-mc {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--MainColor);
    border-radius: 60px;
    padding: 16px 24px;
    border: 2px solid var(--Black);
    justify-content:space-between;
    color: var(--MainDark);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    transition: .3s ease-in-out;
}

.button-mc:hover {
    background-color: var(--DarkMainColor);
}

.button-b {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--Black);
    border-radius: 60px;
    padding: 16px 24px;
    border: 2px solid var(--Black);
    justify-content:space-between;
    color: var(--White);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    transition: .3s ease-in-out;
}

.button-b:hover {
    background-color: var(--White);
    color: var(--Black);
}

.button-whats {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #51FF00;
    border-radius: 60px;
    padding: 16px 24px;
    border: 2px solid var(--Black);
    justify-content:space-between;
    color: var(--Black);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    transition: .3s ease-in-out;
}

.button-whats:hover {
    background-color: #41CC00;
}

.text-group{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media only screen and (max-width: 800px) {
  .title-h2{
    font-size: 32px;
    line-height: 40px;
  }

  .title-h3{
    font-size: 24px;
    line-height: 34px;
  }

  .title-h4{
    font-size: 20px;
    line-height: 28px;
  }

  .grey-section,
  .white-section,
  .mc-section{
    padding: 40px 0;
  }

  .special-grey-section{
    padding-bottom: 40px;
  }

}

@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

/* base CSS */


