:root{
  --color-main:#008CFF;
  --color-main-dark:#0978d3;
  --color-secondary: #204060;
  --color-secondary-dark: #ff9029;
  --title-color:#516272;
  --subtitle-color:#516b86;
  --text-color: #6f7b8a;
  --text-color_grey: #616161;
  --transitions_hovers: all 0.2s ease;
}
*{
  font-family: 'Heebo', sans-serif !important;
  text-decoration: none;
}
*, *:focus {
  outline: none !important;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body{
  position: relative;
  top: 0px;
  margin: 0;
  padding: 0;
}
a, a:hover, a:focus, a:link{
  text-decoration: none !important;
  color: inherit;
}
/*BOTÕES PREDEFINIDOS*/
.button-default-1{
  cursor: pointer;
  border-radius: 6px;
  padding: 12px 40px;
  font-size: inherit;
  font-weight: 500;
  color: var(--color-main);
  background-color: transparent;
  border: 1px solid var(--color-main);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
  transition: all 0.2s ease 0s;
}
.button-default-1:hover{
  color: #ffffff;
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.button-default-1.reverse{
  color: #ffffff;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
}
.button-default-1.reverse:hover{
  background-color: var(--color-main-dark);
}
.button-default-2{
  position: relative;
  padding: 8px 35px;
  background-color: transparent;
  border:1px solid var(--color-main);
  color: var(--color-main);
  border-radius: 3px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  z-index: 0;
}
.button-default-2:hover{
  color: #ffffff;
}
.button-default-2::after{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  display: block;
  transform: scaleX(0);
  z-index: -1;
  width:101%;
  height:100%;
  background-color:var(--color-main);
  transform-origin: 100% 50%;
  transition: transform .5s cubic-bezier(.23,1,.32,1);
}
.button-default-2:hover::after{
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
.button-default-2.reverse{
  background-color: var(--color-main);
  border:1px solid var(--color-main);
  color: #ffffff;
}
.button-default-2.reverse:hover{
  color: var(--color-main);
}
.button-default-2.reverse::after{
  background-color: #ffffff;
}
.button-default-3{
  position: relative;
  color:currentColor;
  padding:2px 1px;
  display: inline-block;
  height: max-content;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.button-default-3:hover{
  text-decoration-color: currentColor;
  text-decoration-style: solid;
  text-decoration-line: underline;
}
.button-default-3::before{
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: calc(50% - 1px);
  right: -14px;
  background-color: currentColor;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.2s ease;
}
.button-default-3:hover::before{
  right: -20px;
}
.button-default-3::after{
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: -14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotateZ(45deg);
  transition: all 0.2s ease;
}
.button-default-3:hover::after{
  right: -20px;
}
.button_introduction{
  padding:12px 32px;
  color:#f4f4f4 !important;
  width: max-content;
  border-radius: 4px;
  font-size:18px;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
  /* border: none; */
  border:2px solid #ffffff;
}
.button_introduction:hover{
  background-color: #ffffff;
  color:#204060 !important;
}
/* TÍTULOS SUBTÍTULOS*/
.title_section{
  width: 100%;
  font-size: 34px;
  font-weight: 500;
  color: var(--title-color);
  text-align: center;
  padding:0px;
  margin:0px;
  line-height: 120%;
}
.title_section span{
  color: var(--color-main);
}
.subtitle_section{
  font-size: 18px;
  max-width: 680px;
  color: var(--subtitle-color);
  text-align: center;
  padding:0px;
  margin:0px;
  margin:0 auto;
  font-weight: 400;
  line-height: 150%;
}
/* SEPARADORES*/
.border-separation-1{
  width: auto;
  max-width: 150px;
  height: 5px;
  background-color: #d7dfe9;
  margin: 0px auto;
}
.border-separation-full-1{
  width: auto;
  max-width: 100%;
  height: 1px;
  background-color: #d7dfe9;
  margin: 0px auto;
}
.border-separation-2{
  width: auto;
  max-width: 150px;
  height: 5px;
  background-color: var(--color-main);
  margin: 0px auto;
}
.border-separation-full-2{
  width: auto;
  max-width: 100%;
  height: 1px;
  background-color: var(--color-main);
  margin: 0px auto;
}
/*OUTROS*/
.clr-main{
  color:var(--color-main);
}
.clr-main-dark{
  color:var(--color-main-dark);
}
.txt-left{
  text-align: left;
}
.txt-center{
  text-align: center;
}
.bold{
  font-weight: 700;
}

/* SECTION COM NOSSOS PLANOS*/
#plans{
  margin-top:0px;
  background-color: #F1F5F9;
  border-bottom:1px solid #eeeeee;
  border-top:1px solid transparent;
}
.container_card_plan{
  position: relative;
  padding: 10px 8px;
  margin: 0px auto;
  border-radius: 6px;
  overflow: hidden;
}@media(max-width: 540px){
  .title_introduction span {
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size:12px;
  }
  .title_introduction h1 {
    text-align: center;
    font-size:22px;
  }
  .title_introduction p {
    text-align: center;
    font-size:16px;
  }
  .button_introduction{
    font-size: 16px;
  }
  .ft-button_introduction{
    display: flex;
    justify-content: center;
  }
  .img_align{
    max-height: 350px;
  }
  .container_card_demonstracao{
    height: 180px;
  }
  .img_commerce_demonstration{
    object-fit: contain;
  }
  .contents_card_example{
    height: 240px;
    padding: 8px;
    padding-bottom: 10px;
  }
  .text-bottom_card_demo{
    padding: 10px 0px;
  }
  .text-bottom_card_demo p{
    font-size: 16px;
    line-height: 16px;
  }
  .container_card_plan{
    max-width: 85%;
  }
}
@media(max-width: 540px){
  .container_card_plan{
    max-width: 85%;
  }
}
.container-content-card-plan {
  position: relative;
  padding:1px;
  margin: 25px auto 0px;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px 0px #00000013;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.content_marker_plan {
  position: relative;
  width: 100%;
  padding: 5px 0px 3px;
  top: 1px;
  background-color: #00c77b;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.content_marker_plan+.container-content-card-plan {
  margin-top: 0px;
}

.arte_plan {
  margin: 30px auto 0px;
  color: var(--color-main);
}
.arte_plan svg {
  width: 80px;
  height: 80px;
}

.header_card_plan {
  position: relative;
  padding: 12px 0px;
  text-align: center;
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-main);
}
.header_card_plan svg {
  height: 90%;
}

.discount_content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.total_discount_value {
  margin: 4px 10px;
  color: #acacac;
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  display: flex;
  justify-content: center;
  align-items: center;
}
.discount_box {
  font-size: 12px;
  padding: 2px 9px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #00c77b;
  color: #ffffff;
}

.total_value{
  width: max-content;
  margin-bottom: 5px;
  margin-top: 7px;
  margin: 4px auto;
  color: #585757;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
}

.monthly_value{
  width: 100%;
  margin-bottom: 4px;
  color: var(--color-main);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.monthly_value span{
  font-size: 26px;
}

.itens_pacote{
  width: 100%;
  padding: 20px 25px;
  font-size: 16px;
  color: var(--text-color);
  text-align: left;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #e3e5e9;
}
.itens_pacote > div{
  padding:6px 3px;
}

.button_buy_plan {
  width: 87%;
  padding: 12px 0px 11px;
  margin: 0 auto 30px;
  background-color: var(--color-main) !important;
  border: 1px solid var(--color-main);
  border-radius: 3px;
  outline: none;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button_buy_plan:hover {
  background-color: var(--color-main-dark) !important;
}

/*ARROWS*/
.arrow-next,
.arrow-prev{
  position:absolute;
  width:54px;
  height:54px;
  top:calc(50% - 27px);
  border-radius: 50%;
  background-color: var(--color-main);
  cursor: pointer;
  transition:0.3s ease;
}
.arrow-next svg,
.arrow-prev svg{
  width: 62%;
  height: 62%;
  fill:#ffffff;
  position: relative;
}
.arrow-next{
  right:0px;
}
.arrow-next svg{
  left:23%;
  top:19%;
}
.arrow-prev{
  left:0px;
}
.arrow-prev svg{
  left:15%;
  top:19%;
}
.arrow-disabled{
  pointer-events: none;
  opacity: 0.2;
}
/* OTIMIZAÇÕES*/
@media(max-width: 280px){
  #plans .button-default-3{
    font-size: 15px !important;
  }
}
@media(max-width:1024px){
  .title_section{
    font-size: 32px;
  }
}
@media(max-width:768px){
  .title_section{
    font-size: 22px;
  }
  .subtitle_section{
    font-size: 16px !important;
  }
  .button-default-3{
    font-size: 14px;
  }
}
/* @media(max-width:614px){
  .title_section{
    font-size: 26px;
  }
}
@media(max-width:425px){
  .title_section{
    font-size: 24px;
  }
  .subtitle_section{
    font-size: 16px;
  }
}
@media(max-width:352px){
  .title_section{
    font-size: 24px;
  }
} */