html {
  scroll-behavior: smooth;
}

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

/* COLORS */

:root{
  --MainColor: #F4AC19;
  --MainDark: #0E0E0E;
  --MainParagraphDark: #292929;
  --MainLightGrey: #F7F7F7;
  --MainGrey: #BCBCBC;
  --ParagraphGrey: #4A5565;
}

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;
}

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

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

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

.space-placeholder{
  height: 40px;
  color: transparent;
}

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

textarea{
  font-family: "Montserrat", 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;
}

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

}
  
@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;
  margin-bottom: 16px;
}


/* 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
    }
}
