/* =============================================
   Cores e Variáveis
   Tabela de transparência:
   0% = 00, 10% = 1A, 20% = 33, 30% = 4D, 40% = 66,
   50% = 80, 60% = 99, 70% = B3, 80% = CC, 90% = E6, 100% = FF
============================================= */
:root {
  --color_01:        #ffcc00;
  --color_02:        #003399;
  --color_03:        #80CD56;
  --color_04:        #ff6600;
  --color_05:        #f2897b;

  --color_01_dark:   #DFB718;
  --color_02_dark:   #11295A;
  --color_03_dark:   #40811C;

  --color_01_alpha:  #ffcc0080;
  --color_02_alpha:  #00339980;
  --color_03_alpha:  #00000080;

  --color-menu: transparent;
  --color-menu-text: white;
  --color-menu-text-hover: #ff6600;
  --color-menu-scrolled: #ffcc00;
  --color-menu-scrolled-text: #003399;
  --color-menu-scrolled-text-hover: #11295A;

  --brand-size: 30px;
  --brand-filter: brightness(0) invert(1);

	/* usado no checkout/payout (mantido nome original) */
	--color_checkout: #B7CADD;
}

/* =============================================
   Utilidades de efeito / Parallax
============================================= */
.parallax-blur {
	position: relative;
	overflow: hidden;
}
.parallax-blur::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hero-url);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	filter: blur(10px);
	z-index: 0;
}
.parallax-blur .content {
	height: 100%;
	position: relative;
	z-index: 1;
}

/* =============================================
   Hero do Produto
============================================= */
.section-product-hero {
	background: #000;
	width: 100%;
	height: 60vh;
	color: #fff;
}
.product-hero-info { margin-left: 10vh; }
.product-hero-info h1 { font-size: 70px; }
.product-hero-info p { padding: 3px 0; }
.product-hero-banner {
	height: 40vh;
	margin-right: 10vh;
}
.btn-cta {
	background: var(--color_01);
	color: #000;
	box-shadow: 0 0 55px #000;
}
.btn-cta:hover {
	background: var(--color_03);
	color: #000;
}

/* descrição do produto */
[data-bs-theme="light"] .section-product-description { color: #071631; }
[data-bs-theme="dark"]  .section-product-description { color: #fff; }

.section-product-description h2 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-size: 40px;
}
.section-product-description p,
.section-product-description li,
.section-product-description h5 {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

/* loading / prompts */
#loading { background: rgba(0, 0, 0, 0.5); }

[data-bs-theme="light"] #alert-prompt div {
	background: rgba(255, 255, 255, 0.9);
	color: #000;
}
[data-bs-theme="dark"] #alert-prompt div {
	background: rgba(255, 255, 255, 0.75);
	color: #000;
}

/* lista (ex.: lojas) */
.list-group-store {
	border-radius: 15px !important;
	font-size: 1rem;
	border: 1px solid #000;
}
.list-group-store i { font-size: 2rem; }

/* Responsivo — hero */
@media (max-width: 767px) and (orientation: portrait) {
	.section-product-hero { height: unset; }
	.product-hero-banner {
		height: auto;
		width: 100%;
		margin: unset;
		margin-top: 100px;
	}
	.product-hero-info {
		margin: 30px 10px 20px 10px;
		width: 80%;
	}
	.product-hero-info h1 {
		font-size: 50px;
		text-align: center;
		padding-bottom: 10px;
	}
	.product-hero-info p {
		padding: 3px 0;
		text-align: left;
	}
	.btn-cta { width: 100%; }
}

/* =============================================
   Reset
============================================= */
body, h1, h2, h3, h4, h5, h6, form, dl, ul, li, ol,
dt, dd, p, address, a {
	margin: 0;
	padding: 0;
	text-decoration: none;
	text-transform: none;
	text-shadow: none;
}

/* =============================================
   Tipografia
============================================= */
body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-optical-sizing: auto;
	font-variation-settings: "wdth" 100;
}
.bebas-neue-regular {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.roboto-100 {
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-style: normal;
	font-optical-sizing: auto;
}
.roboto-400 {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-optical-sizing: auto;
}

/* =============================================
   Utilitários
============================================= */
.fs-7 { font-size: 0.7rem; }
.fs-8 { font-size: 0.8rem; }

.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-wide { letter-spacing: 0.1em; }
.ls-tighter { letter-spacing: -0.5px; }

body.no-scroll { overflow: hidden; }
a { color: var(--color_01); }

/* =============================================
   Scrollbar
============================================= */
html { scrollbar-width: thin; }
[data-bs-theme="light"] html { scrollbar-color: #eaf0f5 transparent; }
[data-bs-theme="dark"]  html { scrollbar-color: #00000033 transparent; }

[data-bs-theme="light"] ::-webkit-scrollbar,
[data-bs-theme="dark"]  ::-webkit-scrollbar {
	width: 0.75rem;
}
[data-bs-theme="light"] ::-webkit-scrollbar-thumb {
	background-color: #eaf0f5;
	border: 0.2rem solid transparent;
	border-radius: 0.35rem;
	background-clip: content-box;
}
[data-bs-theme="dark"] ::-webkit-scrollbar-thumb {
	background-color: #93b4cc33;
	border: 0.2rem solid transparent;
	border-radius: 0.35rem;
	background-clip: content-box;
}
[data-bs-theme="light"] ::-webkit-scrollbar-track,
[data-bs-theme="dark"]  ::-webkit-scrollbar-track {
	background: transparent;
}

/* =============================================
   Navbar
============================================= */
#menu {
	background: var(--color-menu);
	transition: background-color 1s ease;
}
#menu.scrolled { background-color: var(--color-menu-scrolled); }

#menu_checkout {
	background: #000;
	height: 60px;
}
.navbar-brand {
	padding-bottom: 0 !important;
}
.navbar-brand img {
	filter: var(--brand-filter);
	height: var(--brand-size);
	margin-left: 8px;
	margin-bottom: 2px;
}
#menu.scrolled .navbar-brand img { filter: unset; }

.navbar-toggler,
.nav-link { color: var(--color-menu-text) !important; }
.nav-link:hover { color: var(--color-menu-text-hover) !important; }

.menu-theme-btn {
	color: var(--color-menu-text) !important;
	cursor: pointer;
	border: none !important;
}
.menu-theme-btn:hover { color: var(--color-menu-text-hover) !important; }

.menu-login-btn { color: var(--color-menu-text) !important; }
.menu-login-btn:hover { color: var(--color-menu-text-hover) !important; }

#menu.scrolled .nav-link { color: var(--color-menu-scrolled-text) !important; }
#menu.scrolled .nav-link:hover { color: var(--color-menu-scrolled-text-hover) !important; }

#menu.scrolled .menu-theme-btn {
	color: var(--color-menu-scrolled-text) !important;
	cursor: pointer;
}
#menu.scrolled .menu-theme-btn:hover { color: var(--color-menu-scrolled-text-hover) !important; }

#menu.scrolled .menu-login-btn { color: var(--color-menu-scrolled-text) !important; }
#menu.scrolled .menu-login-btn:hover { color: var(--color-menu-scrolled-text-hover) !important; }

/* =============================================
   Botões
============================================= */
.btn-primary {
	background: var(--color_03) !important;
	color: var(--color_03_dark) !important;
	font-weight: 700;
	border: none;
}
.btn-submit {
	background-color: var(--color_01) !important;
	color: black;
	width: 100%;
	padding: 0.75rem;
	border: none !important;
	opacity: 1;
}
.btn-submit.disabled {
	background-color: rgba(0, 0, 0, 0.2) !important;
	opacity: 0.5;
}
.btn-default {
	width: 100% !important;
	padding: 0.75rem !important;
	border: none !important;
	opacity: 1;
}
.btn-default.disabled {
	background-color: rgba(0, 0, 0, 0.2) !important;
	opacity: 0.5;
}

/* =============================================
   Hero Section (swiper)
============================================= */
.section-hero .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

/* =============================================
   Cookie Prompt
============================================= */
#cookie-accept-prompt {
	position: fixed;
	display: flex;
	bottom: 0;
	left: 25%;
	right: 25%;
	z-index: 200;
	opacity: 0;
	transform: translateY(100%);
	animation: slide-up 0.3s 2s forwards;
}
@keyframes slide-up {
	0%   { opacity: 0; transform: translateY(100%); }
	100% { opacity: 1; transform: translateY(0); }
}

/* =============================================
   Footer
============================================= */
.section-footer {
	background: #05112A;
	color: #fff;
	padding: 50px 0;
	font-size: 0.8rem;
}
.logo_footer { height: 25px; }

.section-footer ul {
	list-style: none;
	padding-left: 0;
	line-height: 2.5;
}
.section-footer ul a { color: #fff; }
.section-footer ul a:hover { color: var(--color_04); }

.section-footer .slogan {
	color: var(--color_01);
	font-size: 60px;
}

@media (max-width: 767px) and (orientation: portrait) {
	#menu { background: #000; } /* Navbar */
	#cookie-accept-prompt { left: 0; right: 0; } /* Cookie */
	.section-footer .slogan {
		line-height: 0.9;
		padding-bottom: 40px;
	}
	.btn-footer-contact { width: 100%; }
}

.link-help-login {
	color: var(--color_02);
}

/* =============================================
   Checkout / Calendário / Swiper / Accordion (geral)
============================================= */
.checkout-header-product {
	padding-top: 60px;
	min-height: 260px;
}
[data-bs-theme="light"] .checkout-header-product { background: var(--color_checkout); }
[data-bs-theme="dark"]  .checkout-header-product { background: #42505E; }

.checkout-header-product > div,
.checkout-header-product > div > div { min-height: 200px; }

.checkout-header-product-banner div {
	border-radius: 10px;
	width: 160px;
	height: 160px;
	overflow: hidden;
}
.checkout-header-product-banner img {
	image-rendering: auto;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.checkout-header-product-info h1 { font-size: 2rem; }
.checkout-header-product-info h2 {
	font-size: 1rem;
	font-weight: normal;
}

[data-bs-theme="light"] .checkout-header-product-info a { color: var(--color_01); }
[data-bs-theme="dark"] .checkout-header-product-info a { color: var(--color_05); }

.checkout-body-product {
	height: calc(100vh - 260px);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}
[data-bs-theme="light"] .checkout-body-product { background: #ffffff; }
[data-bs-theme="dark"]  .checkout-body-product { background: #212529; }

.checkout-detail-header {
	width: 100%;
	height: 70px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border: 0.125rem solid;
	border-bottom: none;
}
[data-bs-theme="light"] .checkout-detail-header { border-color: #EAF0F5; }
[data-bs-theme="dark"]  .checkout-detail-header { border-color: #EAF0F51A; }

.checkout-body-product-detail {
	width: 100%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border: 0.125rem solid;
	border-top: none;
}

.checkout-body-product-detail .fs-8 { font-size: 0.8rem; }
[data-bs-theme="light"] .checkout-body-product-detail { border-color: #EAF0F5; }
[data-bs-theme="dark"]  .checkout-body-product-detail { border-color: #EAF0F51A; }


.cartList {
	height: calc(100vh - 262px - 195px - 0.75rem);
	overflow-y: scroll;
}
#cartTotal {
	width: 100%;
	height: 195px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	border-top: 0.125rem solid;
}
[data-bs-theme="light"] #cartTotal {
	background-color: #EAF0F5;
	border-color: #EAF0F5;
}
[data-bs-theme="dark"] #cartTotal {
	background-color: #42505E;
	border-color: #EAF0F51A;
}

@media (max-width: 767px) and (orientation: portrait) {

.checkout-detail-header-arrow {
	position: absolute;
	top: 6px;
	height: 4px;
	width: 50px;
	background: white;
	border-radius: 5px;
	transition: all .35s ease;
}

.checkout-detail-header-arrow.active {
	background: var(--color_03);
	opacity: 0;
}

.checkout-detail-header {
	z-index: 10;
	background: #708293;
	position: fixed;
	bottom: 0;
	border: unset;
	transition: bottom .35s ease;
	color: white;
}
.checkout-detail-header.active {
	bottom: 295px;
}
.cartList.active {
	height: 300px;
}
.checkout-detail-header.start {
	bottom: 190px;
}
.checkout-body-product-detail {
	width: 100%;
	position: fixed;
	bottom: -195px;
	border: unset;
	background: var(--bs-body-bg);
	transition: bottom .35s ease;
}	
.checkout-body-product-detail.start {
	bottom: 0;
}

.cartList {
	height: 0;
	overflow-y: scroll;
	transition: height .35s ease;
}
#cartTotal {
	height: 195px;
	border-radius: unset;
	border: unset;
}
}

.checkout-body-product-calendar {
	width: 100%;
	height: 100px;
}

.checkout-body-product-calendar h3 {
	font-size: 2rem;
}
.checkout-body-product-calendar p {
	font-size: 1rem;
}
@media (max-width: 767px) and (orientation: portrait) {
.checkout-body-product-calendar h3 {
	font-size: 1.25rem;
}
.checkout-body-product-calendar p {
	font-size: 0.8rem;
}
}

.checkout-body-product-stock {
	width: calc(100% - 0.75rem);
	height: calc(100vh - 360px - 0.75rem);
	overflow-y: auto;
	border-radius: 10px;
	border: 0.125rem solid;
	border-color: #93B4CC;
}
@media (max-width: 767px) and (orientation: portrait) {
	.checkout-body-product-stock {
		width: unset;
		height: unset;
		margin-bottom: 250px;
	}
}
[data-bs-theme="light"] .checkout-body-product-stock { border-color: #EAF0F5; }
[data-bs-theme="dark"]  .checkout-body-product-stock { border-color: #EAF0F51A; }

#accordionStock { background: transparent; }

[data-bs-theme="light"] #accordionStock .accordion-button:not(.collapsed) { background: #EAF0F5; }
[data-bs-theme="dark"]  #accordionStock .accordion-button:not(.collapsed) { background: #42505E; }

#accordionStock .collapsed {
	background-image: linear-gradient(90deg, #CB6FB2 10%, #F2897B 100%);
	border-bottom: 0.125rem solid #EAF0F51A;
}

[data-bs-theme="light"] #accordionStock .accordion-button {
	font-size: 1.15rem;
	font-weight: bold;
	color: #000;
}
[data-bs-theme="dark"] #accordionStock .accordion-button {
	font-size: 1.15rem;
	font-weight: bold;
	color: #fff;
}
@media (max-width: 767px) and (orientation: portrait) {
[data-bs-theme="light"] #accordionStock .accordion-button {
	font-size: 1.1rem;
}
[data-bs-theme="dark"] #accordionStock .accordion-button {
	font-size: 1.1rem;
}
}
[data-bs-theme="light"] #accordionStock .accordion-body { background-color: #fff; }

[data-bs-theme="dark"] #accordionStock .accordion-body { background-color: #93B4CC1A; }


.swiper { --swiper-navigation-top-offset: calc(50% + 7.5px); }

.calendar-swiper { width: 100%; height: 100%; }
.calendar-swiper-date {
	width: 175px !important;
	height: 70px !important;
	border-radius: 10px;
	border: 0.125rem solid;
	text-align: center;
	display: flex !important;
	justify-content: center;
	align-items: center;
}
[data-bs-theme="light"] .calendar-swiper-date { border-color: #EAF0F5; }
[data-bs-theme="dark"]  .calendar-swiper-date { border-color: #EAF0F51A; }

.calendar-swiper-date h3 {
	font-size: 1.65rem;
	line-height: 0.75;
	padding-top: 0.5rem;
}
.calendar-swiper-date p { font-size: 0.8rem; }
.calendar-swiper-date .badge { background: #FFBA00; }

.calendar-swiper-date:hover {
	cursor: pointer;
	background: #93B4CC33;
}
.calendar-swiper-date-active {
	border: 0.125rem solid #FFBA00 !important;
	background: #FFBA0080 !important;
}

/* Responsivo — checkout */
@media (max-width: 767px) and (orientation: portrait) {
	.checkout-header-product {
		padding-top: 60px;
		min-height: 200px;
		position: relative;
	}
	.checkout-header-product > div,
	.checkout-header-product > div > div { min-height: 140px; }

	.checkout-body-product { height: unset; }

	.checkout-header-product-banner div {
		width: 80px;
		height: 80px;
		position: absolute;
		right: 1rem;
		bottom: -40px;
	}
	.checkout-header-product-info { padding: 1rem 0.25rem; }
}

/* Accordion base */
.accordion { --bs-accordion-border-width: none !important; }

/* =============================================
   LISTAGEM DE ESTOQUE (checkout)
============================================= */
#accordionStock li {
	position: relative;
	padding: 0.75rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 0.05rem solid;
	border-bottom: 0.05rem solid;
}
[data-bs-theme="light"] #accordionStock li { border-color: #EAF0F5; }
[data-bs-theme="dark"]  #accordionStock li { border-color: #EAF0F51A; }

.stock-list-title {
	line-height: 1.1;
	font-size: 0.9rem;
	font-weight: bold;
}
.stock-list-tier span {
	font-size: 0.7rem;
	font-weight: normal;
	padding: 0.4rem 0.5rem;
	margin-left: 0.5rem;
}
.stock-list-price {
	font-size: 0.9rem;
	font-weight: normal;
}

@media (max-width: 767px) and (orientation: portrait) {
.stock-list-tier span {
	margin: 0.5rem 0;
}
}
#accordionStock li .qty {
	font-size: 1.25rem;
	font-weight: bold;
	display: flex;
	align-items: center;
}
#accordionStock li .qty .stock-add,
#accordionStock li .qty .stock-add-disabled {
	font-size: 1.25rem;
	padding-left: 0.5rem;
}
#accordionStock li .qty .stock-remove {
	font-size: 1.25rem;
	padding-right: 0.5rem;
}

#accordionStock li .tier-lock-status {
	margin-right: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 0.5rem;
	background: red;
	color: #fff;
	font-size: 0.6rem;
}

/* estado de atualização */
.fade-update {
	transition: opacity 0.5s ease;
	opacity: 0.1;
}
.fade-update-active { opacity: 1; }

.stock-add,
.stock-remove,
.stock-select { cursor: pointer; }

[data-bs-theme="dark"]  .detail-stock-remove { cursor: pointer; color: #B6B6B6; }
[data-bs-theme="light"] .detail-stock-remove { cursor: pointer; color: #CECECE; }

.stock-add-disabled { opacity: 0.6; }

/* =============================================
   PAYOUT (pagamento) — telas e accordion
   (CSS 2 com prioridade nos conflitos)
============================================= */
.payout-header-product {
	padding-top: 60px;
	min-height: 60px;
}
[data-bs-theme="light"] .payout-header-product { background: var(--color_checkout); }
[data-bs-theme="dark"]  .payout-header-product { background: #42505E; }

.payout-header-product > div,
.payout-header-product > div > div { min-height: 200px; }

.payout-header-product-banner div {
	border-radius: 10px;
	width: 160px;
	height: 160px;
	overflow: hidden;
}
.payout-header-product-banner img {
	image-rendering: auto;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.payout-header-product-info h1 { font-size: 2rem; }
.payout-header-product-info h2 {
	font-size: 1rem;
	font-weight: normal;
}

.payout-body-product {
	height: calc(100vh - 260px);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}
[data-bs-theme="light"] .payout-body-product { background: #fff; }
[data-bs-theme="dark"]  .payout-body-product { background: #212529; }

.payout-detail-header {
	width: 100%;
	height: 70px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border: 0.125rem solid;
	border-bottom: none;
}
[data-bs-theme="light"] .payout-detail-header { border-color: #EAF0F5; }
[data-bs-theme="dark"]  .payout-detail-header { border-color: #EAF0F51A; }

.payout-body-product-detail {
	width: 100%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border: 0.125rem solid;
	border-top: none;
}
.payout-body-product-detail .fs-8 { font-size: 0.8rem; }
[data-bs-theme="light"] .payout-body-product-detail { border-color: #EAF0F5; }
[data-bs-theme="dark"]  .payout-body-product-detail { border-color: #EAF0F51A; }

.payout-body-option-select {
	margin-top: 0.75rem;
	width: calc(100% - 0.75rem);
	height: calc(100vh - 260px - 1.5rem);
	overflow-y: auto;
	border-radius: 10px;
	border: 0.125rem solid;
	border-color: #93B4CC;
}
[data-bs-theme="light"] .payout-body-option-select { border-color: #EAF0F5; }
[data-bs-theme="dark"]  .payout-body-option-select { border-color: #EAF0F51A; }

#optionPayout { background: transparent; }

[data-bs-theme="light"] #optionPayout .accordion-button:not(.collapsed) {
	background: #FFBA00;
	color: #42505E;
}
[data-bs-theme="dark"] #optionPayout .accordion-button:not(.collapsed) {
	background: #648F32;
	color: #fff;
}

[data-bs-theme="light"] #optionPayout .collapsed {
	background: #EAF0F533;
	border-bottom: solid 0.125rem #EAF0F5;
}
[data-bs-theme="dark"] #optionPayout .collapsed {
	background: #42505E33;
	border-bottom: solid 0.125rem #EAF0F51A;
}

[data-bs-theme="light"] #optionPayout .accordion-button {
	font-size: 1rem;
	font-weight: bold;
	color: #000000;
}
[data-bs-theme="dark"] #optionPayout .accordion-button {
	font-size: 1rem;
	font-weight: bold;
	color: #FFFFFF;
}
#couponBox, #creditBox  { color: #8796A5; }

@media (max-width: 767px) and (orientation: portrait) {
.payout-body-option-select {
	width: unset;
	height: unset;
	margin-bottom: 300px;
}

.payout-body-product {
	box-shadow: unset;
}

.payout-body-option-select {
	width: unset;
	height: unset;
}

.payout-detail-header-arrow {
	position: absolute;
	top: 6px;
	height: 4px;
	width: 50px;
	background: white;
	border-radius: 5px;
	transition: all .35s ease;
}

.payout-detail-header-arrow.active {
	background: var(--color_03);
	opacity: 0;
}

.payout-detail-header {
	z-index: 10;
	background: #708293;
	position: fixed;
	bottom: 0;
	border: unset;
	transition: bottom .35s ease;
	color: white;
}
.payout-detail-header.active {
	bottom: 300px;
}
.cartList.active {
	height: 300px;
}
.payout-detail-header.start {
	bottom: 190px;
}
.payout-body-product-detail {
	width: 100%;
	position: fixed;
	bottom: -190px;
	border: unset;
	background: var(--bs-body-bg);
	transition: bottom .35s ease;
}	
.payout-body-product-detail.start {
	bottom: 0;
}

.cartList {
	height: 0;
	overflow-y: scroll;
	transition: height .35s ease;
}
#cartTotal {
	height: 190px;
	border-radius: unset;
	border: unset;
}
}

/* Responsivo — payout */
@media (max-width: 767px) and (orientation: portrait) {
	.payout-header-product {
		padding-top: 60px;
		min-height: 130px;
		position: relative;
	}
	.payout-header-product > div,
	.payout-header-product > div > div { min-height: 70px; }

	.payout-body-product { height: unset; }

	.payout-header-product-banner div {
		width: 80px;
		height: 80px;
		position: absolute;
		right: 1rem;
		bottom: -40px;
	}
	.payout-header-product-info { padding: 1rem 0.25rem; }
}

/* LISTA DE OPÇÕES — payout */
#optionPayout li {
	position: relative;
	padding: 0.75rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 0.05rem solid;
	border-bottom: 0.05rem solid;
}
[data-bs-theme="light"] #optionPayout li { border-color: #EAF0F5; }
[data-bs-theme="dark"]  #optionPayout li { border-color: #EAF0F51A; }

#optionPayout li .text p {
	line-height: 1.1;
	font-size: 1rem;
	font-weight: normal;
	width: 100% !important;
}
#optionPayout li .text p span {
	font-size: 0.9rem;
	font-weight: bold;
}
#optionPayout li .qty {
	font-size: 1.25rem;
	font-weight: bold;
	display: flex;
	align-items: center;
}
#optionPayout li .qty .payout-add,
#optionPayout li .qty .payout-add-disabled {
	font-size: 1.25rem;
	padding-left: 0.5rem;
}
#optionPayout li .qty .payout-remove {
	font-size: 1.25rem;
	padding-right: 0.5rem;
}

#optionPayout li .tier-lock-status {
	margin-right: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 0.5rem;
	background: red;
	color: #fff;
	font-size: 0.6rem;
}

/* Ações e estados (payout) */
.payout-add,
.payout-remove,
.payout-select { cursor: pointer; }
.payout-add-disabled { opacity: 0.6; }

[data-bs-theme="dark"]  .detail-payout-remove { cursor: pointer; color: #FFBA00; }
[data-bs-theme="light"] .detail-payout-remove { cursor: pointer; color: #CECECE; }

/* Ícones de pagamento (payout) */
.payout-payment {
	width: 60px;
	height: calc(60px / 1.5);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
[data-bs-theme="dark"]  .payout-payment-visa       { background-image: url('/assets/img/visa_neg.svg'); }
[data-bs-theme="dark"]  .payout-payment-mastercard { background-image: url('/assets/img/mastercard_neg.svg'); }
[data-bs-theme="dark"]  .payout-payment-elo        { background-image: url('/assets/img/elo_neg.svg'); }
[data-bs-theme="dark"]  .payout-payment-amex       { background-image: url('/assets/img/amex_neg.svg'); }
[data-bs-theme="dark"]  .payout-payment-diners     { background-image: url('/assets/img/diners_neg.svg'); }
[data-bs-theme="dark"]  .payout-payment-hipercard  { background-image: url('/assets/img/hipercard_neg.svg'); }
[data-bs-theme="dark"]  .payout-payment-pix        { background-image: url('/assets/img/pix_neg.svg'); }
[data-bs-theme="dark"]  .payout-payment-boleto     { background-image: url('/assets/img/boleto_neg.svg'); }
[data-bs-theme="light"] .payout-payment-visa       { background-image: url('/assets/img/visa.svg'); }
[data-bs-theme="light"] .payout-payment-mastercard { background-image: url('/assets/img/mastercard.svg'); }
[data-bs-theme="light"] .payout-payment-elo        { background-image: url('/assets/img/elo.svg'); }
[data-bs-theme="light"] .payout-payment-amex       { background-image: url('/assets/img/amex.svg'); }
[data-bs-theme="light"] .payout-payment-diners     { background-image: url('/assets/img/diners.svg'); }
[data-bs-theme="light"] .payout-payment-hipercard  { background-image: url('/assets/img/hipercard.svg'); }
[data-bs-theme="light"] .payout-payment-pix        { background-image: url('/assets/img/pix.svg'); }
[data-bs-theme="light"] .payout-payment-boleto     { background-image: url('/assets/img/boleto.svg'); }

[data-bs-theme="dark"] .accordion-body label { position: absolute; top: -7px; left: 20px; padding: 0 5px; background: #141619; }
[data-bs-theme="dark"] .accordion-body input, [data-bs-theme="dark"] .accordion-body select { background-color: #141619; }
[data-bs-theme="light"] .accordion-body label { position: absolute; top: -7px; left: 20px; padding: 0 5px; background: #EAF0F5; }
[data-bs-theme="light"] .accordion-body input, [data-bs-theme="light"] .accordion-body select { background-color: #EAF0F5; }
.accordion-body input, .accordion-body select { border-width: 2px; }

.border-red { border: 2px solid #FF006C; }

/* =============================================
   Regras gerais extras (vindas do CSS 2)
============================================= */
[data-bs-theme="dark"] .accordion-body { background: #141619; }
[data-bs-theme="light"] .accordion-body { background: #EAF0F5; }

.accordion-button::after { display: none; }
.grecaptcha-badge { visibility: hidden !important; }

#creditPayout input[type="range"] {
	-webkit-appearance: none;    /* remove padrão */
	width: 100%;
	background: transparent;     /* evita barra dupla */
}

/* ==== BARRA (track) ==== */
#creditPayout input[type="range"]::-webkit-slider-runnable-track {
	height: 16px;                /* 🔑 altura real da barra clicável */
	background: var(--color_checkout);
	border-radius: 8px;
}
#creditPayout input[type="range"]::-moz-range-track {
	height: 16px;
	background: var(--color_checkout);
	border-radius: 8px;
}
#creditPayout input[type="range"]::-ms-track {
	height: 16px;
	background: var(--color_checkout);
	border-radius: 8px;
	border-color: transparent;   /* IE precisa disso */
	color: transparent;
}

/* ==== BOLINHA (thumb) ==== */
#creditPayout input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--color_01);
	cursor: pointer;
	border: 4px solid #fff;
	margin-top: -7px;             /* centraliza: -(thumb - track)/2 */
}
#creditPayout input[type="range"]::-moz-range-thumb {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--color_01);
	cursor: pointer;
	border: 4px solid #fff;
}
#creditPayout input[type="range"]::-ms-thumb {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--color_01);
	cursor: pointer;
	border: 4px solid #fff;
}
[data-bs-theme="dark"]  #creditPayout input[type="range"]::-webkit-slider-thumb {
	border: 4px solid #212529;
}
[data-bs-theme="dark"]  #creditPayout input[type="range"]::-moz-range-thumb {
	border: 4px solid #212529;
}
[data-bs-theme="dark"]  #creditPayout input[type="range"]::-ms-thumb {
	border: 4px solid #212529;
}

.form-control {
	border-width: 2px !important;
}

select.form-control:focus {
	color: inherit;
	background-color: inherit;
	border-color: transparent;
	outline: none;
	box-shadow: none;
}

.form-control:focus {
	color: unset;
	background-color: unset;
	border-color: unset;
	outline: unset;
	box-shadow: unset;
}

.form1-control:focus {
	border: none !important;
}

#alert-prompt {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.4s ease;
	pointer-events: none;
}

#alert-prompt.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}