/* =======

	Template Name: Analítica 3M
	Author: Jadiel Moura
	Version: 2.0

======== */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

html, body * {
  font-family: 'Roboto', sans-serif;
  --color_pri: #1D9DC3;
  --color_sec: #00EAFF;
  --color_terc: #53F4C4;
  --color_qua: #00B6FF;
  --color_qui: #F2F2F2;
  --color_sex: #a6e3ed;
  --color_danger: #EC8888;
  --bg_footer: #1A1A1A;
  --bg_body: #272727;
  --bg_rgba_body: rgba(51, 51, 51, 0.25);
  --bd_box_shadow: rgb(146 240 247 / 39%);
  --bd_text_shadow: rgba(146, 240, 247, 0.5);
  --font_family_roboto: 'Roboto', sans-serif;
  --font_family_poppins: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg_body);
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a {
  color: var(--color_pri);
}
a:focus,
a:hover {
  text-decoration: none;
  color: var(--color_qua);
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/*========================================
  Bootstrap
==========================================*/

.text-center {
  text-align: center !important;
}

.row,
.row-embracing {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > *,
.row-embracing > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: 0;
  margin-top: var(--bs-gutter-y);
}
.w-100 {
  width: 100% !important;
}

/* padding */
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}

/* line-height */
.lh-sm {
  line-height: 1.25 !important;
}
/* column */
.col {
  flex: 1 0 0%;
}

/* justify-content */
.justify-content-center {
  justify-content: center !important;
}

/* align-items */
.align-items-center {
  align-items: center !important;
}
/* align-self */
.align-self-end {
  align-self: flex-end !important;
}

/* margin-top */
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}

/* margin (top + bottom) */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

/* Container */
.container {
  width: 100%;
  height: 100%;
  padding-right: var(--bs-gutter-x,.75rem);
  padding-left: var(--bs-gutter-x,.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(calc(100% - 40px), 100%);
  }
}


/*========================================
  Logo
==========================================*/
.logo-start {
  width: 200px;
}
.logo-footer {
  width: 150px;
}

/*========================================
  Fonts
==========================================*/
.text-popp,
.text-popp span {
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 35px;
  color: #fff;
}

.text-popp-2,
.text-popp-2 span {
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 35px;
  color: #fff;
}

.text-popp span,
.text-popp-2 span {
  color: var(--color_pri);
}

.text-roboto,
.text-roboto span,
.text-roboto-2,
.text-roboto-2 span {
  font-family: var(--font_family_roboto);
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
}
.text-roboto span,
.text-roboto-2 span {
  font-weight: 500;
}

/*========================================
  Retângulo de metas
==========================================*/
.range-goals {
  text-align: center;
  box-shadow: 0 -1px 3px -2px #8c8d8e;
  border-bottom: 1px solid #8c8d8e;
  border-radius: 25px;
  padding: 20px;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background-image: radial-gradient(ellipse at 21% 0%, #203438 0%, transparent 45%), 
    radial-gradient(circle at 100% 100%, #283234 0%, transparent 16%), 
    linear-gradient(to right bottom, #272b2b, #272828);
}
.range-goals .text,
.range-goals .text span {
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
}
.range-goals .text span {
  color: var(--color_pri);
}
.goals-content {
  display: flex;
  justify-content: space-evenly;
  margin-top: 15px;
}
.goals-content span {
  font-family: var(--font_family_roboto);
  font-style: normal;
  font-weight: 200;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  margin-left: 10px;
}
.goals-content img {
  width: 45px;
}

/*========================================
  Reuniões
==========================================*/
.meeting-content .text,
.meeting-content .text span {
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 30px;
}
.meeting-content .text span {
  color: var(--color_pri);
}


/*========================================
  Etapas
==========================================*/
.text-steps,
.text-steps span {
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  max-width: 730px;
}
.text-steps span {
  color: var(--color_pri);
}
.img-step {
  width: 350px;
}
.content-step {
  display: flex;
  font-family: var(--font_family_roboto);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 57px;
  align-items: center;
}
.content-step .text {
  margin-left: 20px;
}
.content-step .number {
  font-size: 80px;
  font-weight: 600;
  color: var(--color_qua);
}
.content-step span {
  font-weight: 200;
}

/*========================================
  Provedor Garantido
==========================================*/
.grad-text {
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  padding: 10px 0;
  color: #fff;
  background: linear-gradient(to right, var(--color_sex) 0%, var(--color_qua) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content-guarantee {
  position: relative;
  padding: 20px;
  margin-bottom: 5rem;
  height: 335px;
  max-width: 310px;
  border-radius: 15px;
  background-image: linear-gradient(to top, #8c8d8e 10%, transparent 65%);
  z-index: 1;
}
.content-guarantee:after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 15px;
  background-image: radial-gradient(ellipse at 0% 60%, #203438 0%, transparent 60%),
  radial-gradient(ellipse at 100% 60%, #283234 0%, transparent 60%),
  linear-gradient(to right bottom, #272b2b, #272828);
}
.content-guarantee .icon-top {
  position: absolute;
  top: -18px;
  width: 45px;
}
.content-guarantee .title {
  margin-top: 15px;
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  color: var(--color_pri);
}
.content-guarantee .text,
.content-guarantee .text span {
  margin-top: 15px;
  font-family: var(--font_family_roboto);
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
}
.content-guarantee .text span {
  font-weight: 500;
}

.d-guarante {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

/*========================================
  Abrangente
==========================================*/
.row-embracing {
  text-align: center;
  justify-content: space-between;
  min-height: 670px;
  margin-top: 50px !important;
}

.d-content-center {
  display: flex;
  justify-content: center;
}

/*Background Brazil*/
.bg-brazil {
  position: relative;
}
.bg-brazil:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: var(--bg-brazil);
  background-position: center;
  background-size: 2000px;
  background-repeat: no-repeat;
  mix-blend-mode: exclusion;
  pointer-events: none;
  z-index: -1;
}

.bg-technology {
  background-position: center;
  background-size: cover;
  background-repeat: repeat-y;
}

.grad-text-2 {
  font-family: var(--font_family_poppins);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  padding: 10px 0;
  color: #fff;
  background: linear-gradient(to right, var(--color_sex) 20%, var(--color_qua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*========================================
  Time
==========================================*/
.img-team {
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

/*========================================
  Dúvidas frequentes
==========================================*/
.accordion-faqs {
  margin-top: 1rem;
}
.accordion-faqs .collapse-item {
  font-family: var(--font_family_roboto);
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 10px;
}
/* question */
.collapse-item .question {
  position: relative;
  cursor: pointer;
  padding-right: 1.5rem;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #ccc;
}
/* active */
.accordion-faqs .collapse-item.active .question,
.accordion-faqs .collapse-item:hover .question {
  color: var(--color_qua);
  border-color: var(--color_qua);
}
.collapse-item .question:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #fff;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
}
.collapse-item.active .question:before {
  transform: translateY(-50%) rotate(180deg);
}
/* active */
.accordion-faqs .collapse-item.active .question:before,
.accordion-faqs .collapse-item:hover .question:before {
  border-top: 7px solid var(--color_qua);
}
/* collapse-item */
.accordion-faqs .collapse-item .response {
  max-height: 0;
  padding: 0;
  visibility: hidden;
  overflow: hidden;
  transition: visibility 0s linear 0s, max-height 0.3s ease;
}
/* active */
.accordion-faqs .collapse-item.active .response {
  padding: 10px;
  padding-bottom: 0;
  max-height: 1000px;
  visibility: visible;
  transition: max-height 0.3s ease;
}

/*========================================
  Linha horizontal
==========================================*/
.line {
  background: linear-gradient(to right, var(--color_sex) 0%, var(--color_qua) 90%);
  width: 150px;
  height: 3px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px;
  box-shadow: 0px 0px 11.3226px var(--bd_box_shadow);
}

/*========================================
  Ponto de luz
==========================================*/
.light-spot-3 {
  position: absolute;
  width: 0;
  height: 0;
  z-index: -1;
  border-radius: 50%;
  box-shadow: 0px 0px 200px 150px var(--color_pri);
}
.light-spot-4 {
  position: absolute;
  width: 0;
  height: 0;
  z-index: -1;
  left: 80%;
  border-radius: 50%;
  box-shadow: 0px -100px 200px 100px var(--color_pri);
}
.light-spot-5 {
  position: absolute;
  width: 0;
  height: 0;
  z-index: -1;
  left: 10%;
  border-radius: 50%;
  box-shadow: 0px 0px 200px 100px var(--color_pri);
}

/*========================================
  Botão Whatsapp
==========================================*/
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.whatsapp-btn:hover {
  transform: translateY(-4px);
}
.whatsapp-btn:active,
.whatsapp-btn:focus {
  transform: translateY(4px);
}

/*========================================
  Botão principal
==========================================*/
.main-btn {
  display: inline-block;
  font-family: var(--font_family_roboto);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  min-width: 275px;
  padding: 6px 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(149deg, var(--color_pri) 0%, var(--color_qua) 100%);
  transition: transform .15s;
  border: 0;
  min-height: 39px;
}
.main-btn:hover {
  background: linear-gradient(149deg, var(--color_qua) 0%, var(--color_pri) 100%);
  transform: translateY(-4px);
  color: #fff;
}
.main-btn:active,
.main-btn:focus {
  background: linear-gradient(149deg, var(--color_pri) 0%, var(--color_qua) 100%);
  transform: translateY(4px);
  color: #fff;
}

/*========================================
  Barra de rolagem - Geral
==========================================*/
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background-color: var(--bg_body);
}
::-webkit-scrollbar-thumb {
  background-color: var(--color_pri);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color_pri);
}

/*========================================
  Cookies card - Geral
==========================================*/
.flex-box-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookies-container {
  font-family: var(--font_family_roboto);
  position: fixed;
  padding: 1rem;
  bottom: 0;
  z-index: 999;
  color: #FFFFFF;
  display: none;
  margin-left: auto;
  margin-right: auto;
}

.cookies-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: rgb(0 0 0 / 80%);
  max-width: 650px;
  border-radius: 5px;
  padding: 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8rem);
  animation: slideUp 1s forwards;
}
@keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}
.cookies-container .item-title {
  font-weight: 500;
  font-size: 1rem;
}

.cookies-container .item-link {
  color: var(--color_pri);
  text-decoration: none;
}

.cookies-container .item-link:hover {
  color: var(--color_sec);
  text-decoration: underline;
}

.cookies-save {
  grid-column: 2;
  grid-row: 1/3;
  background: var(--color_pri);
  color: #FFFFFF;
  cursor: pointer;
  border: none;
  height: 50px;
  border-radius: 5px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

@media (max-width: 500px) {
  .cookies-content {
    grid-template-columns: 1fr;
  }
  .cookies-save {
    grid-column: 1;
    grid-row: 3;
  }
}

/*========================================
  Complementos personalizados - Geral
==========================================*/
.mt-90 {
  margin-top: 90px !important;
}

.f-size-40 {
  font-size: 40px !important;
}
.f-size-35 {
  font-size: 35px !important;
}

.d-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;;
}

/* max-width */
.w-max-350 {
  max-width: 350px !important;
}
.w-max-470 {
  max-width: 470px !important;
}
.w-max-700 {
  max-width: 700px !important;
}
.w-max-810 {
  max-width: 810px !important;
}

@media (min-width: 576px) {

/*========================================
  Bootstrap - Small
==========================================*/
  /*column */
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  
/*========================================
  Ponto de luz
==========================================*/
  .md-light-spot-1 {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    left: -10px;
    border-radius: 50%;
    box-shadow: 0px 0px 200px 100px var(--color_pri);
  }
  .md-light-spot-2 {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    left: 75%;
    border-radius: 50%;
    box-shadow: 0px 0px 200px 100px var(--color_pri);
  }
  .md-light-spot-6 {
    position: absolute;
    width: 0;
    height: 0;
    z-index: 0;
    right: 15%;
    border-radius: 50%;
    box-shadow: 0px 0px 400px 160px var(--color_pri);
  }
  /* max-width */
  .col-max-240 {
    max-width: 240px !important;
  }
  .col-max-310 {
    max-width: 310px !important;
  }
  .col-max-380 {
    max-width: 380px !important;
  }
  .col-max-415 {
    max-width: 415px !important;
  }
  .col-max-430 {
    max-width: 430px !important;
  }
  .col-max-455 {
    max-width: 455px !important;
  }
  .col-max-460 {
    max-width: 460px !important;
  }
  .col-max-490 {
    max-width: 490px !important;
  }
  .col-max-630 {
    max-width: 630px !important;
  }
  .col-max-645 {
    max-width: 645px !important;
  }
  .col-max-670 {
    max-width: 670px !important;
  }
  .bg-cobr {
    background: none !important;
  }
  
/*========================================
  Bootstrap - Medium
==========================================*/

  .d-md-none {
    display: none !important;
  }

  /* padding-left */
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  
  /*margin-bottom */
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  
  /*margin-top */
  .mt-md-0 {
      margin-top: 0 !important;
  }
  .mt-md-1 {
      margin-top: 0.25rem !important;
  }
  .mt-md-2 {
      margin-top: 0.5rem !important;
  }
  .mt-md-3 {
      margin-top: 1rem !important;
  }
  .mt-md-4 {
      margin-top: 1.5rem !important;
  }
  .mt-md-5 {
      margin-top: 3rem !important;
  }
  
  /*column */
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .text-popp,
  .text-popp span {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }
  .text-popp-2,
  .text-popp-2 span {
    font-weight: 600;
    font-size: 31px;
    line-height: 25px;
  }
  .text-roboto,
  .text-roboto span {
    font-size: 13px;
    line-height: 20px;
  }
  .text-roboto-2,
  .text-roboto-2 span {
    font-size: 14px;
    line-height: 16px;
  }
  
  .row > *,
  .row-embracing > * {
    padding-right: 0;
    padding-left: 0;
  }
  .sm-text-center {
    text-align: center !important;
  }
  .sm-justify-content {
    justify-content: center;
  }
  /* max-width */
  .sm-max-230 {
    max-width: 230px !important;
  }
  .sm-max-305 {
    max-width: 305px !important;
  }
  .sm-max-335 {
    max-width: 335px !important;
  }
  /* margin-bottom */
  .sm-mb-20 {
    margin-bottom: 20px !important;
  }
  /* margin-top */
  .sm-mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm-mt-3 {
    margin-top: 1rem !important;
  }
  .sm-mt-4 {
    margin-top: 1.5rem !important;
  }
  .sm-mt-5 {
    margin-top: 3rem !important;
  }
  .sm-mt-25 {
    margin-top: 25px !important;
  }
  .sm-mt-45 {
    margin-top: 45px !important;
  }
  .sm-mt-320 {
    margin-top: 320px !important;
  }
  .sm-d-none {
    display: none !important;
  }
  /* flex-width */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  /* order */
  .sm-order-1 {
    order: 1 !important;
  }
  .sm-order-2 {
    order: 2 !important;
  }
  .sm-order-3 {
    order: 3 !important;
  }
  /* font-size */
  .f-size-sm-10 {
    font-size: 10px !important;
  }
  .f-size-40 {
    font-size: 24px !important;
  }
  
  .sm-p-0 {
    padding: 0 !important;
  }

  .d-sm-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;;
  }

  .sm-pre-line {
    white-space: pre-line !important;
  }

/*========================================
  Retângulo de metas - Smartphone
==========================================*/
  .goals-sm-left {
    margin: 0;
    text-align: left;
  }
  .range-goals {
    border-radius: 10px;
    padding: 10px;
    margin-top: 3rem;
    margin-bottom: 0;
  }
  .range-goals .text,
  .range-goals .text span {
    font-size: 13px;
  }
  .goals-content {
    margin-top: 0;
  }
  .goals-content span {
    font-size: 13px;
    margin-left: 0px;
  }
  .goals-content img {
    width: 16px;
  }

/*========================================
  Reuniões - Smartphone
==========================================*/
  .meeting-content .text,
  .meeting-content .text span {
    font-size: 18px;
    line-height: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

/*========================================
  Etapas - Smartphone
==========================================*/
  .content-step {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 45px;
  }
  .text-steps,
  .text-steps span {
    font-size: 13px;
    line-height: 16px;
  }
  .content-step .number {
    font-size: 65px;
  }
  .col-sm-steps {
    max-width: 265px !important;
    margin-top: 1rem !important;
  }

/*========================================
  Cérebro - Smartphone
==========================================*/
  .brain-hand {
    max-width: 260px;
  }
/*========================================
  Provedor Garantido
==========================================*/
  .grad-text {
    font-size: 18px;
    line-height: 24px;
  }
  .sm-brain-hand {
    position: absolute;
    width: 180px;
    right: 0;
  }
  .line {
    width: 115px;
  }

/*========================================
  Provedor Garantido - Smartphone
==========================================*/
  .content-guarantee {
    width: 245px;
    height: 220px;
    padding: 10px;
    margin-bottom: 3rem;
  }
  .content-guarantee .title {
    font-size: 19px;
  }
  .content-guarantee .icon-top {
    width: 30px;
    top: -12px;
  }
  .content-guarantee .text,
  .content-guarantee .text span {
    margin-top: 5px;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 3rem;
  }
  .d-guarante {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
  }

  .grad-text-2 {
    font-size: 20px;
    line-height: 18px;
  }
  .row-embracing {
    min-height: 460px;
  }     
  .bg-brazil:before {
    background-size: 1300px;
  }

/*========================================
  Dúvidas frequentes - Smartphone
==========================================*/
  .accordion-faqs {
    margin-top: 0;
  }
  .accordion-faqs .collapse-item {
    font-size: 15px;
  }

/*========================================
  Logo - Smartphone
==========================================*/
  .logo-start {
    width: 150px;
  }
  .logo-footer {
    width: 90px;
  }

/*========================================
  Ponto de luz - Smartphone
==========================================*/
  .sm-light-spot-1 {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    left: -60px;
    border-radius: 50%;
    box-shadow: 0px 0px 150px 100px var(--color_pri);
  }
  .sm-light-spot-2 {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    right: 50px;
    border-radius: 50%;
    box-shadow: 0px 0px 150px 50px var(--color_pri);
  }
  .sm-light-spot-3 {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    left: 0;
    border-radius: 50%;
    box-shadow: 0px 0px 150px 90px var(--color_pri);
  }
  .light-spot-3 {
    right: 0;
    box-shadow: 0px 0px 200px 60px var(--color_pri);
  }
  .light-spot-5 {
    left: 0;
    box-shadow: 0px 0px 200px 60px var(--color_pri);
  }
  
  .bg-cobr {
    background-position: top;
    background-size: 330px;
    background-repeat: no-repeat;
  }
}