@import url(header.css);
@import url(homepage.css);
@import url(sobre-o-canal.css);
@import url(programas.css);
@import url(voce-reporter.css);
@import url(contato.css);
@import url(footer.css);
@import url(grade-markket.css);
@import url(hero.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

i {
  color: #fff;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
}

/* DEFAULT SETTINGS */

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: white;
}

button {
  cursor: pointer;
}

span {
  font-weight: bold;
}

body {
  background-color: #fafafa;
  font-family: "Barlow", sans-serif;
}

/*SCROLLBAR*/
body::-webkit-scrollbar {
  width: 8px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: transparent;
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #ff5c00;
  /* color of the scroll thumb */
  border-radius: 0;
  /* roundness of the scroll thumb */
  border: NONE;
  /* creates padding around scroll thumb */
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

.carousel-dots {
  position: absolute;
  bottom: 10%;
  width: auto;
  z-index: 3;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
  padding: 4px;
  border-radius: 20px;
}

.dot {
  width: 24px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  position: relative;
  background-color: #0000004a;
}

.dot.active {
  background-color: #ff6900;
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff7828;
  box-shadow: 1px 2px 2px 1px #0000006b;
  transition: 0.2s ease;
  cursor: pointer;
}

.scroll-to-top:hover {
  width: 50px;
  height: 50px;
  box-shadow: 1px 2px 4px 2px #0000006b;
}

.scroll-to-top svg {
  pointer-events: none;
  color: #fff;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 540px) {
  .col-1 {
    width: 100%;
  }

  .col-2 {
    width: 100%;
  }

  .col-3 {
    width: 100%;
  }

  .col-4 {
    width: 100%;
  }

  .col-5 {
    width: 100%;
  }

  .col-6 {
    width: 100%;
  }

  .col-7 {
    width: 100%;
  }

  .col-8 {
    width: 100%;
  }

  .col-9 {
    width: 100%;
  }

  .col-10 {
    width: 100%;
  }

  .col-11 {
    width: 100%;
  }

  .col-12 {
    width: 100%;
  }

  .scroll-to-top {
   display: none;
  }
}
