header {
  position: relative;
}
header ::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  border-color: #ff2c00;
}
header .toggle-navbar svg {
  fill: #fecf00;
  cursor: pointer;
  transition: 0.5s;
  max-height: 0;
  width: 100%;
  height: auto;
  max-width: fit-content;
}
header .toggle-navbar svg.active {
  max-height: 60px;
  fill: #ff2c00;
}
header .toggle-navbar svg#hamburguer {
  fill: #fecf00 !important;
}
header nav ul li {
  color: white;
}
header nav ul li a {
  font-size: 1rem;
  border-bottom: 0;
  transition: 0.5s;
  position: relative;
}
@media (min-width: 768px) {
  header nav ul li a:hover {
    color: #fecf00;
    transition: 0.5s;
    animation: jump 0.71s;
  }
  header nav ul li a:hover::after {
    transition: 0.5s;
    content: "";
    position: absolute;
    bottom: -49px;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 5px 5px 0 0;
    background-color: #fecf00;
  }
}

@media (max-width: 768px) {
  .container-cards {
    margin: 0 1rem;
  }
}
.container-cards svg {
  max-height: 30px;
  fill: #ff2c00;
  width: 30px;
  height: auto;
  max-width: fit-content;
}
.container-cards .card-bg {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.container-cards .card-bg svg {
  max-height: 0;
  margin-top: 300px;
  transition: 0.5s;
  fill: #fecf00;
}
.container-cards .card-info {
  color: #fecf00;
  transition: 0.5s;
}
.container-cards .card-info .title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container-cards .card-info .svg {
  background-color: #fecf00;
}
.container-cards .card-info .svg svg {
  fill: #4e4b48;
  transition: 0.5s;
}
.container-cards .card:hover .card-bg {
  position: relative;
}
.container-cards .card:hover .card-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.container-cards .card:hover .card-bg svg {
  max-height: 90px;
  margin-top: 0;
}
.container-cards .card:hover .card-info {
  color: #ff2c00;
  margin-left: 10px;
}
.container-cards .card:hover .card-info .svg {
  background-color: #4e4b48;
}
.container-cards .card:hover .card-info .svg svg {
  fill: #fecf00;
  animation: jump 0.5s;
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  #providers > div {
    margin: 0 1rem;
  }
}
#providers svg {
  max-height: 40px;
  fill: #4e4b48;
  width: 30px;
  height: auto;
  max-width: fit-content;
  fill: #ff2c00;
}
#providers .owl-carousel > div img {
  min-width: 217px;
}
@media (max-width: 1024px) {
  #providers .owl-carousel > div img {
    min-width: 170px;
  }
}
@media (max-width: 768px) {
  #providers .owl-carousel > div img {
    max-height: 90px;
  }
}

#categories .category .rounded-full {
  border: 4px solid #4e4b48;
  background-color: black;
}
#categories .category .title {
  font-size: 0.8rem;
  color: #fecf00;
  font-family: "Gotham Black";
}
@media (max-width: 425px) {
  #categories .category .title {
    font-size: 0.6rem;
  }
}
#categories .category svg {
  fill: #4e4b48;
  transition: 0.5s;
  width: 100%;
  height: auto;
  max-width: fit-content;
}
#categories .category:hover .rounded-full {
  border: 4px solid #fecf00;
  background-color: #fecf00;
}
#categories .category:hover svg {
  fill: black;
  animation: jump 0.5s;
}
#categories .category:hover .title {
  color: #ff2c00;
  transition: 0.5s;
}

#pagamentos {
  padding: 25px;
  border-bottom: 2px solid #4e4b48;
}
#pagamentos h4 {
  font-size: 0.8rem;
  color: #fecf00;
}
#pagamentos img {
  min-width: 70px;
}

#footer {
  background-color: black;
  padding: 20px;
}
#footer .footer-navegacao a {
  font-size: 0.8rem;
}
#footer .footer-content {
  padding-top: 20px;
  border-top: 2px solid #4e4b48;
}
#footer .footer-copy {
  color: #4e4b48;
}
@media (max-width: 425px) {
  #footer .footer-copy {
    font-size: 0.6rem;
  }
}

@font-face {
  font-family: "Gotham Black";
  src: url("../fonts/gotham/Gotham-Bold.otf");
}
@font-face {
  font-family: "Gotham Medium";
  src: url("../fonts/gotham/Gotham-Medium.otf");
}
body {
  background-image: url("../images/background/bg_desktop.jpg");
  background-size: 100vw 100vh;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  body {
    margin: 30px 0 0 0;
    background-image: url("../images/background/bg_mobile.jpg");
  }
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #fecf00;
  font-family: "Gotham Black";
}

.gotham-medium {
  font-family: "Gotham Medium";
}

.gotham-black {
  font-family: "Gotham Black";
}

/*# sourceMappingURL=index.css.map */
