/* BASE MODAL CLASS */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.open {
  transform: translateY(0%);
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
}

.btn-close-modal {
  color: #3D6D65;
  font-size: 1.5rem;
}

.btn-close-modal:hover {
  opacity: 0.7;
}

.btn-close-modal:active {
  opacity: .8;
}

/* MODAL NOTICE */
.modal.modal-notice {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-notice.open {
  transform: translateY(0%);
}

.modal-notice .modal-title {
  display: flex;
  justify-content: space-between;
}

.modal-notice .modal-title h1 {
  color: #3D6D65;
  font-weight: 600;
}

.modal-notice .modal-content {
  background: #E6D9B8;
  border: 2px solid #3D6D65;
  box-shadow: 0 8px 32px rgba(61, 109, 101, 0.3);
  color: #3D6D65;
  padding: 25px 35px;
  max-width: 1100px;
  border-radius: 15px;
}

.content-banner picture img[alt="Banner - Mania"] {
  width: 100%;
  box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
  border-radius: 10px;
  margin: 10px 0;
}

.modal-notice .modal-footer {
  display: flex;
  flex-direction: column;
}

.modal-notice .modal-footer .input-group {
  display: flex;
  flex-direction: row;
  margin: 5px 0;
}

.input-group label[for="notShowAgain"] {
  font-size: 14px;
  color: #3D6D65;
  margin: 0 5px;
  font-weight: 500;
}

.modal-notice #confirmNotice {
  width: 85%;
  background: #3D6D65;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px auto;
  display: block;
}

.modal-notice #confirmNotice:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(61, 109, 101, 0.4);
  background: linear-gradient(135deg, #3D6D65 0%, #2a4d47 100%);
}

/* MODAL LOGIN */
.modal.modal-login {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-login.open {
  transform: translateY(0%);
}

.modal-login .modal-content {
  background: var(--bg-primary);
  box-shadow: 0 4px 10px #000;
  color: #fff;
  padding: 20px 35px;
  max-width: 430px;
  width: 100%;
}

.modal-login .modal-title img[alt="Jogo do Bicho Online - Bicho Mania"] {
  width: 50px;
}

.modal-login .modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-login .btn-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  opacity: .5;
  cursor: pointer;
}

.modal-login .btn-close-modal:active {
  opacity: 1;
}

.modal-login .title-modal-login {
  margin: 15px 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.modal-login .modal-body img[alt="Jogo do Bicho Online - Bicho Mania, Login com Google"] {
  width: 25px;
  margin: 0 8px;
}

.modal-login .modal-footer {
  margin: 0 0 10px;
}

.btn.btn-modal-login {
  background: var(--primary);
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  transition: .25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.btn.btn-modal-login:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgb(0, 0, 0, 0.5);
}

/* MODAL SIGNUP */
.modal.modal-signup {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-signup.open {
  transform: translateY(0%) !important;
}

.modal-signup .modal-content {
  padding: 0px;
  max-width: 500px;
}

.modal-signup .modal-title {
  background: var(--primary);
  border-radius: 10px 10px 0 0;
  padding: 10px;
}

.modal-signup .btn-close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.modal-signup .icon-success {
  color: #fff;
  font-size: 5rem;
  text-align: center;
  padding: 40px;
}

.modal-signup .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 20px;
}

.modal-signup .modal-body h1 {
  color: var(--primary);
}

.modal-signup .modal-body h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 15px;
  color: #343434;
}

.modal-signup .modal-body h3 {
  color: #343434;
}

.btn-go {
  margin: 15px 0 0;
  width: 100%;
  background: var(--primary);
  padding: 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

/* MODAL COMPRA EFETUADA */
.modal.modal-success {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
}

.modal.modal-success.open {
  /* transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1); */
  transform: translateY(0%);
}

.modal.modal-success {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: absolute;
  z-index: 15;
  overflow: auto;
  /* display: none; */
}

.modal-success.open {
  display: flex;
}

.modal.modal-success .modal-content {
  background: #E6D9B8;
  border-radius: 15px;
  width: max-content;
  height: max-content;
  max-width: 700px;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 20px 35px;
  margin: auto;
  display: flex;
  border: 2px solid #3D6D65;
  box-shadow: 0 8px 32px rgba(61, 109, 101, 0.3);
  flex-direction: column;
  position: relative;
}

.modal-success .btn-close-modal {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.modal-success .btn-close-modal i {
  color: #A2A2A6;
  font-size: 1.8rem;
  margin: 15px;
}

.modal-success .btn-close-modal:active i {
  color: var(--danger);
}

.modal-success .modal-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0px 10px 20px;
}

.modal-success img[alt="Aposta realizada com sucesso!"] {
  position: relative;
  top: 30px;
  width: 100px;
  opacity: .2;
}

.modal-success .modal-title h1 {
  color: #3D6D65;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 15px 0;
}

.modal-success .modal-title h2 {
  color: #2a4d47;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
}

.modal-success .modal-title h2 span {
  color: #3D6D65;
  font-weight: 600;
}

.modal.modal-success .modal-body {
  max-width: 950px;
  width: 100%;
  display: block;
  margin: auto;
  overflow-y: auto;
}

.modal-success .modal-body .container-info-purchase {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 15px 30px;
  border-radius: 12px;
  border: 1px solid rgba(61, 109, 101, 0.2);
  margin: 15px 0;
}

.modal-success .container-info-purchase div {
  margin: 5px 0;
}

.container-info-purchase div h1,
h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.modal-success .content-info-purchase h1 {
  text-transform: uppercase;
}

.modal-success .content-info-purchase h2 span {
  font-weight: 600;
}

.modal-success .content-info-history-purchase .user-history,
.history-purchase {
  text-transform: uppercase;
}

.modal-success .content-info-history-purchase .history-purchase {
  font-weight: 600;
}

.modal-success .container-list-purchase {
  display: flex;
  background: #FCFCFC;
  flex-direction: column;
  padding: 10px 22px;
  max-height: 250px;
  overflow-y: auto;
}

.modal-success .header-list-purchase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 15px 8px;
}

.modal-success .header-list-purchase .content-header-list h1 {
  font-size: 1rem;
  font-weight: 400;
  color: #0C0047;
  text-align: center;
}

.modal-success .header-list-purchase .content-header-list h1 span {
  font-weight: 600;
}

.modal-success .header-list-purchase .content-header-list .btn.btn-showmore {
  color: var(--primary);
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 5px;
  align-items: center;
}

.modal-success .header-list-purchase .content-header-list .btn.btn-showmore.active {
  color: var(--danger);
}

.modal-success .content-list-purchase {
  max-height: 250px;
  overflow-y: auto;
}

.modal-success .content-list-purchase table {
  width: 100%;
  border-collapse: collapse;
}

.modal-success .content-list-purchase th,
.content-list-purchase td {
  padding: 8px 15px;
  white-space: nowrap;
}

.modal-success .left-align {
  text-align: left;
}

.modal-success .center-align {
  text-align: center;
}

.modal-success .right-align {
  text-align: right;
}

.modal-success .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.modal-success .container-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.modal-success .container-footer h3 {
  font-size: 1rem;
  color: #0C0047;
  font-weight: 400;
  margin-right: 5px;
  text-align: center;
}

/* MODAL BONUS */
.modal.modal-bonus {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateX(-100%);
}

.modal.modal-bonus.open {
  transform: translateX(0%);
}

.modal.modal-bonus .modal-content {
  background: #E6D9B8;
  position: relative;
  overflow-x: visible !important;
  overflow-y: visible !important;
  border-radius: 15px;
  max-width: 450px;
  width: 100%;
  border: 2px solid #3D6D65;
  box-shadow: 0 8px 32px rgba(61, 109, 101, 0.3);
}

.modal.modal-bonus .modal-content::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 100%;
  right: 0;
  top: 0;
  left: -25px;
  background: linear-gradient(135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%, linear-gradient(135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%;
  background-repeat: repeat-y;
  background-size: 25px 8px, 25px 8px;

}

.modal.modal-bonus .modal-content::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 100%;
  right: -25px;
  top: 0;
  /*background: linear-gradient(-135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%, linear-gradient(-135deg, transparent 70%, rgb(32 29 71) 75%) 0 50%;*/
  background: linear-gradient(-135deg, transparent 70%, rgb(32 29 71 / 0%) 75%) 0 50%, linear-gradient(-135deg, transparent 70%, rgb(32 29 71 / 0%) 75%) 0 50%;
  background-repeat: repeat-y;
  background-position: right;
  background-size: 25px 8px, 25px 8px;
}

.modal-bonus .modal-title {
  display: flex;
  justify-content: space-between;
  color: #3D6D65;
  font-size: 1.2rem;
  margin: 15px 20px 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(61, 109, 101, 0.2);
}

.modal-bonus .modal-title h1 {
  color: #3D6D65;
  font-weight: 600;
  margin: 0;
}

.modal-bonus .btn-reedem {
  margin: 10px auto;
  width: 85%;
  background: #3D6D65;
  padding: 12px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.modal-bonus .btn-reedem:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(61, 109, 101, 0.4);
  background: linear-gradient(135deg, #3D6D65 0%, #2a4d47 100%);
}

.btn-reedem:active {
  box-shadow: 0 0 0;
}

.modal-bonus .message-error {
  width: 100%;
  background: #dc3545;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  font-size: 1rem;
  margin: 15px 0;
  border-radius: 10px;
  border: 2px solid rgba(220, 53, 69, 0.3);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.modal-bonus .message-error.success {
  background: #28a745 !important;
  border-color: rgba(40, 167, 69, 0.3);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

/* Modal Bonus Input Styling */
.modal-bonus .modal-body {
  padding: 20px;
}

.modal-bonus .input-group {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.modal-bonus .input-group .label-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.modal-bonus .input-group .label-text {
  position: absolute;
  left: 45px;
  top: -8px;
  background: #E6D9B8;
  padding: 0 8px;
  z-index: 2;
  font-size: 0.85rem;
}

.modal-bonus .input-group .input-login {
  padding-left: 45px !important;
}

.modal-bonus .input-login {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(61, 109, 101, 0.3);
  color: #3D6D65;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(61, 109, 101, 0.1);
}

.modal-bonus .input-login:focus {
  outline: none;
  border-color: #3D6D65;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(61, 109, 101, 0.2);
}

.modal-bonus .input-login::placeholder {
  color: rgba(61, 109, 101, 0.6);
}

.modal-bonus .label-text {
  color: #3D6D65;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 0.95rem;
}

.modal-bonus .label-icon {
  color: #3D6D65;
}

.modal-bonus .btn-close-modal {
  color: #3D6D65;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.modal-bonus .btn-close-modal:hover {
  color: #2a4d47;
  transform: scale(1.1);
}

/* MODAL USERS */
.modal.modal-users {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateX(-100%);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 1001 !important;
}

.modal.modal-users.open {
  transform: translateX(0%) !important;
}

.modal.modal-users .modal-content {
  background: #F9F3DD !important;
  border-radius: 15px !important;
  padding: 20px !important;
  max-width: 500px !important;
  width: 90% !important;
  max-height: 80vh !important;
  overflow-y: auto !important;
  border: 2px solid #D4C7A5 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), inset 0 2px 4px rgba(0,0,0,0.1), inset 0 -2px 4px rgba(255,255,255,0.8) !important;
}

.modal-users .modal-title {
  display: flex;
  justify-content: space-between;
  color: #4A4A4A !important;
  font-size: .8rem;
  margin: 10px 0 20px;
}

.modal-users .modal-title h1 {
  color: #4A4A4A !important;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal.modal-users form .row {
  gap: 10px;
  flex-wrap: wrap;
}

.modal-users .input-group {
  flex: 1 0 170px;
  margin-bottom: 15px !important;
}

.modal-users .input-group input {
  background: #E6D9B8 !important;
  border: 2px solid #D4C7A5 !important;
  color: #4A4A4A !important;
  padding: 12px !important;
  border-radius: 10px !important;
  width: 100% !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), inset 0 1px 2px rgba(0,0,0,0.1) !important;
}

.modal-users .input-group label {
  color: #4A4A4A !important;
  margin-bottom: 5px !important;
  display: block !important;
  font-weight: 600 !important;
}

.modal-users .btn-save {
  margin: 20px 0 10px;
  width: 100%;
  background: #4db6ac !important;
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 700;
  color: #F9F3DD !important;
  border: 2px solid #4db6ac;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), inset 0 1px 2px rgba(255,255,255,0.8);
  transition: all 0.2s ease;
  cursor: pointer;
}

.modal-users .btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-save:active {
  box-shadow: 0 0 0;
}

.btn-open {
  background: var(--primary);
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 5px 5px rgb(0, 0, 0, .2);
}

.modal-users .message-error {
  width: 100%;
  background: #d73527 !important;
  text-align: center;
  color: #F9F3DD !important;
  font-weight: 700;
  padding: 12px;
  font-size: 1rem;
  margin: 20px 0 10px;
  border-radius: 10px;
  border: 2px solid #c73127;
}

.modal-users .message-error.success {
  background: #4db6ac !important;
  color: #F9F3DD !important;
  border: 2px solid #3da399;
}

/* MODAL BANCO */
.modal.modal-bank {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.modal-bank.open {
  transform: translateX(0%);
}

.modal.modal-bank .modal-content {
  max-width: 1200px !important;
  width: 100% !important;
  background: #E6D9B8;
}

.modal-bank .modal-title .content-modal-title:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 5px;
}

.modal-bank .modal-title .content-modal-title:first-child h1 {
  font-weight: 500;
  font-size: 1.5rem;
  color: #3D6D65;
}

.modal-bank .modal-title .content-modal-title:last-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid rgba(61, 109, 101, 0.3);
}

.modal-bank .modal-title .content-modal-title:last-child .user-status {
  border: 2px solid rgba(61, 109, 101, 0.5);
  padding: 5px 10px;
  border-radius: 100px;
  color: #3D6D65;
  margin: 15px 0px;
}

.modal-bank .modal-title .content-modal-title:last-child .user-status h1 {
  font-size: 1rem;
  font-weight: 500;
}

.modal-bank .modal-title .content-modal-title:last-child .user-status h1 span {
  color: #3D6D65;
  font-weight: 600;
}


.modal-bank .btn-withdraw,
.modal-bank .btn-deposit {
  font-size: 1.2rem; font-weight: 700;
  color: rgba(61, 109, 101, 0.6); margin: 0px 20px;
  padding: .5rem 0; transition: all 0.3s ease;
}

.modal-bank .btn-withdraw.active,
.modal-bank .btn-deposit.active {
  border-bottom: 3px solid #3D6D65; color: #3D6D65;
  font-weight: 800;
}

.modal-bank .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-bank .modal-footer .buttons-footer {
  display: none;
}

.modal-bank .modal-footer .buttons-footer.d-flex {
  display: flex !important;
}

/* Force visibility of all deposit buttons */
.modal-bank .container-select-deposit .btn-deposit-request {
  display: block !important;
  visibility: visible !important;
}

.modal-bank .modal-footer .btn-deposit-request {
  display: block !important;
  visibility: visible !important;
}

.modal-bank .modal-footer .buttons-footer.d-none {
  display: none !important;
}

/* Mobile responsive - force display of buttons */
@media (max-width: 768px) {
  .modal-bank .modal-footer .buttons-footer {
    display: flex !important;
  }
  
  .modal-bank .modal-footer .buttons-footer.d-flex {
    display: flex !important;
  }
  
  .modal-bank .btn-deposit-request {
    min-width: 90%;
    width: 90%;
    margin: 10px auto;
  }
}

.modal-bank .container-select-deposit {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.modal-bank .btn-deposit-request {
  display: block !important;
  visibility: visible !important;
  margin: 10px auto;
  background: #3D6D65;
  padding: 15px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  min-width: 280px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(61, 109, 101, 0.3);
  transition: .2s ease-in-out;
  border: none;
  cursor: pointer;
}

.modal-bank .btn-deposit-request:hover {
  transform: scale(1.040);
  box-shadow: 0 0 0 #000;
}

.modal-bank .btn-deposit-cancel {
  display: none; margin: 15px auto;
  background: linear-gradient(135deg, #3D6D65 0%, #2a4d47 100%); padding: 18px 25px;
  border-radius: 12px; font-size: 1.1rem;
  font-weight: 700; min-width: 300px;
  color: #fff; box-shadow: 0 8px 25px rgba(61, 109, 101, 0.3);
  transition: all 0.3s ease; text-transform: uppercase;
  letter-spacing: 1px; border: none;
  cursor: pointer;
}

.modal-bank .btn-deposit-cancel:hover {
  transform: translateY(-2px); box-shadow: 0 12px 35px rgba(61, 109, 101, 0.4);
  background: linear-gradient(135deg, #2a4d47 0%, #3D6D65 100%);
}

.modal-bank .modal-footer .message-error {
  width: 100%;
  background: var(--danger);
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  font-size: 1rem;
  margin: 10px 0 0;
  border-radius: 5px;
}

.modal-bank .modal-footer .message-error.success {
  background: var(--primary) !important;
}

/* SWAL DEPOSIT */
.item-swal-bank {
  font-size: 1rem;
  color: var(--danger);
}

.subtitle-swal-bank {
  font-size: .9rem;
  margin: 15px 0 5px;
  color: rgb(255 255 255 / 80%);
}

.title-swal-bank {
  font-size: 1rem;
  color: var(--danger);
}









































/* HEADER MODAL */
.modal-bank-user>.modal-header {
  border-bottom: none;
  padding: 1rem 2rem;
}

.modal-bank-user>.modal-header .modal-title {
  font-weight: 400;
  font-size: 24px;
  color: rgb(255 255 255 / 50%);
}

.modal-bank-user>.modal-select-options {
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid #E6E6E6;
}

.modal-bank-user>.modal-select-options .btn-deposit,
.btn-withdraw {
  padding: .5rem 0; margin: 0 1rem;
  cursor: pointer; font-weight: 700;
  font-size: 1.1rem; color: rgba(61, 109, 101, 0.7);
  transition: all 0.3s ease;
}

.btn-deposit.active,
.btn-withdraw.active {
  color: #2a5248 !important; border-bottom: 3px solid #3D6D65;
  font-weight: 800;
}

/* CONTAINER MP PAYMENT */
.container-payment-purchase {
  display: none;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

.container-payment-purchase.d-none {
  display: none !important;
}

.container-payment-purchase.d-flex {
  display: flex !important;
}

/* HEADER STAGES */
.header-stages {
  width: 100%;
  display: flex;
  margin: 2px 0px 1px;
}

.header-stages h1 {
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  color: #3D6D65;
}

.header-stages span {
  font-size: 14px;
  font-weight: 500;
  color: #3D6D65;
  border-bottom: 2px solid rgba(61, 109, 101, 0.3);
  width: 100%;
  align-self: flex-end;
  text-align: end;
  margin-left: .2rem;
}

/* BODY MODAL */
.modal-body-bank.d-none {
  display: none !important;
}

.modal-body-bank.d-flex {
  display: flex !important;
}

.modal-body-bank {
  display: flex;
  justify-content: center !important;
  flex-direction: row !important;
  align-items: self-start !important;
  flex-wrap: wrap;
}

.container-payment-purchase.pix {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 30px;
  text-align: center;
}

.container-pix {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container-pix .content-pix img {
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #3D6D65;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(61, 109, 101, 0.3);
}

.container-pix .btn-copy-code {
  background: #3D6D65;
  width: 250px;
  color: #fff;
  padding: 20px;
  margin: 25px 0 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(61, 109, 101, 0.3);
  text-transform: uppercase;
  font-weight: 700;
}

.container-pix .btn-payment-confirmation {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  width: 250px;
  color: #fff;
  padding: 18px;
  margin: 0 0 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.container-pix .btn-payment-confirmation:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.stage-one,
.stage-two,
.stage-three,
.notice-deposit {
  padding: 25px 10px;
  width: 100%;
}

.container-payment-deposit,
.container-bank-deposit {
  width: 100%;
  max-width: 550px;
}

/* STAGE 1 */
.stage-one {
  display: flex;
  flex-direction: column;
}

.body-stages.body-stage-one {
  display: flex;
  flex-direction: column;
}

.body-stages.body-stage-one>.subtitle-stage-one {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #3D6D65;
  margin: 15px 10px;
}

.body-stages.body-stage-one>.select-method-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.rules-deposit {
  font-size: .9rem !important;
  color: var(--danger) !important;
  font-weight: bold !important;
  margin: 20px 10px 10px !important;
  text-align: center;
}

.rules-deposit.ul {
  margin: 0px 10px !important;
  text-transform: uppercase;
}

ul li.rules-deposit {
  margin: 0px 10px !important;
  text-transform: uppercase;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment {
  border-radius: 5px;
  border: 1px solid #C7C7C7;
  padding: 1rem;
  margin: 5px 10px;
  width: 150px;
  height: 65px;
  text-align: center;
  flex: 1;
  position: relative;
  transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.body-stages.body-stage-one>.select-method-payments .btn-payment.disabled {
  opacity: .6;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment.disabled:hover {
  transform: scale(1);
  border: 1px solid #c7c7c7;
  box-shadow: none;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment img {
  width: 85px;
}

.body-stages.body-stage-one>.select-method-payments .btn-payment.active {
  border: 1px solid #3D6D65;
  background: rgba(61, 109, 101, 0.1);
}

.btn-payment.active::after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  width: 25px;
  height: 25px;
  background: #3D6D65;
  color: #fff !important;
  position: absolute;
  border: 3px solid #E6D9B8;
  border-radius: 100%;
  top: -12px;
  right: -10px;
  transition: 1s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.body-stages.body-stage-one>.select-method-payments .btn-payment:hover,
.btn-payment:focus {
  transform: scale(1.050);
  border: 1px solid #3D6D65;
  box-shadow: 0 5px 10px rgba(61, 109, 101, 0.2);
}

/* STAGE 2 */
.body-stages.body-stage-two {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.value-stage-two,
.coupon-stage-two {
  margin: 5px;
}

.input-value-group:not(.modal-quotation-calculator .input-value-group) {
  position: relative;
  width: 230px;
  font-size: 1.2rem;
  margin: 0 auto;
}

.input-value-group:not(.modal-quotation-calculator .input-value-group)>span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.input-value-group:not(.modal-quotation-calculator .input-value-group)>span:first-child {
  left: 15px;
  color: #3D6D65;
  font-weight: 300;
  font-size: 1rem;
}

.input-value-group:not(.modal-quotation-calculator .input-value-group)>span:last-child {
  right: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #3D6D65;
}

.input-value:not(.modal-quotation-calculator .input-value) {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(61, 109, 101, 0.2) !important;
  padding: 8px 50px 8px 35px;
  width: 230px;
  text-align: end;
  font-size: 1.5rem;
  font-weight: 500;
  color: #3D6D65;
  border-radius: 10px;
}

.input-value.is-invalid {
  border-color: var(--danger) !important;
}

.input-value-stage-two h2 {
  font-weight: 400;
  font-size: 14px;
  color: #3D6D65;
  margin: 3px 0px;
  text-align: center;
}

.coupon-stage-two h2 {
  font-weight: 400;
  font-size: 14px;
  color: rgb(255 255 255 / 50%);
  margin: 15px 0px;
}

.input-coupon-stage-two {
  display: flex;
}

.input-message {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: bold;
  font-size: 0.94rem;
}

.input-coupon-stage-two>.input-coupon {
  background: var(--bg-secondary);
  border: 1px solid var(--text-secondary);
  padding: 15px;
  text-align: end;
  font-weight: 400;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  border-radius: 5px 0 0 5px;
  width: 140px;
  text-align: start;
  text-transform: uppercase;
}

.input-coupon-stage-two>.input-coupon::placeholder {
  text-transform: lowercase;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit {
  color: #fff;
  background: #2A5248;
  border-radius: 0px 5px 5px 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  opacity: .5;
  transition: .2s all ease-in-out;
  box-shadow: 0 0 10px #2A524829;
  min-width: 115px;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit.remove-coupon {
  background: #c7c7c7 !important;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit.remove-coupon:hover {
  background: #a7a6a6 !important;
}

.input-coupon:focus {
  border-color: #2A5248;
}

.input-coupon:focus+.validateCouponDeposit {
  opacity: 1;
}

.input-coupon-stage-two>.btn-stage-two.validateCouponDeposit:hover {
  opacity: 1;
}

/* VALIDATE INPUT CLASS */
.input-coupon.validateCheck {
  border-color: #2A5248;
  font-weight: bold;
  text-transform: uppercase;
}

.input-coupon.validateCheck::after {
  content: 'Cupom aplicado';
  position: absolute;
  top: 0px;
  font-size: 1rem;
  color: #2A5248;
}

.input-coupon.validateCheck+.validateCouponDeposit {
  opacity: 1;
}

.input-coupon.is-invalid {
  border-color: var(--danger);
}

.input-coupon.is-invalid+.validateCouponDeposit {
  opacity: 1;
  background: var(--danger);
}

.input-value:not(.modal-quotation-calculator .input-value):focus {
  border-bottom: 2px solid #2A5248 !important;
}

/* NOTICE DEPOSIT */
.notice-deposit {
  display: flex;
  flex-direction: column;
}

.notice-deposit .title-notice {
  display: flex;
}

.notice-deposit .title-notice>h1 {
  font-weight: 500;
  font-size: 35px;
  color: #ff6b35;
}

.notice-deposit>.subtitle-notice {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}

.notice-deposit .title-notice>h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0);
  align-self: flex-end;
  margin: 5px;
}

.notice-deposit>.subtitle-notice>.adjectives {
  display: flex;
}

.notice-deposit>.subtitle-notice>.adjectives span {
  background: #2A5248;
  border-radius: 100px;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFF;
  padding: 4px 18px;
  margin: 5px 3px;
}

/* STAGE 3 */
/* BODY PIX */
.body-three .body-pix h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgb(255 255 255 / 50%);
  margin: 15px 10px;
}

/* .body-three .body-pix .btn-next-payment:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

.body-three .body-pix .btn-next-payment:before {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    font-size: 1rem;
    opacity: 0;
    transform: translate(-100%, 0);
    transition: all .3s ease-in-out;
}

.body-three .body-pix .btn-next-payment:hover div {
    opacity: 0;
    transform: translate(100%, 0);
} */

.body-three .body-pix .btn-next-payment div {
  text-transform: uppercase;
  font-size: 1rem;
  transition: all .3s ease-in-out;
}

.body-three .body-pix .btn-next-payment:disabled {
  pointer-events: none;
}

.body-three .body-pix .payment-data {
  margin: 30px 0px;
  text-align: center;
}

.body-three .body-pix .payment-data h3 {
  font-size: 18px;
  color: rgb(255 255 255 / 50%);
  font-weight: 400;
}

.body-three .body-pix .payment-data h3 span {
  color: var(--primary);
  font-weight: 500;
}

.body-three .body-pix .payment-data h3 .couponValueText {
  font-size: 20px;
  color: var(--success);
  font-weight: bold;
  margin: 0px 5px;
}

.checkExistingCoupon {
  font-weight: bold !important;
}

.checkExistingCoupon i {
  color: var(--primary) !important;
}

.container-payment.pix {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 20px;
}

.container-payment.pix img {
  border-radius: 5px;
  border: 2px solid var(--primary);
  padding: 15px;
  width: 200px;
  box-shadow: 0 10px 15px #00000069;
}

/* BODY MP */
.body-three .body-mp h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgb(255 255 255 / 50%);
}

.body-three .body-mp button {
  background: var(--primary);
  border-radius: 100px;
  padding: 10px 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFF;
  opacity: .6;
  transition: .2s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
  margin: auto;
}

.body-three .body-mp .btn-next-payment {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  width: 280px;
  border-radius: 100px;
  padding: 10px 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #FFF;
  opacity: .6;
  transition: .2s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
  margin: 20px auto;
  cursor: pointer;
}

/* .body-three .body-mp .btn-next-payment:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

.body-three .body-mp .btn-next-payment:before {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    font-size: 1rem;
    opacity: 0;
    transform: translate(-100%, 0);
    transition: all .3s ease-in-out;
}

.body-three .body-mp .btn-next-payment:hover div {
    opacity: 0;
    transform: translate(100%, 0);
} */

.body-three .body-mp .btn-next-payment div {
  text-transform: uppercase;
  font-size: 1rem;
  transition: all .3s ease-in-out;
}

.body-three .body-mp .btn-next-payment:disabled {
  pointer-events: none;
}

.body-three .body-mp button:hover {
  opacity: 1;
  transform: scale(1.040);
}

.body-three .body-mp .payment-data {
  margin: 30px 0px;
  text-align: center;
}

.body-three .body-mp .payment-data h3 {
  font-size: 18px;
  color: rgb(255 255 255 / 50%);
  font-weight: 400;
}

.body-three .body-mp .payment-data h3 span {
  color: #373737;
  font-weight: 500;
}

.body-three .body-mp .payment-data h3 .couponValueText {
  font-size: 18px;
  color: var(--success);
  font-weight: bold;
  margin: 0px 5px;
}

.container-payment.mp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 20px;
}

.container-payment.mp img {
  border-radius: 15px;
  padding: 20px 80px;
  width: 280px;
  border: 1px solid #C7C7C7;
  box-shadow: 0 5px 15px #00000029;
}

/* WITHDRAW */
.value-avaible-withdraw {
  display: flex; justify-content: center;
  align-items: center;
}

.container-info-whithdraw {
  width: 100%; max-width: 550px;
  background: #E6D9B8; border-radius: 15px;
  padding: 25px; margin: 20px;
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.15);
  border: 2px solid rgba(61, 109, 101, 0.1);
}

.container-history-withdraw {
  width: 100%; max-width: 550px;
  padding: 40px 20px;
}

.available-value {
  align-self: flex-end;
}

.text-available-value {
  font-style: normal; font-weight: 500;
  font-size: 16px; line-height: 20px;
  color: #3D6D65; margin: 20px 0px 20px 20px;
  background: rgba(61, 109, 101, 0.1); padding: 15px 20px;
  border-radius: 10px; border-left: 4px solid #3D6D65;
}

.text-available-value span {
  color: #3D6D65; font-weight: bold;
  font-size: 18px;
}

.finish-withdraw {
  margin-left: auto; padding: 20px;
}

.btn-finish-withdraw {
  margin: 15px auto; background: linear-gradient(135deg, #3D6D65 0%, #2a4d47 100%);
  padding: 18px 25px; border-radius: 12px;
  font-size: 1.1rem; font-weight: 700;
  min-width: 300px; color: #fff;
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.3); transition: all 0.3s ease;
  text-transform: uppercase; letter-spacing: 1px;
  border: none; cursor: pointer;
}

.btn-finish-withdraw:hover {
  transform: translateY(-2px); box-shadow: 0 12px 35px rgba(61, 109, 101, 0.4);
  background: linear-gradient(135deg, #2a4d47 0%, #3D6D65 100%);
}

.container-warn {
  background: rgba(220, 53, 69, 0.1); border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: 15px; padding: 30px;
  margin: 30px 0; width: 100%;
  max-width: 600px; box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.container-warn h1 {
  font-weight: 700; font-size: 1.2rem;
  line-height: 24px; color: #dc3545;
  margin-bottom: 20px; display: flex;
  align-items: center;
}

.container-warn h1::before {
  content: "⚠️"; margin-right: 12px;
  font-size: 1.4rem;
}

.container-warn p {
  font-style: normal; font-weight: 400;
  font-size: 1.1rem; line-height: 24px;
  color: #3D6D65; margin: 12px 0;
  padding: 0 5px;
}

.container-warn p span {
  color: #dc3545; font-weight: bold;
}

.withdrawal-request {
  width: 100%;
  background: #E6D9B8;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(61, 109, 101, 0.1);
  border: 1px solid rgba(61, 109, 101, 0.2);
  transition: all 0.3s ease;
}

.withdrawal-request:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.2);
}

.column-withdrawal-request {
  color: #3D6D65;
  font-weight: 600;
}

.column-withdrawal-request:last-child {
  justify-content: flex-end;
}

.withdrawal-request.waiting .row-withdrawal-request {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border-left: 4px solid #ffc107;
}

.withdrawal-request.waiting .status-withdraw {
  color: #ff8c00;
  background: rgba(255, 193, 7, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  margin: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.withdraw-request {
  border: 2px solid rgba(61, 109, 101, 0.2);
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E6D9B8 0%, rgba(230, 217, 184, 0.8) 100%);
  margin-bottom: 15px;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(61, 109, 101, 0.15);
}

.withdrawal-request.waiting .status-withdraw {
  content: "Aguardando";
  color: #ff8c00;
  background: rgba(255, 193, 7, 0.2);
  padding: 10px 18px;
  border-radius: 25px;
  margin: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.withdrawal-request.processing .status-withdraw {
  content: "Processando" !important;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(86, 202, 152, 0.2) 100%);
  color: #28a745;
  padding: 10px 18px;
  border-radius: 25px;
  margin: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(40, 167, 69, 0.3);
}

.container-withdrawal-request {
  background: rgba(230, 217, 184, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.row-withdrawal-request {
  display: flex;
  border-radius: 12px;
  padding: 15px;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.withdrawal-request.waiting .row-withdrawal-request {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
  border-left: 4px solid #ffc107;
}

.withdrawal-request.processing .row-withdrawal-request {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(86, 202, 152, 0.05) 100%);
  border-left: 4px solid #28a745;
}
.column-withdrawal-request {
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 12px;
  color: #3D6D65;
  padding: 5px 10px;
}

.column-withdrawal-request:nth-child(1) {
  justify-content: flex-start;
  font-weight: 700;
}

.column-withdrawal-request:nth-child(4) {
  justify-content: flex-end;
}

/* history withdraw */
.content-history {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(230, 217, 184, 0.3);
  border-radius: 20px;
  padding: 40px 20px;
  margin: 20px;
  border: 2px solid rgba(61, 109, 101, 0.1);
}

.content-history h5 {
  text-align: center;
  font-size: 1.6rem;
  margin: 15px;
  color: #3D6D65;
  font-weight: 600;
}

.content-history .content-span-history {
  margin: 25px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(61, 109, 101, 0.1) 0%, rgba(61, 109, 101, 0.05) 100%);
  border-radius: 50%;
  color: #3D6D65;
  border: 3px solid rgba(61, 109, 101, 0.2);
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.15);
}

.content-history .content-span-history i {
  font-size: 2.5rem;
}

.content-history h2 {
  font-weight: 500;
  font-size: 1.1rem;
  color: #3D6D65;
  opacity: 0.8;
  text-align: center;
  margin-top: 10px;
}

/* Select method withdraw */
.select-method-withdraw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(230, 217, 184, 0.2);
  border-radius: 15px;
  margin: 15px 0;
}

/* Hide PIX key buttons initially when auto-populate is available */
.auto-populate-options ~ .select-method-withdraw .btn-method-withdraw {
  display: none;
}

.auto-populate-options ~ .select-method-withdraw .input-method-withdraw {
  display: none;
}

/* Auto-populate checkboxes styles */
.auto-populate-options {
  background: rgba(61, 109, 101, 0.1);
  padding: 15px;
  border-radius: 12px;
  margin: 10px 0;
  border: 2px solid rgba(61, 109, 101, 0.2);
}

.auto-populate-title {
  color: #3D6D65;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  color: #3D6D65;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 12px;
  background: rgba(230, 217, 184, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(61, 109, 101, 0.2);
  font-size: 0.9rem;
}

.checkbox-label:hover {
  background: rgba(230, 217, 184, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(61, 109, 101, 0.1);
}

.auto-populate-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  accent-color: #3D6D65;
  cursor: pointer;
}

.auto-populate-checkbox:checked + .checkmark {
  background-color: #3D6D65;
}

.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

@media only screen and (max-width: 600px) {
  .auto-populate-options {
    padding: 12px;
    margin: 8px 0;
  }
  
  .checkbox-label {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  
  .auto-populate-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

/* Readonly input styling */
.input-method-withdraw[readonly] {
  background: rgba(61, 109, 101, 0.1) !important;
  color: #3D6D65 !important;
  cursor: not-allowed;
  border-color: #3D6D65 !important;
  font-weight: 600;
}

.input-method-withdraw[readonly]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(61, 109, 101, 0.2);
}

/* MODAL TUTORIAIS */
.modal-tutorials .modal-content {
  max-width: 1000px !important;
  width: 95% !important;
  background: #E6D9B8;
  border: 2px solid #D4C7A5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 15px;
  position: relative;
  margin: 20px auto;
}

.modal-tutorials .modal-title {
  background: linear-gradient(135deg, #3D6D65 0%, #2a4d47 100%);
  color: #F9F3DD;
  padding: 20px;
  margin: -20px -20px 20px -20px;
  border-radius: 15px 15px 0 0;
  border-bottom: 2px solid #D4C7A5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-tutorials .modal-title h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #F9F3DD;
}

.modal-tutorials .btn-close-modal {
  color: #F9F3DD;
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-tutorials .btn-close-modal:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.modal-body-tutorials {
  padding: 25px;
  max-height: 75vh;
  overflow-y: auto;
  background: #E6D9B8;
  display: block !important;
  visibility: visible !important;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 10px;
  visibility: visible !important;
  opacity: 1 !important;
}

.tutorial-item {
  background: linear-gradient(135deg, #F9F3DD 0%, #E6D9B8 100%);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #D4C7A5;
  box-shadow: 0 6px 20px rgba(61, 109, 101, 0.15);
}

.tutorial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(61, 109, 101, 0.25);
  border-color: #3D6D65;
}

.tutorial-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #2a4d47;
}

.tutorial-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tutorial-item:hover .tutorial-thumbnail img {
  transform: scale(1.08);
}

.tutorial-thumbnail .fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: #F9F3DD;
  background: rgba(61, 109, 101, 0.9);
  border-radius: 50%;
  padding: 25px;
  opacity: 0.9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tutorial-item:hover .tutorial-thumbnail .fas {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(42, 77, 71, 0.95);
}

.tutorial-item h3 {
  color: #3D6D65;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 18px;
  margin-bottom: 10px;
}

.tutorial-item p {
  color: #6B5B3D;
  font-size: 0.95rem;
  margin: 0 18px 18px;
  line-height: 1.5;
  font-weight: 500;
}

/* Video Player */
.video-player-container {
  animation: fadeIn 0.3s ease;
  background: #E6D9B8;
  border-radius: 12px;
  padding: 20px;
  display: none;
  visibility: visible;
}

.video-player-container.d-none {
  display: none !important;
}

.video-player-container.show {
  display: block !important;
}

.video-player-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D4C7A5;
}

.btn-back-to-list {
  background: linear-gradient(135deg, #3D6D65 0%, #2a4d47 100%);
  color: #F9F3DD;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 20px;
  box-shadow: 0 4px 12px rgba(61, 109, 101, 0.3);
}

.btn-back-to-list:hover {
  background: linear-gradient(135deg, #2a4d47 0%, #3D6D65 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 109, 101, 0.4);
}

.video-title {
  color: #3D6D65;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.video-player {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 3px solid #D4C7A5;
  position: relative;
  min-height: 400px;
}

.video-player iframe {
  width: 100% !important;
  height: 400px !important;
  border: none;
  display: block;
}

.fullscreen-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(61, 109, 101, 0.9);
  color: #F9F3DD;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.fullscreen-btn:hover {
  background: rgba(42, 77, 71, 1);
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Estilos para vídeo no mesmo lugar do thumbnail */
.tutorial-item.video-active {
  cursor: default;
  background: #000;
  border-color: #3D6D65;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.tutorial-item.video-active:hover {
  transform: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.btn-close-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(61, 109, 101, 0.9);
  color: #F9F3DD;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-close-video:hover {
  background: rgba(42, 77, 71, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-close-video:active {
  transform: scale(0.95);
}

@media only screen and (max-width: 768px) {
  .tutorials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 5px;
  }
  
  .modal-tutorials .modal-content {
    width: 98% !important;
    margin: 5px;
    max-height: 90vh;
  }
  
  .tutorial-thumbnail {
    height: 180px;
  }
  
  .video-player iframe {
    height: 250px !important;
  }
  
  .video-player-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .btn-back-to-list {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .tutorial-item h3 {
    font-size: 1.1rem;
  }
  
  .tutorial-item p {
    font-size: 0.9rem;
  }
}

.btn-method-withdraw {
  margin: 8px;
  border-radius: 12px;
  border: 2px solid rgba(61, 109, 101, 0.3);
  color: #3D6D65;
  padding: 15px 25px;
  max-width: 180px;
  font-size: 1rem;
  min-width: 120px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(230, 217, 184, 0.8) 0%, #E6D9B8 100%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(61, 109, 101, 0.1);
}

.btn-method-withdraw:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.2);
  border-color: #3D6D65;
}

.btn-method-withdraw:disabled {
  transform: scale(1);
  border: 2px solid rgba(61, 109, 101, 0.2) !important;
  background: rgba(230, 217, 184, 0.3);
  color: rgba(61, 109, 101, 0.5);
  box-shadow: none;
  cursor: not-allowed;
}

.btn-method-withdraw.active {
  border-color: #3D6D65;
  background: linear-gradient(135deg, #3D6D65 0%, #2a4d47 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 109, 101, 0.3);
}

.btn-method-withdraw.active::before {
  font-family: 'Font Awesome 5 Free';
  content: "\f00c";
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  width: 28px;
  height: 28px;
  background: #28a745;
  color: #fff !important;
  position: absolute;
  border: 3px solid #E6D9B8;
  border-radius: 50%;
  top: -14px;
  right: -12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.input-method-withdraw {
  flex: 1;
  background: rgba(230, 217, 184, 0.8);
  border-radius: 10px;
  border: 2px solid rgba(61, 109, 101, 0.3);
  color: #3D6D65;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(61, 109, 101, 0.1);
}

.input-method-withdraw:focus {
  border-color: #3D6D65;
  box-shadow: 0 0 0 3px rgba(61, 109, 101, 0.1);
  outline: none;
}

.content-input-withdraw {
  position: relative;
  width: 250px;
  font-size: 1.2rem;
  margin: 15px 0;
}

.content-input-withdraw>span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.content-input-withdraw>span:first-child {
  left: 18px;
  color: #3D6D65;
  font-weight: 500;
  font-size: 1.1rem;
}

.input-withdraw {
  background: rgba(230, 217, 184, 0.8);
  border: 2px solid rgba(61, 109, 101, 0.3) !important;
  padding: 15px 15px 15px 45px;
  width: 250px;
  text-align: end;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3D6D65;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(61, 109, 101, 0.1);
}

.input-withdraw:focus {
  border-color: #3D6D65 !important;
  box-shadow: 0 0 0 3px rgba(61, 109, 101, 0.1);
  outline: none;
  background: #E6D9B8;
}

.input-withdraw-stage-two h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #3D6D65;
  margin: 20px 0px 15px;
  text-align: center;
}

@media only screen and (max-width: 1221px) {
  .withdraw.hideMobile {
    display: none !important;
  }

  .modal-body-bank.withdraw.mobileWithdraw {
    flex-flow: wrap-reverse !important;
    align-content: start;
  }
}

@media only screen and (max-width: 1131px) {
  .hideMobile {
    display: none !important;
  }

  .notice-deposit>.subtitle-notice {
    align-self: center;
  }

  .notice-deposit>.title-notice {
    align-self: center;
  }
}

@media only screen and (max-width: 600px) {
  .container-payment.mp {
    display: none !important;
  }

  .notice-deposit {
    place-items: center !important;
  }

  .body-three .body-pix,
  .body-mp {
    text-align: center;
  }

  .finish-withdraw {
    margin: auto !important;
  }

  .value-avaible-withdraw {
    flex-direction: column !important;
  }

  .body-stages h2 {
    text-align: center !important;
  }

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

  .text-available-value {
    margin: 20px 0px !important;
  }

  .btn-method-withdraw {
    flex: 1;
  }

  .btn-method-withdraw.active {
    flex: 0;
  }
}

/* Social Sharing Buttons Styling */
.a2a_kit {
  margin-top: 10px !important; padding: 15px !important;
  background: rgba(230, 217, 184, 0.2) !important; border-radius: 12px !important;
  border: 1px solid rgba(61, 109, 101, 0.2) !important;
}

.a2a_kit a {
  margin: 0 8px !important; padding: 8px !important;
  border-radius: 8px !important; transition: all 0.3s ease !important;
  background: #3D6D65 !important; color: #E6D9B8 !important;
  width: 36px !important; height: 36px !important;
  display: inline-flex !important; align-items: center !important;
  justify-content: center !important; text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(61, 109, 101, 0.2) !important;
}

.a2a_kit a:hover {
  background: #E6D9B8 !important; color: #3D6D65 !important;
  transform: translateY(-2px) !important; box-shadow: 0 6px 15px rgba(61, 109, 101, 0.3) !important;
}

/* Calculadora de Cotações */
.calculator-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calculator-section {
  background: rgba(249, 243, 221, 0.3);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(61, 109, 101, 0.2);
}

.calculator-section h3 {
  margin: 0 0 10px 0;
  color: #2A5249;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-quotation-calculator .input-value-group {
  position: relative !important;
  width: 100% !important;
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  background: rgba(249, 243, 221, 0.8);
  border: 2px solid rgba(61, 109, 101, 0.3);
  border-radius: 6px;
  padding: 0 10px;
  height: 45px;
  transition: border-color 0.3s ease;
}

.modal-quotation-calculator .input-value-group:focus-within {
  border-color: #3D6D65;
  background: rgba(249, 243, 221, 0.9);
}

.modal-quotation-calculator .input-value-group span {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  color: #6c757d;
  font-weight: 600;
  margin-right: 5px;
  font-size: 1rem !important;
}

.modal-quotation-calculator .input-value {
  border: none !important;
  outline: none;
  background: transparent !important;
  flex: 1;
  font-size: 16px !important;
  font-weight: 600;
  color: #2A5249 !important;
  padding: 8px !important;
  width: auto !important;
  text-align: left !important;
  border-radius: 0 !important;
}

.modal-quotation-calculator .input-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(61, 109, 101, 0.3);
  border-radius: 6px;
  background: rgba(249, 243, 221, 0.8);
  font-size: 14px;
  font-weight: 500;
  color: #2A5249;
  outline: none;
  transition: all 0.3s ease;
}

.modal-quotation-calculator .input-select:focus {
  border-color: #3D6D65;
  background: rgba(249, 243, 221, 0.9);
  box-shadow: 0 0 0 3px rgba(61, 109, 101, 0.1);
}

.modal-quotation-calculator .input-select:disabled {
  background: rgba(230, 217, 184, 0.5);
  color: #6c757d;
  cursor: not-allowed;
}

/* Melhorar a visibilidade das opções no select */
.modal-quotation-calculator .input-select option {
  background: #F9F3DD;
  color: #2A5249;
  padding: 8px;
}

.modal-quotation-calculator .input-select option:hover,
.modal-quotation-calculator .input-select option:focus {
  background: #3D6D65;
  color: #F9F3DD;
}

.calculator-result {
  background: linear-gradient(135deg, #2A5249 0%, #3D6D65 100%);
  padding: 20px;
  border-radius: 8px;
  color: white;
  text-align: center;
}

.result-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-box h3 {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.result-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.result-currency {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.8;
}

.result-number {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.calculator-info {
  text-align: center;
  padding: 15px 0 0 0;
}

.calculator-info p {
  margin: 0;
  color: #6c757d;
  font-size: 12px;
  font-style: italic;
}

.calculator-info i {
  color: #2A5249;
  margin-right: 5px;
}

/* Modal específico para calculadora */
.modal-quotation-calculator {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 1030 !important;
}

.modal-quotation-calculator.open {
  transform: translateY(0%) !important;
}

.modal-quotation-calculator .modal-content {
  max-width: 500px;
  width: 90%;
  background: #E6D9B8 !important;
  border-radius: 15px !important;
  padding: 20px !important;
  border: 2px solid #D4C7A5 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), inset 0 2px 4px rgba(0,0,0,0.1), inset 0 -2px 4px rgba(255,255,255,0.8) !important;
}

.modal-quotation-calculator .modal-title {
  background: linear-gradient(135deg, #2A5249 0%, #3D6D65 100%);
  color: white;
  padding: 20px;
  margin: -20px -20px 20px -20px;
  border-radius: 10px 10px 0 0;
}

.modal-quotation-calculator .modal-title h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.modal-quotation-calculator .btn-close-modal {
  color: white;
  font-size: 1.2rem;
}

.modal-quotation-calculator .btn-close-modal:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .calculator-container {
    gap: 15px;
  }
  
  .calculator-section {
    padding: 12px;
  }
  
  .result-number {
    font-size: 24px;
  }
  
  .modal-quotation-calculator .modal-content {
    width: 95%;
  }
}

/* Quick Value Buttons for Deposit Modal */
.quick-value-buttons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 3px 0;
  justify-content: center;
  align-items: center;
}

.quick-value-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.quick-value-btn {
  padding: 8px 12px;
  border: 2px solid #3D6D65;
  border-radius: 8px;
  background: transparent;
  color: #3D6D65;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  min-width: 70px;
}

.quick-value-btn:hover {
  background: #3D6D65;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 109, 101, 0.3);
}

.quick-value-btn.active {
  background: #3D6D65 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(61, 109, 101, 0.4);
}

.quick-value-btn.fire-value {
  background: transparent !important;
  border-color: #ff6b35 !important;
  color: #ff6b35 !important;
  animation: fire-glow 2s ease-in-out infinite alternate;
  font-weight: bold;
}

.quick-value-btn.fire-value:hover {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-color: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.quick-value-btn.fire-value.active {
  background: linear-gradient(45deg, #ff6b35, #ff8e53) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(255, 107, 53, 0.5);
}

@keyframes fire-glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 142, 83, 0.6);
  }
}

.modal-quotation-calculator .input-select:focus {
  border-color: #3D6D65;
  background: rgba(249, 243, 221, 0.9);
  box-shadow: 0 0 0 3px rgba(61, 109, 101, 0.1);
}

.modal-quotation-calculator .input-select:disabled {
  background: rgba(230, 217, 184, 0.5);
  color: #6c757d;
  cursor: not-allowed;
}

/* Melhorar a visibilidade das opções no select */
.modal-quotation-calculator .input-select option {
  background: #F9F3DD;
  color: #2A5249;
  padding: 8px;
}

.modal-quotation-calculator .input-select option:hover,
.modal-quotation-calculator .input-select option:focus {
  background: #3D6D65;
  color: #F9F3DD;
}

.calculator-result {
  background: linear-gradient(135deg, #2A5249 0%, #3D6D65 100%);
  padding: 20px;
  border-radius: 8px;
  color: white;
  text-align: center;
}

.result-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-box h3 {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.result-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.result-currency {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.8;
}

.result-number {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.calculator-info {
  text-align: center;
  padding: 15px 0 0 0;
}

.calculator-info p {
  margin: 0;
  color: #6c757d;
  font-size: 12px;
  font-style: italic;
}

.calculator-info i {
  color: #2A5249;
  margin-right: 5px;
}

/* Modal específico para calculadora */
.modal-quotation-calculator {
  transition: .25s cubic-bezier(0.95, 0.01, 0.36, 1);
  transform: translateY(-100%);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 1030 !important;
}

.modal-quotation-calculator.open {
  transform: translateY(0%) !important;
}

.modal-quotation-calculator .modal-content {
  max-width: 500px;
  width: 90%;
  background: #E6D9B8 !important;
  border-radius: 15px !important;
  padding: 20px !important;
  border: 2px solid #D4C7A5 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), inset 0 2px 4px rgba(0,0,0,0.1), inset 0 -2px 4px rgba(255,255,255,0.8) !important;
}

.modal-quotation-calculator .modal-title {
  background: linear-gradient(135deg, #2A5249 0%, #3D6D65 100%);
  color: white;
  padding: 20px;
  margin: -20px -20px 20px -20px;
  border-radius: 10px 10px 0 0;
}

.modal-quotation-calculator .modal-title h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.modal-quotation-calculator .btn-close-modal {
  color: white;
  font-size: 1.2rem;
}

.modal-quotation-calculator .btn-close-modal:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .calculator-container {
    gap: 15px;
  }
  
  .calculator-section {
    padding: 12px;
  }
  
  .result-number {
    font-size: 24px;
  }
  
  .modal-quotation-calculator .modal-content {
    width: 95%;
  }
}

/* Quick Value Buttons for Deposit Modal */
.quick-value-buttons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 3px 0;
  justify-content: center;
  align-items: center;
}

.quick-value-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.quick-value-btn {
  padding: 8px 12px;
  border: 2px solid #3D6D65;
  border-radius: 8px;
  background: transparent;
  color: #3D6D65;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  min-width: 70px;
}

.quick-value-btn:hover {
  background: #3D6D65;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 109, 101, 0.3);
}

.quick-value-btn.active {
  background: #3D6D65 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(61, 109, 101, 0.4);
}

.quick-value-btn.fire-value {
  background: transparent !important;
  border-color: #ff6b35 !important;
  color: #ff6b35 !important;
  animation: fire-glow 2s ease-in-out infinite alternate;
  font-weight: bold;
}

.quick-value-btn.fire-value:hover {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-color: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.quick-value-btn.fire-value.active {
  background: linear-gradient(45deg, #ff6b35, #ff8e53) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(255, 107, 53, 0.5);
}

@keyframes fire-glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 142, 83, 0.6);
  }
}




/* Largura confortável da modal */
.modal-success .modal-content {
  width: min(560px, calc(100% - 24px));
}

/* Título mais compacto */
.modal-success__title {
  text-align: center;
  padding-bottom: 8px;
}
.modal-success__title img {
  width: 72px;
  height: 72px;
  margin: 0 auto 8px auto;
}

/* Corpo com menos espaços e tudo alinhado */
.modal-success__body {
  padding: 10px 14px 14px;
}

/* Card de resumo */
.summary-card {
  width: 100%;
  background: #fff;
  border: 1px solid #E6D9B8;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.summary-label {
  color: #2A5249;
  font-weight: 600;
  font-size: 13px;
}
.summary-value {
  color: #111;
  font-weight: 700;
  font-size: 13px;
}

/* Área da lista: rola na VERTICAL, nada de scroll lateral */
.games-wrap {
  max-height: 52vh;        /* ajuste fino aqui se quiser mais/menos altura */
  overflow: auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0;
}
/* base segue igual (NÃO mexe) */
.games-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.games-table th,
.games-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  word-break: break-word;
  vertical-align: top;
}
.games-table th {
  font-size: 12px;
  text-transform: uppercase;
  color: #2A5249;
  letter-spacing: .02em;
  text-align: left;
}
.games-table tr:last-child td { border-bottom: none; }

/* SOMENTE quando a tabela receber .card-mode */
@media (max-width: 480px) {
  .games-table.card-mode thead { display: none; }
  .games-table.card-mode,
  .games-table.card-mode tbody,
  .games-table.card-mode tr,
  .games-table.card-mode td { display: block; width: 100%; }

  .games-table.card-mode tr {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
  }
  .games-table.card-mode tr:last-child { border-bottom: none; }

  .games-table.card-mode td {
    display: flex;
    gap: 8px;
    padding: 4px 0;
  }
  .games-table.card-mode td::before {
    content: attr(data-label);
    min-width: 42%;
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .02em;
  }
}
/* container permite rolar horizontal se precisar */
#modal-apostas .games-wrap { overflow-x: auto; }

/* deixe o browser calcular as larguras normalmente */
#modal-apostas .games-table { width:100%; table-layout:auto; border-collapse:collapse; }

/* espaços decentes nas células */
#modal-apostas .games-table th,
#modal-apostas .games-table td {
  padding: 10px 12px;
  vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
}

/* títulos não quebrarem feio */
#modal-apostas .games-table th { white-space: nowrap; }

/* alinhamentos por coluna (ajuste se quiser) */
#modal-apostas .games-table td:nth-child(3) { text-align:center; } /* aposta */
#modal-apostas .games-table td:nth-child(4) { text-align:right; }  /* loteria */
/* esconde a 1ª coluna (th e td) só nessa tabela da modal */
#modal-apostas .games-table th:nth-child(1),
#modal-apostas .games-table td:nth-child(1) {
  display: none;
}
/* linhas verticalizadas dentro das células */
#modal-apostas .cell-line {
  display: block;
  padding: 2px 0;
  line-height: 1.25;
}

/* só pra manter o header bonito */
#modal-apostas .games-table th,
#modal-apostas .games-table td {
  padding: 10px 12px;
}

/* opcional: só ativa no mobile */
@media (min-width: 601px) {
  #modal-apostas .cell-line { display: inline; padding: 0; }
}

