/* UTILITÁRIOS -> INÍCIO */
html {
  scroll-behavior: smooth;
}

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

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

/* 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(--main-color) 0%, var(--main-color) 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
}

/* CAPTCHA -> FIM */

/* FRAMES -> INÍCIO */

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


/* FRAMES -> FIM */


/* ALIGNMENTS -> INÍCIO */

.text-left-alignment {
  text-align: left!important;
}

/* ALIGNMENTS -> FIM */

/* MARGENS */

.margin-tp-36 {
  margin-top: 36px;
}

.margin-bt-36 {
  margin-bottom: 36px;
}

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

/* Base Paragraph */

.paragraph{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* MARGENS */

@media only screen and (min-width: 992px) {
  .next-section {
    display: flex;
  }
}

.mg-top-24{
  margin-top: 24px;
}

.mg-bt-16{
  margin-bottom: 16px;
}

.mb-bt-8{
  margin-bottom: 8px!important;
}

/* COLORS */

:root{
  --main-color: #CF0A0A;
  --main-hover: #850000;
  --main-dark-color: #151515;
  --main-grey: #444;
  --light-grey: #EEE;
  --Neutro-500: #6A7181;
}