/* Use the valid local WOFF asset; this Font Awesome build has no solid WOFF2. */
@font-face {
  font-family: "RunningFlix Font Awesome Solid";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("fontawesome/webfonts/fa-solid-900.woff") format("woff");
}

.fa,
.fas {
  font-family: "RunningFlix Font Awesome Solid";
  font-weight: 900;
}

body {

  color: #000000;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  background-color: #FFFFFF;
}

.theme-dark {
  color: #FFFFFF;
  background-color: #000000;
}

p {
  font-size: 18px !important;
}

.display-table {
  display: table !important;
}

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

/* Rounded buttons globally (Bootstrap) */
.btn {
  border-radius: 999px;
  /* bem arredondado (pill) */
}

/* Google member sign-in */
.google-login-group {
  margin-top: 41px;
  text-align: center;
}

.google-signin-button {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #747775;
  border-radius: 4px;
  box-shadow: none;
  color: #1f1f1f;
  display: inline-flex;
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.google-signin-button:hover,
.google-signin-button:focus {
  background-color: #f8faff;
  border-color: #5f6368;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3);
  color: #1f1f1f;
  text-decoration: none;
}

.google-signin-button:focus-visible {
  outline: 3px solid rgba(66, 133, 244, 0.35);
  outline-offset: 2px;
}

.google-signin-button__icon {
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
}

.bck-blur {
  --border-bottom-width: 1px;
  --border-color: #00e59a1a;
  --border-left-width: 1px;
  --border-right-width: 1px;
  --border-style: solid;
  --border-top-width: 1px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  will-change: var(--framer-will-change-effect-override, transform);
  background-color: #fb30300d;
  border-radius: 8px;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 4px;
  width: min-content;
  height: min-content;
  padding: 12px;
}


/* SLIDER */
#slider-fade {
  z-index: 777;
  background-color: #000000;
}

/* #slider-fade .slider-content { } */
#slider-fade .carousel-control-next,
#slider-fade .carousel-control-prev {
  width: 64px !important;
}

#slider-fade h1,
#TopPageVideo h1 {
  /*line-height: 89px;*/
  letter-spacing: -2px !important;
  color: #FFFFFF;
  font-size: 3.0em !important;
  font-weight: 900 !important;
  word-break: keep-all;
}

#slider-fade p {
  color: #d0d8db;
  font-size: 25px !important;
  line-height: 30px !important;
  margin-top: 34px;
  padding-left: 21px;
  border-left: 5px solid #d0d8db;
}

#slider-fade .carousel-indicators {
  margin-bottom: 34px;
}

#slider-fade .carousel-indicators [data-bs-target] {
  width: 13px;
  height: 13px;
  border: 3px solid #FFFFFF;
  background: none !important;
  border-radius: 3px;
}

/* SLIDER */

#TopPageVideo-typed-area {
  width: 380px;
}

/* RESPONSIVE */
@media only screen and (max-width: 479px) {


  #TopPageVideo-typed-area {
    width: 300px;
  }

  #slider-fade h1,
  #TopPageVideo h1 {
    font-size: 2.4em !important;
    line-height: 38px !important;
    letter-spacing: -2px;
  }

  /* #slider-fade img { display:none!important; } */
}

/* RESPONSIVE */

/* ===== HERO wrapper (controls video area) ===== */
.TopPageVideo-hero {
  position: relative;
  /* IMPORTANT */
  overflow: hidden;
  /* IMPORTANT */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ===== Video background (now NOT fixed) ===== */
.TopPageVideo-video-bg {
  position: absolute;
  /* IMPORTANT */
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.TopPageVideo-video-bg__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.TopPageVideo-video-bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .13);
}

/* Content above video */
.TopPageVideo-hero .container {
  position: relative;
  z-index: 2;
}

.TopPageVideo-highlight {
  display: inline-block;
  background: var(--main-color) !important;
  color: #000;
  padding: .08em .22em;
  line-height: 1.05;
  border-radius: 2px;
}

.TopPageVideo-scroll-down {
  margin-top: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.TopPageVideo-chevron {
  width: 22px;
  height: 22px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  animation: rfScrollBlink 1.4s infinite;
}

.TopPageVideo-chevron.TopPageVideo-delay {
  animation-delay: .25s;
}

@keyframes rfScrollBlink {
  0% {
    opacity: 0;
    transform: translateY(-6px) rotate(45deg);
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 1;
    transform: translateY(8px) rotate(45deg);
  }

  100% {
    opacity: 0;
    transform: translateY(18px) rotate(45deg);
  }
}

.content-background-radial {
  background:
    radial-gradient(circle at top left, rgba(255, 45, 65, 0.22), transparent 38%),
    radial-gradient(circle at bottom right, rgba(80, 70, 120, 0.22), transparent 42%),
    linear-gradient(135deg, #32131c 0%, #1b1722 45%, #111116 100%);
  border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 21px;
}



/* FAQ */
.accordion-item {
  border: none !important;
  outline: none;
  background-color: #000000;
}

.accordion-button {
  font-size: 21px !important;
  color: #CCCCCC !important;
  font-weight: 700 !important;
  background-color: #000000 !important;
  border: 5px solid #CCCCCC !important;
  margin-bottom: 13px;
  outline: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--main-color) !important;
  color: #FFFFFF !important;
  outline: none;
  border: none;
}

.accordion-body {
  font-size: 21px !important;
  color: #FFFFFF;
  background-color: #000000 !important;
}

/* FAQ */


/* colors */
.color-black {
  color: #000000 !important;
}

.color-white {
  color: #FFFFFF !important;
}

.color-silver {
  color: #CCC !important;
}

.color-blue {
  color: #0A92C6 !important;
}

.color-dark-grey-blue {
  color: #353A4D !important;
}

.color-jungle-green {
  color: #1CA994 !important;
}

.color-red {
  color: var(--main-color) !important;
}

.color-yellow {
  color: #FFCC03
}

/* bg-colors */
.bg-silver {
  background-color: #202020 !important;
}

.bg-silver-light {
  background-color: #8C8C8C !important;
}

.bg-black {
  background-color: #000000;
}

.bg-yellow {
  background-color: #FFCC03;
}

.bg-blue {
  background-color: #0A92C8;
}

.bg-red {
  background-color: var(--main-color) !important;
}

/* navbarHeader */
.logo img {
  max-width: 233px !important;
  padding-top: 13px;
  padding-bottom: 10px;
}

.navbar-light .navbar-toggler {
  color: #FFFFFF !important;
  border: 4px solid #FFFFFF !important;
}

#top-header {
  border-top: 5px var(--main-color) solid;
}

.top-header-background {
  background-color: rgba(0, 0, 0, 0.9);
}

#navbarHeader ul li a {
  font-size: 18.5px;
  font-weight: 700;
  color: #FFFFFF;
  border-top: 3px solid transparent;
  text-transform: uppercase;
  margin-right: 8px;
}

#navbarHeader .nav-link {
  color: #D0D8DB;
  font-weight: 700 !important;
  font-size: 18.5px;
}

#navbarHeader ul li a:hover {
  border-top: 3px solid #94A7AE;
  color: #FFFFFF;
}

#navbarHeader .active {
  border-top: 3px solid #FFF;
  background-color: transparent !important;
}

#navbarHeader ul li .dropdown-item {
  border-top: 3px solid transparent !important;
}

#navbarHeader .dropdown-item {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

#navbarHeader .dropdown-menu {
  background-color: #000000;
  border: 5px solid var(--main-color) !important;
}

#navbarHeader .dropdown-item:focus,
#navbarHeader .dropdown-item:hover {
  color: #000000 !important;
  background-color: var(--main-color) !important;
}

/* Header default */

#navbarHeader .social-media-icons ul li a {
  font-size: 26px;
}

#TopPageDB {
  background-image: url('../img/top-page.jpg');
  background-color: #000000;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer-default {
  background-color: #111111;
  color: #FFFFFF;
}

.newsletter-preference-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 25px;
  border: 1px solid #333;
  border-radius: 10px;
}

.newsletter-preference-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: #252525;
  border-radius: 50%;
  font-size: 24px;
}

.newsletter-preference-copy h2 { margin: 0 0 8px; }

.newsletter-email-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 13px;
}

.newsletter-email-status span {
  font-size: 12px;
  font-weight: 600;
}

.newsletter-email-status span i {
  margin-right: 4px;
}

.newsletter-preference-control {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.newsletter-preference-control .form-check-input {
  width: 48px;
  height: 25px;
}

.newsletter-preference-control .badge i {
  margin-right: 5px;
}

.newsletter-preference-control .form-check-label {
  margin-left: 5px;
}

@media (max-width: 767.98px) {
  .newsletter-preference-panel { grid-template-columns: 1fr; }
  .newsletter-preference-control { justify-items: start; }
}

#footer-default .footer-menu a {
  color: #FFFFFF;
}

#footer-default .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-default .footer-menu ul li {
  padding-bottom: 8px;
}

#footer-default .footer-menu ul li a {
  text-decoration: none;
  font-size: 17px;
}

#footer-default .footer-menu ul li a:hover {
  color: #CCCCCC;
}

#footer-default .footer-menu ul li ::before {
  font-family: 'Font Awesome 5 Pro';
  content: '\f054';
  font-size: 13px !important;
  font-weight: bold !important;
  margin-right: 11px !important;
}

#footer-default .footer-contact a {
  color: #FFFFFF;
}

#footer-default .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-default .footer-contact ul li a {
  text-decoration: none;
  font-size: 18px;
}

#footer-default .footer-copyright {
  padding-top: 21px;
  color: #FFFFFF !important;
  font-size: 16px;
  text-align: center !important;
  border-top: 0.5px solid rgba(136, 206, 138, 0.2);
}

#footer-default .footer-copyright a {
  color: #FFFFFF;
}

#footer-default .social-media-icons ul li a {
  font-size: 34px;
  color: #000000;
  background-color: var(--main-color);
  padding-left: 21px;
  padding-right: 21px;
  border-radius: 4px;
}

#footer-default .social-media-icons ul li a:hover {
  color: #FFFFFF;
}

/* Footer default */

/* Buttons */
.btn-rounded {
  border-radius: 100px !important;
  padding-left: 21px !important;
  padding-right: 21px !important;
}

.btn-secondary {
  color: #FFFFFF;
  background-color: #8C8C8C;
  border-color: #8C8C8C;
}

.btn-secondary:hover {
  color: #FFFFFF;
  background-color: #333333;
  border-color: #333333;
}

.btn-default-out-white {
  background-color: var(--main-color) !important;
  border: 3px solid var(--main-color);
  color: #FFFFFF !important;
}

.btn-default-out-white:hover {
  background-color: transparent !important;
  border: 3px solid #FFFFFF !important;
  color: #FFFFFF !important;
}

.btn-secondary-out-white {
  background-color: #8C8C8C !important;
  border: 3px solid #8C8C8C;
  color: #FFFFFF !important;
}

.btn-secondary-out-white:hover {
  background-color: transparent !important;
  border: 3px solid #FFFFFF !important;
  color: #FFFFFF !important;
}

.btn-default-dark-out {
  background-color: #000000 !important;
  border: 3px solid #000000;
  color: #FFFFFF !important;
}

.btn-default-dark-out:hover {
  background-color: transparent !important;
  border: 3px solid #353A4D !important;
  color: #353A4D !important;
}

.btn-link {
  text-decoration: none !important;
  color: #19A893 !important;
}

.btn-bluedark {
  text-decoration: none !important;
  color: #353A4D !important;
}


/* Btn silver */
.btn-silver {
  background-color: #CCCCCC;
  color: #000000;
}

.btn-silver:hover {
  background-color: #FFFFFF;
  color: #333333;
}

/* Btn outline white */
.btn-white-out {
  background-color: transparent !important;
  border: 3px solid #FFFFFF !important;
  color: #FFFFFF !important;
}

.btn-white-out:hover {
  background-color: transparent !important;
  border: 3px solid #D6D6D6 !important;
  color: #D6D6D6 !important;
}


/* Btn purple --> outline white */
.btn-purple-out-white {
  background-color: #CA2FA1 !important;
  border: 3px solid #CA2FA1;
  color: #FFF !important;
}

.btn-purple-out-white:hover {
  background-color: transparent !important;
  border: 3px solid #FFFFFF;
  color: #FFFFFF !important;
}

/* Btn yellow --> outline white */
.btn-yellow-out-white {
  background-color: #FFCC03 !important;
  border: 3px solid #FFCC03;
  color: #353A4D !important;
}

.btn-yellow-out-white:hover {
  background-color: transparent !important;
  border: 3px solid #FFFFFF;
  color: #FFFFFF !important;
}

/* Btn blue --> outline white */
.btn-blue-out-white {
  background-color: #0A92C8 !important;
  border: 3px solid #0A92C8;
  color: #FFFFFF !important;
}

.btn-blue-out-white:hover {
  background-color: transparent !important;
  border: 3px solid #FFFFFF;
  color: #FFFFFF !important;
}

/* Btn green --> outline white */
.btn-green-out-white {
  background-color: #1DD75F !important;
  border: 3px solid #1DD75F;
  color: #FFFFFF !important;
}

.btn-green-out-white:hover {
  background-color: transparent !important;
  border: 3px solid #FFFFFF;
  color: #FFFFFF !important;
}

/* Social media - icons */
.social-media-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media-icons ul li {
  float: left;
  margin: 5px;
}


/* Helpers */
.img-responsive {
  width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 100%;
}

.img-custom-border {
  border-radius: 21px;
}

.alert-cookies {
  opacity: 0.9;
  width: 98%;
  margin: 1%;
  position: fixed;
  bottom: 0;
  z-index: 999999;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  padding: 34px;
  padding-bottom: 89px;
}

.alert-cookies a {
  color: #FFFFFF !important;
}

.badge-black {
  background-color: #333333 !important;
  color: #666666 !important;
}

.badge-red {
  background-color: var(--main-color) !important;
  color: #e4dddd !important;
}

.shortcut {
  background-color: var(--main-color);
  color: #000000;
  width: 100% !important;
  padding: 21px;
  font-size: 55px;
  text-align: center;
  margin-bottom: 21px;
  border-radius: 4px;
}

.theme-dark .alert-default {
  color: #666666;
  background-color: #111111;
  border: 2px solid;
  border-color: #666666;
}

.theme-dark .alert-white {
  color: #FFFFFF;
  background-color: #111111;
  border: 2px solid;
  border-color: #FFFFFF;
}

.theme-dark .alert-info {
  color: #0B57D0;
  background-color: #111111;
  border: 2px solid;
  border-color: #0B57D0;
}

.theme-dark .alert-success {
  color: #0aa770;
  background-color: #111111;
  border: 2px solid;
  border-color: #0aa770;
}

.theme-dark .alert-warning {
  color: #FFBF00;
  background-color: #111111;
  border: 2px solid;
  border-color: #FFBF00;
}

.theme-dark .alert-danger {
  color: #FF0000;
  background-color: #111111;
  border: 2px solid;
  border-color: #FF0000;
}

/* Fibonacci font-size */
.fib-font-2 {
  font-size: 2px !important;
}

.fib-font-3 {
  font-size: 3px !important;
}

.fib-font-5 {
  font-size: 5px !important;
}

.fib-font-8 {
  font-size: 8px !important;
}

.fib-font-13 {
  font-size: 13px !important;
}

.fib-font-21 {
  font-size: 21px !important;
}

.fib-font-34 {
  font-size: 34px !important;
}

.fib-font-55 {
  font-size: 55px !important;
}

.fib-font-89 {
  font-size: 89px !important;
}

.fib-font-144 {
  font-size: 144px !important;
}

.fib-font-233 {
  font-size: 233px !important;
}

.fib-font-377 {
  font-size: 377px !important;
}

.fib-font-610 {
  font-size: 610px !important;
}

/* Fibonacci line-height */
.fib-line-height-2 {
  line-height: 2px !important;
}

.fib-line-height-3 {
  line-height: 3px !important;
}

.fib-line-height-5 {
  line-height: 5px !important;
}

.fib-line-height-8 {
  line-height: 8px !important;
}

.fib-line-height-13 {
  line-height: 13px !important;
}

.fib-line-height-21 {
  line-height: 21px !important;
}

.fib-line-height-34 {
  line-height: 34px !important;
}

.fib-line-height-55 {
  line-height: 55px !important;
}

.fib-line-height-89 {
  line-height: 89px !important;
}

.fib-line-height-144 {
  line-height: 144px !important;
}

.fib-line-height-233 {
  line-height: 233px !important;
}

.fib-line-height-377 {
  line-height: 377px !important;
}

.fib-line-height-610 {
  line-height: 610px !important;
}

/* Fibonacci margin-top */
.fib-m-t-2 {
  margin-top: 2px !important;
}

.fib-m-t-3 {
  margin-top: 3px !important;
}

.fib-m-t-5 {
  margin-top: 5px !important;
}

.fib-m-t-8 {
  margin-top: 8px !important;
}

.fib-m-t-13 {
  margin-top: 13px !important;
}

.fib-m-t-21 {
  margin-top: 21px !important;
}

.fib-m-t-34 {
  margin-top: 34px !important;
}

.fib-m-t-55 {
  margin-top: 55px !important;
}

.fib-m-t-89 {
  margin-top: 89px !important;
}

.fib-m-t-144 {
  margin-top: 144px !important;
}

.fib-m-t-233 {
  margin-top: 233px !important;
}

.fib-m-t-377 {
  margin-top: 377px !important;
}

.fib-m-t-610 {
  margin-top: 610px !important;
}

/* Fibonacci margin-bottom */
.fib-m-b-2 {
  margin-bottom: 2px !important;
}

.fib-m-b-3 {
  margin-bottom: 3px !important;
}

.fib-m-b-5 {
  margin-bottom: 5px !important;
}

.fib-m-b-8 {
  margin-bottom: 8px !important;
}

.fib-m-b-13 {
  margin-bottom: 13px !important;
}

.fib-m-b-21 {
  margin-bottom: 21px !important;
}

.fib-m-b-34 {
  margin-bottom: 34px !important;
}

.fib-m-b-55 {
  margin-bottom: 55px !important;
}

.fib-m-b-89 {
  margin-bottom: 89px !important;
}

.fib-m-b-144 {
  margin-bottom: 144px !important;
}

.fib-m-b-233 {
  margin-bottom: 233px !important;
}

.fib-m-b-377 {
  margin-bottom: 377px !important;
}

.fib-m-b-610 {
  margin-bottom: 610px !important;
}

/* Fibonacci padding-top */
.fib-p-t-2 {
  padding-top: 2px !important;
}

.fib-p-t-3 {
  padding-top: 3px !important;
}

.fib-p-t-5 {
  padding-top: 5px !important;
}

.fib-p-t-8 {
  padding-top: 8px !important;
}

.fib-p-t-13 {
  padding-top: 13px !important;
}

.fib-p-t-21 {
  padding-top: 21px !important;
}

.fib-p-t-34 {
  padding-top: 34px !important;
}

.fib-p-t-55 {
  padding-top: 55px !important;
}

.fib-p-t-89 {
  padding-top: 89px !important;
}

.fib-p-t-144 {
  padding-top: 144px !important;
}

.fib-p-t-233 {
  padding-top: 233px !important;
}

.fib-p-t-377 {
  padding-top: 377px !important;
}

.fib-p-t-610 {
  padding-top: 610px !important;
}

/* Fibonacci padding-bottom */
.fib-p-b-2 {
  padding-bottom: 2px !important;
}

.fib-p-b-3 {
  padding-bottom: 3px !important;
}

.fib-p-b-5 {
  padding-bottom: 5px !important;
}

.fib-p-b-8 {
  padding-bottom: 8px !important;
}

.fib-p-b-13 {
  padding-bottom: 13px !important;
}

.fib-p-b-21 {
  padding-bottom: 21px !important;
}

.fib-p-b-34 {
  padding-bottom: 34px !important;
}

.fib-p-b-55 {
  padding-bottom: 55px !important;
}

.fib-p-b-89 {
  padding-bottom: 89px !important;
}

.fib-p-b-144 {
  padding-bottom: 144px !important;
}

.fib-p-b-233 {
  padding-bottom: 233px !important;
}

.fib-p-b-377 {
  padding-bottom: 377px !important;
}

.fib-p-b-610 {
  padding-bottom: 610px !important;
}

/* Fibonacci margin-left */
.fib-m-l-2 {
  margin-left: 2px !important;
}

.fib-m-l-3 {
  margin-left: 3px !important;
}

.fib-m-l-5 {
  margin-left: 5px !important;
}

.fib-m-l-8 {
  margin-left: 8px !important;
}

.fib-m-l-13 {
  margin-left: 13px !important;
}

.fib-m-l-21 {
  margin-left: 21px !important;
}

.fib-m-l-34 {
  margin-left: 34px !important;
}

.fib-m-l-55 {
  margin-left: 55px !important;
}

.fib-m-l-89 {
  margin-left: 89px !important;
}

.fib-m-l-144 {
  margin-left: 144px !important;
}

.fib-m-l-233 {
  margin-left: 233px !important;
}

.fib-m-l-377 {
  margin-left: 377px !important;
}

.fib-m-l-610 {
  margin-left: 610px !important;
}

/* Fibonacci margin-right */
.fib-m-r-2 {
  margin-right: 2px !important;
}

.fib-m-r-3 {
  margin-right: 3px !important;
}

.fib-m-r-5 {
  margin-right: 5px !important;
}

.fib-m-r-8 {
  margin-right: 8px !important;
}

.fib-m-r-13 {
  margin-right: 13px !important;
}

.fib-m-r-21 {
  margin-right: 21px !important;
}

.fib-m-r-34 {
  margin-right: 34px !important;
}

.fib-m-r-55 {
  margin-right: 55px !important;
}

.fib-m-r-89 {
  margin-right: 89px !important;
}

.fib-m-r-144 {
  margin-right: 144px !important;
}

.fib-m-r-233 {
  margin-right: 233px !important;
}

.fib-m-r-377 {
  margin-right: 377px !important;
}

.fib-m-r-610 {
  margin-right: 610px !important;
}

/* Fibonacci padding-left */
.fib-p-l-2 {
  padding-left: 2px !important;
}

.fib-p-l-3 {
  padding-left: 3px !important;
}

.fib-p-l-5 {
  padding-left: 5px !important;
}

.fib-p-l-8 {
  padding-left: 8px !important;
}

.fib-p-l-13 {
  padding-left: 13px !important;
}

.fib-p-l-21 {
  padding-left: 21px !important;
}

.fib-p-l-34 {
  padding-left: 34px !important;
}

.fib-p-l-55 {
  padding-left: 55px !important;
}

.fib-p-l-89 {
  padding-left: 89px !important;
}

.fib-p-l-144 {
  padding-left: 144px !important;
}

.fib-p-l-233 {
  padding-left: 233px !important;
}

.fib-p-l-377 {
  padding-left: 377px !important;
}

.fib-p-l-610 {
  padding-left: 610px !important;
}

/* Fibonacci padding-right */
.fib-p-r-2 {
  padding-right: 2px !important;
}

.fib-p-r-3 {
  padding-right: 3px !important;
}

.fib-p-r-5 {
  padding-right: 5px !important;
}

.fib-p-r-8 {
  padding-right: 8px !important;
}

.fib-p-r-13 {
  padding-right: 13px !important;
}

.fib-p-r-21 {
  padding-right: 21px !important;
}

.fib-p-r-34 {
  padding-right: 34px !important;
}

.fib-p-r-55 {
  padding-right: 55px !important;
}

.fib-p-r-89 {
  padding-right: 89px !important;
}

.fib-p-r-144 {
  padding-right: 144px !important;
}

.fib-p-r-233 {
  padding-right: 233px !important;
}

.fib-p-r-377 {
  padding-right: 377px !important;
}

.fib-p-r-610 {
  padding-right: 610px !important;
}

/* Font weight */
.font-weight-normal {
  font-weight: normal !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-weight-light {
  font-weight: lighter !important;
  font-weight: 100 !important;
}

.align-center {
  float: none !important;
  margin: 0 auto !important;
}

.display-table {
  display: table !important;
}

/* Text align */
.text-align-justify {
  text-align: justify !important;
}

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

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

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

/* Text-decoration */
.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}






.theme-dark .breadcrumb {
  background-color: #111111;
}

.breadcrumb {
  padding: 8px;
  padding-left: 21px;
  border-radius: 5px;
  background-color: #F1F3F4;
}

.breadcrumb a {
  color: #333e48;
  display: inline-block;
}

.breadcrumb a:focus,
.breadcrumb a:hover {
  color: #333e48;
  text-decoration: none;
}

.breadcrumb span.delimiter {
  margin: 0 1.429em;
}

.breadcrumb span.delimiter+a {
  padding: 0.465em 0.929em;
  background-color: #f5f5f5;
  border-radius: 0.357em;
}

.breadcrumb span.delimiter+a:focus,
.breadcrumb span.delimiter+a:hover {
  background-color: #e8e8e8;
}






#paginator a {
  text-decoration: none !important;
}

.pagination {
  display: block;
  border-top: 1px solid #eaeaea;
  padding-top: 1.5625rem;
  text-align: center;
  border-radius: 0;
  clear: both;
}

.pagination ul.page-numbers {
  display: inline-block;
}

.pagination ul.page-numbers>li a .meta-nav,
.pagination ul.page-numbers>li span .meta-nav {
  display: none;
}

#paginator ul.page-numbers,
.pagination ul.page-numbers {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

#paginator ul.page-numbers::after,
.pagination ul.page-numbers::after {
  content: "";
  display: table;
  clear: both;
}

#paginator ul.page-numbers>li,
.pagination ul.page-numbers>li {
  float: left;
  margin-right: 0.286em;
}

#paginator ul.page-numbers>li a,
#paginator ul.page-numbers>li span,
.pagination ul.page-numbers>li a,
.pagination ul.page-numbers>li span {
  color: #7e7e7e;
  display: block;
  padding: 0.643em 1.429em;
  border: 1px solid #e3e3e3;
  border-radius: 1.143em;
}

#paginator ul.page-numbers>li a:focus,
#paginator ul.page-numbers>li a:hover,
#paginator ul.page-numbers>li span:focus,
#paginator ul.page-numbers>li span:hover,
.pagination ul.page-numbers>li a:focus,
.pagination ul.page-numbers>li a:hover,
.pagination ul.page-numbers>li span:focus,
.pagination ul.page-numbers>li span:hover {
  text-decoration: none;
}

#paginator ul.page-numbers>li a.current,
#paginator ul.page-numbers>li span.current,
.pagination ul.page-numbers>li a.current,
.pagination ul.page-numbers>li span.current {
  color: #262626;
  font-weight: bold;
  border: none;
}

#paginator ul.page-numbers>li a.dots,
#paginator ul.page-numbers>li span.dots,
.pagination ul.page-numbers>li a.dots,
.pagination ul.page-numbers>li span.dots {
  border: none;
  padding: 0.642em;
}

#paginator ul.page-numbers>li a:hover,
.pagination ul.page-numbers>li a:hover {
  background-color: #e3e3e3;
}

#paginator ul.page-numbers>li:last-child,
.pagination ul.page-numbers>li:last-child {
  margin-right: 0;
}

/* NAV TABS theme-dark */
.theme-dark .nav-tabs {
  border-bottom: 1px solid #444444;
}

.theme-dark .nav-tabs .nav-item.show .nav-link,
.theme-dark .nav-tabs .nav-link.active,
.theme-dark .nav-tabs .nav-link:hover {
  color: #D6D6D6;
  background-color: #111111;
  border-color: #333333 #333333 #444444;
}

.theme-dark .nav-tabs .nav-item.show .nav-link,
.theme-dark .nav-tabs .nav-link {
  color: #999999;
}

.theme-dark .nav-tabs .nav-item.show .nav-link:hover,
.theme-dark .nav-tabs .nav-link:hover {
  color: #999999;
}

/* NAV TABS */



/* FORM DEFAULT */
.form-default .form-control {
  border: 3px solid #000000;
  outline: none;
  border-radius: 2;
  box-shadow: none;
  background-color: #FDFDFD;
  color: #555555;
}

.form-default .form-control:focus {
  border-radius: 2;
  box-shadow: none;
  border-color: #777777;
  color: #555555;
  background-color: #F5F5F5;
}

.form-control[disabled] .form-control {
  opacity: 1;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  opacity: 1;
}


.theme-dark .form-default .form-control,
.form-default .form-select {
  border: 3px solid var(--main-color);
  outline: none;
  border-radius: 2;
  box-shadow: none;
  background-color: #111111 !important;
  color: #CCCCCC;
}

.theme-dark .form-default .form-control:focus,
.theme-dark .form-default .form-select:focus {
  border-radius: 2;
  box-shadow: none;
  border-color: #777777;
  color: #FFFFFF;
  background-color: #000000;
}

.theme-dark .form-control[disabled] .form-control {
  opacity: 1;
}

.theme-dark .form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  opacity: 1;
}

/* FORM DEFAULT */

/* MODAL DARK */

.theme-dark .modal-backdrop {
  background-color: #000000 !important;
  opacity: 0.89 !important;
}

.theme-dark .modal-content {
  background-color: #202020;
  color: #999999;
}

.theme-dark .modal-header,
.theme-dark .modal-footer {
  border: 0;
  padding-bottom: 34px;
}

.theme-dark .modal-header .btn-close {
  color: #FFF !important;
}


::-webkit-scrollbar-thumb:vertical {
  background: var(--main-color);
  border: 3px solid var(--main-color);
}

::-webkit-scrollbar-thumb:horizontal {
  background-color: var(--main-color);
}

::-webkit-scrollbar {
  width: 14px;
  background: none;
  z-index: 999;
  position: absolute;
  display: table;
}



/* REVIEWS */
.rating-wrapper {

  align-self: left;
  border-radius: 5rem;
  display: inline-flex;
  direction: rtl !important;
  margin-left: auto;

  label {
    color: #595858;
    cursor: pointer;
    display: inline-flex;
    font-size: 21px;
    padding-right: 8px;
    transition: color 0.5s;
  }

  input {
    height: 100%;
    width: 100%;
  }

  input {
    display: none;
  }

  label:hover,
  label:hover~label,
  input:checked~label {
    color: #FFFFFF;
  }

  label:hover,
  label:hover~label,
  input:checked~label {
    color: #FFFFFF;
  }

}


.theme-dark .table-striped>tbody>tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: #c7c4c4;
  background-color: hsla(0, 0%, 95%, 0.14);
}

.theme-dark .table-striped>tbody>tr:nth-of-type(even) {
  color: #9f9c9c;
  background-color: hsla(0, 0%, 100%, 0.05);
}


/* PRELOADER OVERLAY */
.rf-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

/* Center wrapper (optional) */
.rf-preloader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon pulse */
.rf-preloader__icon {
  width: 96px;
  /* ajuste */
  height: auto;
  animation: rfPulse 1.1s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .45));
}

/* Pulse animation */
@keyframes rfPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.00);
    opacity: 1.00;
  }

  100% {
    transform: scale(0.92);
    opacity: 0.65;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rf-preloader__icon {
    animation: none;
  }
}

/* Hide helper class */
.rf-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  pointer-events: none;
}

.badge-thumb {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.7;
}


/* CAROUSEL */
.content-carousel-section {
  overflow: hidden;
  position: relative;
}

.content-carousel-section:before,
.content-carousel-section:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 8;
  width: 120px;
  height: 50%;
  pointer-events: none;
}

.content-carousel-section:before {
  left: 0;
  background: linear-gradient(to right, #222222 0%, rgba(34, 34, 34, 0) 100%);
}

.content-carousel-section:after {
  right: 0;
  background: linear-gradient(to left, #222222 0%, rgba(34, 34, 34, 0) 100%);
}

.content-carousel-wrapper {
  position: relative;
  width: 100%;
  cursor: grab;
}

.content-carousel-wrapper:active {
  cursor: grabbing;
}

.content-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 40%;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 42px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, background 0.2s ease;
  border-radius: 8px;
}

.content-carousel-arrow:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
}

.content-carousel-arrow-left {
  left: 21px;
}

.content-carousel-arrow-right {
  right: -34px;
}

.content-carousel {
  display: flex;
  gap: 21px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 21px;
  padding-left: 42px;
  padding-right: 42px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.content-carousel::-webkit-scrollbar {
  height: 5px;
}

.content-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.content-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 10px;
}

.content-carousel::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.55);
}

.content-carousel-item {
  flex: 0 0 calc((100vw - 210px) / 4);
  user-select: none;
}

.content-carousel-item figure {
  position: relative;
  display: inline-block;
  width: 100%;
}

.content-carousel-item a {
  display: block;
  position: relative;
}

.content-carousel-item img {
  pointer-events: none;
}

@media (max-width: 1199px) {
  .content-carousel-item {
    flex: 0 0 calc((100vw - 126px) / 3);
  }
}

@media (max-width: 991px) {
  .content-carousel {
    padding-left: 21px;
    padding-right: 21px;
  }

  .content-carousel-arrow-left {
    left: 21px;
  }

  .content-carousel-arrow-right {
    right: 21px;
  }

  .content-carousel-item {
    flex: 0 0 calc((100vw - 84px) / 2);
  }
}

@media (max-width: 575px) {
  .content-carousel {
    padding-left: 21px;
    padding-right: 21px;
  }

  .content-carousel-arrow {
    width: 34px;
    font-size: 34px;
    height: 34%;
  }

  .content-carousel-arrow-left {
    left: 13px;
  }

  .content-carousel-arrow-right {
    right: 13px;
  }

  .content-carousel-item {
    flex: 0 0 82vw;
  }

  .content-carousel-section:before,
  .content-carousel-section:after {
    width: 42px;
  }
}
