/* Copy Animation */


/* ================================
   HEADER / NAV PRINCIPAL
=================================*/
.mp-nav {
  padding: 10px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--menu);
  color: #43f2ff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all .4s ease-in-out;
}

.mp-nav.mp-scrolled {
  top: 0 !important;
  padding-top: .6rem !important;
  padding-bottom: .6rem !important;
  background: rgba(255, 255, 255, 0.8) !important;
}

/* ================================
   LINKS DESKTOP
=================================*/
.mp-link {
  position: relative;
  color: #30eee4;
  transition: color .3s ease;
}

.mp-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--p1, #ff004c);
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 4px;
  transition: width .3s ease;
}

.mp-link:hover::after,
.mp-link.mp-active::after {
  width: 100%;
}

.mp-link:hover {
  color: var(--titulo);
}

/* ================================
   BOTÕES DE AÇÃO
=================================*/
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #00000050;
  transition: all .35s ease;
}

.mp-btn:hover {
  background: var(--botao);
  color: #fff;
  border-color: var(--titulo);
  transform: translateY(-2px);
}

/* ================================
   CARRINHO
=================================*/
.mp-cart {
  position: relative;
}

.mp-cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--p1, #ff004c);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ================================
   MOBILE NAV
=================================*/
.mp-mobile-nav {
  background: var(--menu);
  border-right: 1px solid #ddd;
  transition: left .35s ease;
}

.mp-mobile-link {
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid #ececec;
  transition: all .25s ease;
}

.mp-mobile-link:hover {
  color: var(--titulo);
  transform: translateX(4px);
}

.mp-mobile-close:hover {
  color: var(--titulo);
  transform: rotate(90deg);
  transition: all .3s ease;
}

/* ================================
   MOBILE TOGGLE
=================================*/
.mp-toggle i {
  transition: all .3s ease;
}

.mp-toggle:hover i {
  color: var(--titulo);
}

.mp-menu-open .mp-toggle i {
  transform: rotate(90deg);
}



.base-color {
  color: hsl(var(--base)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 80%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

.responsive-filter-card {
  background-color: var(--box);
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: hsl(var(--base)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: 0.375rem !important;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  border-radius: 5px;
  height: 100%;
  padding-right: 12px;
}

@media (max-width: 1199px) {
  .bg-color-lg {
    background-color: hsl(var(--white) / 0.1);
  }
}

.payment-system-list .form--control:disabled,
.payment-system-list .form--control[readonly] {
  background-color: transparent !important;
}

.payment-system-list.is-scrollable {
  max-height: min(460px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}


/* Container principal */
.payment-system-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 5px;
}

/* Itens de pagamento */
.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.05));
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #f9f9f9;
}

/* Efeito hover */
.payment-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #2ecc71;
  background-color: #f0fff4;
}

/* Área de informações */
.payment-item__info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

/* Checkbox customizado */
.payment-item__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cccccc;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.payment-item__check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Texto do item */
.payment-item__name {
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
}

.payment-item__name strong {
  color: #27ae60;
  font-weight: 600;
}

/* Thumbnail/logo do método */
.payment-item__thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 5px;
  margin-left: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.payment-item__thumb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Input radio escondido */
.payment-item__radio {
  position: absolute;
  opacity: 0;
}

/* Estilo quando selecionado */
.payment-item:has(.payment-item__radio:checked) {
  border-color: #27ae60;
  background-color: #e8f8f0;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.3);
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border-color: #27ae60;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check::after {
  opacity: 1;
}

/* Efeito especial de brilho (opcional) */
.payment-item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  transition: all 0.7s ease;
  opacity: 0;
}

.payment-item:hover::after {
  opacity: 1;
  top: -100%;
  left: -100%;
}

/* Versão Mobile */
@media (max-width: 767px) {
  .payment-item {
    padding: 12px 15px;
    flex-wrap: wrap;
  }

  .payment-item__name {
    white-space: normal;
    overflow: visible;
    font-size: 14px;
    flex-basis: calc(100% - 60px);
  }

  .payment-item__thumb {
    display: none;
  }

  .payment-item__info {
    flex-basis: 100%;
    margin-bottom: 8px;
  }

  .payment-item__check {
    width: 16px;
    height: 16px;
  }

  .payment-item__check::after {
    width: 8px;
    height: 8px;
  }
}

/* Botão "Mostrar mais opções" */
.more-gateway-option {
  background: #f1f1f1;
  border: 1px solid #ddd;
  color: #27ae60;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-gateway-option:hover {
  background: #e1f5ea;
  border-color: #27ae60;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid hsl(var(--white) / 0.1);
  border-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
  color: hsl(var(--white));
}

.payment-item__btn:hover {
  color: hsl(var(--base));
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

/* Estilo geral para as abas */
.competition-details__tab {
  margin: 20px 0;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo para as navegações de abas */
.nav-pills {
  display: flex;
  padding: 0;
  margin-bottom: 20px;
}

.nav-pills .nav-item {
  margin-right: 10px;
}

.nav-pills .nav-link {
  padding: 10px 15px;
  font-weight: bold;
  font-size: 16px;
  color: var(--texto);
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-pills .nav-link:hover {
  background-color: var(--botao);
  color: #fff;
}

.nav-pills .nav-link.active {
  border: var(--botao) solid 1px;
  background-color: transparent;
  color: var(--texto);
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(26, 26, 26, 0.5);
}

/* Estilo para o conteúdo das abas */
.tab-content {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-pane {
  display: none;
}

.tab-pane.show {
  display: block;
}

/** Desconto carrinho  */
#discount-info {
  display: none;
  font-weight: bold;
  color: #fff !important;
  background: linear-gradient(45deg, #0cbc87, #059669);
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 15px rgba(12, 188, 135, 0.5);
}

#discount-info span {
  font-size: 20px;
  font-weight: bold;
  color: #ffeb3b;
  transition: transform 0.3s ease-in-out;
}

#discount-info span.grow {
  transform: scale(1.3);
}

/* Efeito de brilho pulsante */
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(12, 188, 135, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(12, 188, 135, 0.8);
  }

  100% {
    box-shadow: 0 0 10px rgba(12, 188, 135, 0.5);
  }
}

/** Botão cores */
.floating-button {
  position: fixed;
  right: 20px;
  bottom: 30%;
  transform: translateY(-50%);
  z-index: 1000;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/** Whats */
.whats {
  position: fixed;
  right: 20px;
  bottom: 20%;
  transform: translateY(50%);
  z-index: 1000;
  padding: 10px;
  width: 50px;
  height: 50px;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #169e4a;
  color: #FFF;
}


.order-summery {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 20px;
}

.order-summery__one {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.order-summery__title-two {
  font-size: 16px;
  color: var(--texto);
  font-weight: 600;
}

.order-summery__number-two,
.order-summery__number-discount {
  font-size: 18px;
  font-weight: 700;
  color: var(--titulo);
  display: inline-block;
}

.grand-total {
  font-size: 20px;
  color: var(--texto);
  text-decoration: line-through;
}


.total-discount {
  color: var(--titulo);
  font-size: 22px;
  text-transform: uppercase;
}

/* Estilização das abas */
.nav-tabs {
  border-bottom: none !important;
  display: flex;
  justify-content: center;
}

.nav-tabs .nav-item {
  margin: 0 10px;
}

.nav-tabs .nav-link {
  border: none;
  font-weight: bold;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
  background: transparent;
  border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active {
  color: var(--texto);
  border-bottom: 3px solid var(--titulo);
  background: var(--botao);
  border-radius: 5px 5px 0 0;
}

/* Transição suave para o conteúdo das abas */
.tab-content .tab-pane {
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  display: block;
  height: 0;
  overflow: hidden;
}

.tab-content .tab-pane.show.active {
  opacity: 1;
  height: auto;
  overflow: visible;
}

/* Estilos gerais */
.lottery-item {
  padding: 20px;
  background-color: var(--box);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Título do sorteio */
.lottery-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Preço do bilhete */
.lottery-price {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* Preço destacado */
.lottery-price {
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Estilo para o valor do bilhete */
.lottery-price .price {
  font-weight: bold;
  color: var(--titulo);
}


/* Data do sorteio */
.lottery-draw-date {
  font-size: 1.125rem;
  margin-bottom: 15px;
}

/* Contagem regressiva */
.lottery-countdown {
  font-size: 1.5rem;
  font-weight: bold;
}

.lottery-countdown .time-left {
  font-size: 2rem;
}

/* Estilo geral para o contador */
.lottery-countdown {
  display: flex;
  gap: 20px;
  font-weight: bold;
  margin-top: 20px;
}

/* Cada item de tempo (D, H, M, S) */
.lottery-countdown .time-unit {
  text-align: center;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
}

.lottery-countdown .time-unit .time-label {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Número do contador */
.lottery-countdown .time-unit .time-value {
  font-size: 20px;
  color: var(--titulo);
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Quando o contador acabar */
.lottery-countdown .time-left {
  font-size: 1.5rem;
  color: #f44336;
  /* Cor de alerta para o contador */
}


/* Container principal personalizado */
.raffle-container {
  background-color: var(--box);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Estilo para o cabeçalho da rifa */
.raffle-header {
  margin-bottom: 1.5rem;
}

.raffle-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--titulo);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.raffle-price {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.raffle-price .price-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e74c3c;
}

.raffle-draw-date {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.raffle-draw-date .date-highlight {
  font-weight: 600;
}

/* Estilo para o countdown */
.raffle-countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.countdown-unit {
  text-align: center;
  min-width: 60px;
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--botao);
  padding: 0.5rem;
  border-radius: 8px;
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #7f8c8d;
  font-weight: 600;
}

/* Estilo para o carrossel de imagens */
.raffle-gallery {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.raffle-gallery-item {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

/* Responsividade */
@media (min-width: 992px) {
  .raffle-header {
    margin-bottom: 0;
    padding-right: 2rem;
  }

  .raffle-countdown {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .raffle-container {
    margin-top: 25px;
    align-items: center;
    text-align: center;
  }

  .raffle-title {
    font-size: 1.5rem;
  }

  .raffle-countdown {
    gap: 0.5rem;
  }

  .countdown-unit {
    min-width: 50px;
  }

  .countdown-value {
    font-size: 1.25rem;
    padding: 0.4rem;
  }
}

.lottery-banner {
  padding-top: 50px;
  position: relative;
  height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lottery-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: brightness(0.85);
  transition: transform 0.7s ease, filter 0.7s ease;
  /* Melhorias para qualidade da imagem */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.lottery-banner:hover .lottery-banner-bg {
  transform: scale(1.03) translateZ(0);
  filter: brightness(0.75);
}

.lottery-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 60, 0.6) 0%, rgba(20, 20, 80, 0.4) 100%);
  z-index: 2;
}

.lottery-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Cada linha tem display block para garantir que ocupe toda a largura */
.lottery-banner-row {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}

/* Última linha (botões) tem margem inferior menor */
.lottery-banner-row:last-child {
  margin-bottom: 0;
}

.lottery-banner-title {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  margin: 0 auto 1rem;
  padding-bottom: 1rem;
  position: relative;
}

.lottery-banner-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  border-radius: 2px;
}

.lottery-banner-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px 25px;
  border-radius: 50px;
  display: block;
  width: fit-content;
  backdrop-filter: blur(5px);
  font-weight: 300;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lottery-banner-buttons-container {
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: inline-block;
  width: auto;
}

.lottery-banner-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lottery-banner-btn {
  transition: all 0.4s ease;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.8rem 2.2rem;
  min-width: 180px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lottery-banner-btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #222;
  border: 2px solid transparent;
}

.lottery-banner-btn-primary:hover {
  background: linear-gradient(135deg, #ffe032, #ffb732);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.lottery-banner-btn-secondary {
  background-color: rgba(255, 255, 255, 0.92);
  color: #222;
  border: 2px solid transparent;
}

.lottery-banner-btn-secondary:hover {
  background-color: white;
  transform: translateY(-3px);
  color: #222;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

/* Efeitos de destaque */
.lottery-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 2;
  animation: floatLight 8s infinite alternate ease-in-out;
}

.lottery-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 2;
  animation: floatLight 10s infinite alternate-reverse ease-in-out;
}

@keyframes floatLight {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(80px, 60px);
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .lottery-banner {
    height: auto;
  }

  .lottery-banner-title {
    font-size: 2.5rem;
  }

  .lottery-banner-row {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .lottery-banner {
    height: auto;
  }

  .lottery-banner-bg {
    background-position: center center;
  }

  .lottery-banner-title {
    font-size: 2rem;
  }

  .lottery-banner-subtitle {
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .lottery-banner-btn {
    padding: 0.7rem 1.8rem;
    min-width: 160px;
  }

  .lottery-banner-row {
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 576px) {
  .lottery-banner {
    height: auto;
  }

  .lottery-banner-bg {
    background-position: center top;
  }

  .lottery-banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .lottery-banner-btn {
    width: 100%;
    max-width: 220px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .lottery-banner-title {
    font-size: 1.6rem;
  }

  .lottery-banner-title::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }

  .lottery-banner-subtitle {
    border-radius: 30px;
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .lottery-banner-row {
    margin-bottom: 1rem;
  }
}

.bottom-appbar {
  display: none;
}

@media (max-width: 576px) {
  .bottom-appbar {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    height: 60px;
    position: fixed;
    bottom: 0px;
    left: 15px;
    right: 15px;
    z-index: 1;
    background: var(--menu);
    border-radius: 5px;
  }

  body {
    padding-bottom: 80px;
  }

  .bottom-appbar a {
    color: #ffffff;
    text-align: center;
  }

  .bottom-appbar a svg {
    height: 22px;
    margin-top: -5px;
  }

  .bottom-appbar a .lev {
    font-size: 10px;
    color: #ffffff57;
    margin-top: -1px;
    display: none;
  }

  .bottom-appbar a.active {
    color: #2fe7ab;
  }

  .bottom-appbar a.active .lev {
    color: #ffffff;
  }
}

.dezenas {
  display: flex;
  flex-wrap: wrap;
  /* 👈 faz as bolinhas quebrarem de linha */
  gap: 10px;
  justify-content: center;
  padding: 0;
  list-style: none;
  max-width: 100%;
  /* 👈 evita que ultrapasse os limites */
}

.dezenas .bolas {
  width: 50px;
  height: 50px;
  background-color: #2ecc71;
  /* verde Mega-Sena */
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/** LOTERIA DETALHES */
.highlight-wrapper {
  position: relative;
  display: inline-block;
}

.title {
  text-transform: uppercase;
  font-weight: bold;
}

.item_titulo {
  margin-bottom: -40px !important;
}

/* Estilos Gerais */
.competition-details__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

/* Estilos da seção da direita */

.text--base {
  color: #0cbc87;
}

/* Quantidade de Tickets */
.competition-details__quantity {
  align-items: center;
  margin: 20px 0;
}

.qty {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.qty input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.qty button {
  background: #ddd;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.qty button:hover {
  background: #ccc;
}

/* Contagem Regressiva */
.remaining-time {
  text-align: center;
  margin-top: 20px;
}

.countdown__menu {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.countdown__list {
  background: var(--botao);
  padding: 2px 5px;
  color: #FFF !important;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.box__text {
  font-size: 10px;
  text-transform: uppercase;
}

.days,
.minutes,
.seconds,
.hours {
  margin-bottom: -20px;
  color: #FFF !important;
}

/* Barra de Progresso */
.competition-details__progressbar {
  margin-top: 30px;
}

.progressbar-count {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 10px;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background: #e0e0e0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  transition: width 0.5s ease-in-out;
}

.remaining-count {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  color: #555;
}

.remaining-time__content {
  width: 100%;
}



#cart {
  display: none;
}

.custom--modal .modal-header {
  justify-content: center;
}

.custom--modal .modal-footer {
  justify-content: center;
}

.competition-details__tab {
  background: var(--box);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom--tab {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.custom--tab .nav-link {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--texto);
  border: 1px solid var(--botao);
  transition: var(--transition-speed);
}

.custom--tab .nav-link.active,
.custom--tab .nav-link:hover {
  border: 1px solid var(--titulo);
}

.tab-content {
  background: transparent;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tickets-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dip-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-item {
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(135deg, #449656 0%, #36c4ba 100%);
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.btn-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-item:hover::before {
  left: 100%;
}

.btn-item i {
  font-size: 1.1em;
}

/* Estilo especial para a melhor opção */
.highlight-wrapper {
  position: relative;
}

.highlight-wrapper .btn-item {
  background: linear-gradient(135deg, #ff242b 0%, #f36d48 100%);
  color: #fff;
}

.label-overlay {
  position: absolute;
  top: -10px;
  right: 15px;
  background: linear-gradient(135deg, #ff512f 0%, #dd2424 100%);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7em;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Botão de reset */
.reset-selection .btn-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Botão de adicionar ao carrinho */
#add-to-cart-btn {
  background: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
  font-weight: bold;
}

#add-to-cart-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none !important;
}

/* Responsivo */
@media (max-width: 720px) {
  .btn-item {
    min-width: 100% !important;
    padding: 16px 20px;
  }

  .label-overlay {
    right: 50%;
    transform: translateX(50%);
  }
}

.ticket-btn {
  padding: 8px 15px;
  border-radius: 10px;
  border: var(--menu) 1px solid;
  transition: var(--transition-speed);
  cursor: pointer;
}

.ticket-btn-active,
.ticket-btn:hover {
  background: var(--botao);
}

.ticket-number-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ticket-number-item {
  padding: 10px 15px;
  border: 1px solid var(--botao);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-speed);
}

.ticket-number-item.active,
.ticket-number-item.selected {
  background: var(--botao);
  color: white;
}

.description-list {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Card de Loteria */
.lottery-card {
  position: relative;
  background: var(--box);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.lottery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Header do Card */
.lottery-card__header {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  display: block;
  /* Adicione estas propriedades */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lottery-card__image {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Garante que não haja espaços extras */
  position: absolute;
  top: 0;
  left: 0;
}

.lottery-card:hover .lottery-card__image {
  transform: scale(1.05);
}


/* Corpo do Card */
.lottery-card__body {
  padding: 20px;
  flex-grow: 1;
}

.lottery-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--titulo);
}

.lottery-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lottery-card__title a:hover {
  color: #3498db;
}

/* Seção de Prêmios */
.lottery-prizes-section {
  margin: 15px 0;
}

.prize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.prize-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-3px);
}

.prize-badge {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.main-prize .prize-badge {
  background: var(--botao);
  color: white;
}

.secondary-prize .prize-badge {
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  color: white;
}

.prize-value {
  padding: 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: white;
  color: #2c3e50;
}

.main-prize .prize-value {
  font-size: 20px;
  color: #3498db;
}

.secondary-prize .prize-value {
  color: #2ecc71;
}

/* Meta Informações */
.lottery-card__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--texto);
  font-size: 14px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Contador */
.lottery-card__countdown {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  text-align: center;
}

.countdown-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-label {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.countdown-time {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.countdown-days,
.countdown-hours {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
}

.countdown-unit {
  font-size: 14px;
  color: #7f8c8d;
}

.countdown-separator {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0 3px;
}

/* Botão Premium de Compra */
.lottery-buy-btn {
  position: absolute;
  top: 150px;
  right: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 12px 20px 12px 15px;
  background: linear-gradient(135deg, #40f089 0%, #169e4a 100%);
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(255, 95, 109, 0.4);
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lottery-buy-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 95, 109, 0.6);
}

.btn-icon {
  font-size: 18px;
  margin-right: 10px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-text {
  letter-spacing: 0.5px;
}

/* Elemento de destaque (fita) */
.btn-ribbon {
  position: absolute;
  top: 10px;
  left: -5px;
  width: 30px;
  height: 30px;
  background: #3c794b;
  transform: rotate(45deg);
  z-index: -1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Efeito de pulsação */
.btn-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsividade */
@media (max-width: 1199px) {
  .lottery-card__header {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .lottery-card__header {
    height: 160px;
  }

  .lottery-card__body {
    padding: 15px;
  }

  .lottery-buy-btn {
    top: 100px;
    right: 50px;
  }

  .btn-icon {
    font-size: 16px;
    margin-right: 8px;
  }

  .btn-ribbon {
    width: 25px;
    height: 25px;
  }

}

/* Estrutura Base - Sem alterar classes Bootstrap */
.eb-banner {
  position: relative;
  height: 600px;
  max-height: 80vh;
  overflow: hidden;
  margin-top: 0;
}

.eb-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8);
  z-index: 1;
}

.eb-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

/* Conteúdo - Usando apenas classes personalizadas */
.eb-banner-content {
  position: absolute;
  z-index: 3;
  padding: 2rem 0;
  margin-top: 200px;
}

.eb-banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.eb-title-text {
  background: linear-gradient(90deg, #fff, #f1f1f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.eb-banner-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.eb-subtitle-text {
  display: inline;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.9);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Botões - Classes totalmente personalizadas */
.eb-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.eb-btn-main {
  background-color: var(--botao);
  color: white;
}

.eb-btn-main:hover {
  background-color: var(--menu);
  transform: translateY(-2px);

}

.eb-btn-alt {
  background-color: transparent;
  color: white;
  border-color: white;
}

.eb-btn-alt:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .eb-banner {
    height: auto;
    min-height: 500px;
  }

  .eb-banner-content {
    margin-top: 150px;
  }

  .eb-banner-title {
    font-size: 2rem;
  }

  .eb-banner-subtitle {
    font-size: 1rem;
  }

  .eb-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .eb-btn {
    width: 100%;
  }
}

.botao1 {
  background-color: var(--botao);
  color: #FFF;
  padding: 5px 10px;
  border-radius: 5px;
}

.botao2 {
  color: #FFF;
  border: 2px solid var(--botao);
  padding: 2px 2px;
  border-radius: 5px;
}

.header-cart-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--botao);
  border-radius: 8px;
  color: #fff;
}

.cart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 5px;
  border-right: 1px solid var(--botao);
  color: #FDFF;
}

.cart-link {
  font-size: 35px;
  color: #FFF;
  padding: 2px 10px;
}

.cart-number {
  background-color: var(--botao);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  position: absolute;
  top: -5px;
  right: -5px;
}

.botao_login {
  text-decoration: none;
  color: #FFF;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.botao_login:hover {
  color: #FFF;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 60px !important;
  }

  .logo {
    max-width: 60px !important;
  }
}

.custom-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.custom-footer-logo {
  margin-bottom: 15px;
}

.custom-social-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.custom-social-item {
  list-style: none;
}

.custom-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--botao);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

.custom-social-link:hover {
  background: #088c64;
}

.custom-bottom-footer {
  margin-top: 20px;
}

.custom-footer-text {
  font-size: 14px;
  color: #666;
}

.custom-footer-link {
  color: #0cbc87;
  font-weight: bold;
}

/* Estilo do container do carrinho flutuante */
.cart-float-container {
  position: fixed;
  right: 50%;
  margin-right: -48%;
  top: 50%;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Estilo do botão principal */
.cart-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--botao);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  border: none;
  cursor: pointer;
}

/* Efeito hover no botão */
.cart-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #a777e3, #6e8efb);
}

/* Ícone do carrinho */
.cart-float-icon {
  font-size: 24px;
  color: white;
}

/* Contador de itens */
.cart-float-counter {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #f44336;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: pulse 2s infinite;
}

/* Animação sutil para o contador */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Efeito ao adicionar item */
.cart-float-counter.add-item {
  animation: bounce 0.5s;
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.8);
  }
}


/** Olhos no formuláiro */
.form-group {
  position: relative;
}

.css-toggle-password {
  position: absolute;
  right: 12px;
  top: 45px;
  /* Ajuste conforme necessário */
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}

/* Ícone do olho padrão (senha oculta) */
.css-toggle-password::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #555;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat 50% 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat 50% 50%;
}

/* Classe para quando a senha está visível */
.css-toggle-password.show-password::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'%3E%3C/path%3E%3Cline x1='1' y1='1' x2='23' y2='23'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'%3E%3C/path%3E%3Cline x1='1' y1='1' x2='23' y2='23'%3E%3C/line%3E%3C/svg%3E") no-repeat 50% 50%;
}

.form-control.form--control {
  padding-right: 40px;
}

/* Modal Styling */
.modal-giro {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-giro-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #e94560;
  overflow: hidden;
}

.modal-giro-header {
  text-align: center;
  color: #fff;
  position: relative;
  padding-bottom: 20px;
}

.modal-giro-header h2 {
  font-size: 28px;
  margin: 15px 0 10px;
  color: #f9c74f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-giro-header p {
  font-size: 18px;
  margin: 10px 0;
}

.giro-count {
  color: #f94144;
  font-weight: bold;
  font-size: 24px;
}

.modal-giro-icon {
  font-size: 60px;
  color: #f9c74f;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: rgba(233, 69, 96, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e94560;
}

.modal-giro-body {
  text-align: center;
  color: #fff;
  padding: 20px 0;
  position: relative;
}

.modal-giro-body p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.modal-giro-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-girar-roleta {
  background: linear-gradient(135deg, #37793b 0%, #56e090 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-girar-roleta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
}

.btn-fechar-modal {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-fechar-modal:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.close-modal:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Confetti Effect */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #f9c74f;
  opacity: 0;
}

.confetti:nth-child(1) {
  left: 10%;
  top: 0;
  animation: confetti 3s ease 1;
}

.confetti:nth-child(2) {
  left: 20%;
  top: 0;
  animation: confetti 3s ease 1.5s 1;
}

.confetti:nth-child(3) {
  left: 30%;
  top: 0;
  animation: confetti 3s ease 0.5s 1;
}

.confetti:nth-child(4) {
  left: 70%;
  top: 0;
  animation: confetti 3s ease 2s 1;
}

.confetti:nth-child(5) {
  left: 80%;
  top: 0;
  animation: confetti 3s ease 2.5s 1;
}

@keyframes confetti {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(200px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .modal-giro-content {
    margin: 20% auto;
    width: 85%;
  }

  .modal-giro-header h2 {
    font-size: 24px;
  }

  .modal-giro-body p {
    font-size: 15px;
  }

  .btn-girar-roleta,
  .btn-fechar-modal {
    padding: 12px 20px;
    font-size: 16px;
  }
}

.lottery-card-horizontal {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.lottery-card-horizontal__image {
  width: 45%;
  min-height: 260px;
  margin-top: 4%;
}

.lottery-card-horizontal__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.lottery-card-horizontal__content {
  width: 55%;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* Prêmios */
.lottery-card-horizontal__header {
  display: flex;
  gap: 20px;
}

.prize-badge {
  font-size: 12px;
  background: #ffcc00;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
}

.prize-value {
  font-size: 26px;
  font-weight: 700;
  color: #222;
}

/* Meta */
.lottery-card-horizontal__meta {
  display: flex;
  gap: 25px;
  font-size: 15px;
}

.meta-item i {
  color: #ff9f00;
}

/* Countdown */
.lottery-card-horizontal__countdown {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.countdown-inline strong {
  color: #111;
}

/* Botão maior */
.lottery-buy-btn.big {
  padding: 14px 22px;
  font-size: 18px;
  width: fit-content;
  border-radius: 10px;
}

.botao_flutuante {
  position: fixed !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1000 !important;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  display: inline-block !important;
  width: auto !important;
  white-space: nowrap;
  background-color: var(--botao);
}