@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.badge-popular {
  display: inline-block;
  background: linear-gradient(45deg, gold, orange);
  color: #000;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;

  background-image: url("/public/images/super-palpite-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.overlay {
  min-height: 100vh;
  padding: 45px 20px 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.78));

  display: flex;
  flex-direction: column;
  align-items: center;

  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.logo {
  width: 260px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 25px rgba(250, 204, 21, 0.45));
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  letter-spacing: 4px;
  color: #fff;

  margin-top: 0;
  margin-bottom: 30px;

  text-align: center;

  text-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
}

.hero-seo {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 30px;
  text-align: center;
}

.hero-seo h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-text {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-seo h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.7;
  }

}

.team-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.team-name {
  flex: 1;
}

.team-points {
  color: #22c55e;
  font-weight: 600;
}

.whatsapp-suporte {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  z-index: 9999;
}

.whatsapp-suporte img {
  width: 22px;
}

.whatsapp-suporte:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.password-strength {
  width: 100%;
  height: 6px;
  background: #1e293b;
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.stage {
  font-size: 12px;
  color: #facc15;
  font-weight: 600;
  margin-top: 3px;
}

.social-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
}

.main-social-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #ff7a00;
  color: white;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.main-social-btn:hover {
  transform: scale(1.1);
}

.social-menu {
  display: none;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.social-btn img {
  width: 20px;
}

.whatsapp {
  background: #25d366;
}

.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.email {
  background: linear-gradient(45deg, #2563eb, #0ea5e9);
}

.instagram-suporte {
  position: fixed;
  bottom: 80px;
  right: 25px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  /* mesmo do whatsapp */
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  z-index: 9999;
}

.instagram-suporte img {
  width: 22px;
}

.instagram-suporte:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.sponsors-footer {
  width: 100%;
  margin-top: 35px;

  padding: 35px 18px;

  box-sizing: border-box;

  background: linear-gradient(180deg,
      rgba(2, 6, 23, 0.10),
      rgba(2, 6, 23, 0.38));

  backdrop-filter: blur(6px);

  border: 1px solid rgba(250, 204, 21, 0.18);
  border-top: 2px solid rgba(250, 204, 21, 0.35);

  border-radius: 22px;

  box-shadow:
    0 0 35px rgba(250, 204, 21, 0.08),
    inset 0 0 45px rgba(0, 0, 0, 0.25);
}

.sponsors-footer-inner {
  max-width: 1100px;
  margin: auto;
}

.sponsors-footer-title {
  text-align: center;
  margin-bottom: 25px;
}

.sponsors-footer-title span {
  color: #facc15;
  font-weight: 900;
  font-size: 14px;
}

.sponsors-footer-title h2 {
  color: white;
  margin: 8px 0 0;
  font-size: 26px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sponsor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(250, 204, 21, .25);
  border-radius: 18px;
  text-decoration: none;
  color: white;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.sponsor-item img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 14px;
  background: white;
  padding: 6px;
}

.sponsor-item span {
  font-size: 15px;
  font-weight: 800;
}

.sponsor-partner-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(250, 204, 21, .14), rgba(249, 115, 22, .10));
  border: 1px solid rgba(250, 204, 21, .25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.sponsor-partner-box strong {
  color: #facc15;
  font-size: 18px;
}

.sponsor-partner-box p {
  margin: 4px 0 0;
  color: #cbd5e1;
  font-size: 14px;
}

.sponsor-partner-box a {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  white-space: nowrap;
}

@media(max-width:768px) {
  .sponsor-partner-box {
    flex-direction: column;
    text-align: center;
  }

  .sponsor-partner-box a {
    width: 100%;
    text-align: center;
  }
}



.championship {
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

td {
  color: #fff;
  vertical-align: middle;
}

.championship {
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.stage {
  font-size: 12px;
  color: #facc15;
  font-weight: 600;
  margin-top: 4px;
}

#strengthBar {
  height: 100%;
  width: 0%;
  transition: 0.3s;
}

#strengthText {
  font-size: 12px;
  margin-top: 4px;
}

/* NAV */
.top-nav {
  width: 100%;
  max-width: 1200px;
  min-height: 50px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  margin: 0 auto 18px;
  flex-wrap: wrap;

  position: relative;
  z-index: 999999;
}

.brand-space {
  width: 100%;
  height: 210px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo {
  width: 280px;
  max-width: 80%;
  filter: drop-shadow(0 0 26px rgba(250, 204, 21, 0.55));
}

.nav-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 8px;
  border-radius: 6px;
  margin-top: 6px;
  font-size: 13px;
  color: #f87171;
  display: none;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);

  left: 50%;
  transform: translateX(-50%);

  background: #1e293b;
  border-radius: 14px;
  min-width: 220px;

  z-index: 999999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
  padding: 10px;
}

.dropdown-content a {
  display: block;
  padding: 12px 14px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
}

.dropdown-content a:hover {
  background: #334155;
}

.nav-dropdown.active .dropdown-content {
  display: block;
}

@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    max-width: 312px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown .nav-btn {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    transform: none;
    left: auto;

    width: 100%;
    min-width: 100%;

    margin-top: 10px;
    box-sizing: border-box;
    padding: 10px;
  }

  .dropdown-content a {
    font-size: 16px;
    padding: 12px 18px;
    white-space: nowrap;
  }

}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.btn-login {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  color: white;
}

.btn-login:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #22c55e;
}

.btn-register {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-register:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (min-width: 769px) {
  .top-nav:has(.btn-register) {
    justify-content: flex-end;
    transform: none;
    padding-right: 80px;
  }
}

.btn-logout {
  background: #ef4444;
  color: white;
}

.btn-logout:hover {
  background: #dc2626;
}

.card {
  width: 100%;
  max-width: 1100px;

  margin: 20px auto;

  padding: 25px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  border-radius: 16px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);

  box-sizing: border-box;
}

.championship-btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: none;
  border-radius: 8px;
  background: #1e293b;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.championship-btn:hover {
  background: #2563eb;
}

.championship-select {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;

  outline: none;

  transition: 0.25s ease;
}

.championship-select:hover {
  border-color: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.championship-select:focus {
  border-color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.championship-select option {
  color: white;
  background: #111827;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 10px;
  text-align: center;
}

th {
  background: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  letter-spacing: 1px;
}

td {
  font-size: 14px;
}

td:first-child {
  text-align: left;
}

th {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

td {
  color: #fff;
}

/* ===== TABELA ===== */

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

th {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

td {
  font-size: 14px;
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

tbody tr:nth-child(even):hover {
  background: rgba(255, 255, 255, 0.06);
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.game-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.resultado {
  font-weight: bold;
  color: #22c55e;
}

.btn-apostar {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-apostar:hover {
  transform: scale(1.05);
}

.status-encerrado {
  color: #f87171;
  font-weight: bold;
}

.win {
  color: #22c55e;
  font-weight: bold;
  margin-top: 5px;
}

.lose {
  color: #ef4444;
  font-weight: bold;
  margin-top: 5px;
}

.countdown {
  font-size: 13px;
  font-weight: 600;
  color: #facc15;
  margin-top: 4px;
}

.countdown {
  font-weight: 600;
  color: #facc15;
}

.live-badge {
  font-size: 13px;
  font-weight: bold;
  color: #ef4444;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.85);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 2000;

  padding: 20px;

  box-sizing: border-box;
}

#termsModal {
  z-index: 3000;
}

#privacyModal {
  z-index: 4000;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111827;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-sizing: border-box;
}

.input-field {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  background: #e5e7eb;
  font-size: 14px;
}

select.input-field {
  appearance: none;
  background: #e5e7eb;
}

.terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  margin-bottom: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
}

.terms span {
  flex: 1;
  line-height: 1.4;
}

.terms input {
  margin-top: 3px;
}

.terms input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.terms a {
  color: #22c55e;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

.modal-box {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  padding: 30px;
  border-radius: 16px;
  width: 320px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.modal-btn {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(45deg, #22c55e, #16a34a);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.modal-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.modal-close {
  margin-top: 10px;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
}

.login-required-box {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-required-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  color: white;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65);
}

.login-required-icon {
  font-size: 46px;
  margin-bottom: 12px;
}

.login-required-card h3 {
  color: #facc15;
  margin: 0 0 10px;
  font-size: 24px;
}

.login-required-card p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.login-required-actions {
  display: flex;
  gap: 10px;
}

.login-required-actions button {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 800;
  cursor: pointer;
}

.login-required-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.login-required-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* ===== MOBILE PROFISSIONAL ===== */
@media (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
  }

  .overlay {
    max-width: 100%;
    width: 100%;
    padding: 18px 14px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.82));
  }

  .top-nav {
    position: static;
    margin: 0 auto 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .top-nav span {
    font-size: 14px;
    text-align: center;
  }

  .nav-btn {
    width: 100%;
    max-width: 312px;
  }

  .brand-space {
    height: 145px;
  }

  .site-logo {
    width: 190px;
    max-width: 85%;
  }


  h1 {
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .league-filters,
  .tabs {
    width: 100%;
    gap: 8px;
  }

  .league-filters {
    justify-content: flex-start;
  }

  .tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .league-filters button,
  .tabs button {
    font-size: 12px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .team-search {
    width: 100%;
    max-width: 320px;
    margin-bottom: 15px;
  }

  .team-search input {
    width: 100%;
    box-sizing: border-box;
  }

  .card {
    width: 100%;
    max-width: 100%;
    margin: 18px auto 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(15, 15, 15, 0.62);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
  }

  table,
  thead,
  tbody,
  tr,
  td,
  th {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  thead {
    display: none;
  }

  tr {
    background: rgba(0, 0, 0, 0.58);
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  td {
    text-align: left;
    padding: 6px 0;
  }

  /* ✅ AJUSTE MOBILE DOS TIMES */
  .teams-wrapper {
    display: grid;
    grid-template-columns: 1fr 42px 1fr;
    align-items: center;
    width: 100%;
    gap: 6px;
  }

  .team-side {
    min-width: 0;
    gap: 6px;
  }

  .team-side.left {
    justify-content: flex-end;
    text-align: right;
  }

  .team-side.right {
    justify-content: flex-start;
    text-align: left;
  }

  .team-side span {
    max-width: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vs-center {
    min-width: 42px;
    text-align: center;
    font-size: 14px;
  }

  .team-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .btn-apostar {
    width: 100%;
    margin-top: 10px;
  }


}

.teams-wrapper {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 70px minmax(140px, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
}

.team-side {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  min-width: 0;
}

.team-side span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-side.left {
  justify-content: flex-end;
  text-align: right;
}

.team-side.right {
  justify-content: flex-start;
  text-align: left;
}

.vs-center {
  font-weight: bold;
  color: #94a3b8;
  min-width: 70px;
  text-align: center;
  white-space: nowrap;
}

.bet-modal {
  width: 400px;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-radius: 16px;
  padding: 25px;
}

.bet-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bet-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
}

.bet-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: #0f172a;
  padding: 4px;
  border: 2px solid #1e293b;
}

.bet-vs {
  color: #facc15;
  font-weight: bold;
  font-size: 18px;
}

.bet-info {
  text-align: center;
  margin-bottom: 15px;
  color: #ccc;
}

.bet-info strong {
  color: #22c55e;
}

.score-label {
  display: block;
  text-align: left;
  color: #facc15;
  font-size: 13px;
  font-weight: 800;
  margin: 10px 0 6px;
}

/* 🎁 PALPITES GRÁTIS */
.free-bet-box {
  display: none;
  margin: 12px 0;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(250, 204, 21, 0.16),
      rgba(34, 197, 94, 0.10));
  border: 1px solid rgba(250, 204, 21, 0.45);
  color: white;
  text-align: center;
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.18);
}

.free-bet-box strong {
  color: #facc15;
}

.free-bet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.16);
  border: 1px solid rgba(250, 204, 21, 0.35);
  color: #facc15;
  font-size: 12px;
  font-weight: 800;
}

.live-badge {
  color: #ef4444;
  font-weight: bold;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.success-box {
  background: #0f172a;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  animation: scaleIn 0.3s ease;
}

.checkmark {
  font-size: 60px;
  color: #22c55e;
  margin-bottom: 15px;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .overlay {
    padding-top: 60px;
  }
}

.filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ===== PAGINAÇÃO ===== */

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  margin-top: 20px;
  margin-bottom: 10px;

  flex-wrap: wrap;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-btn,
.page-number {

  background: rgba(0, 0, 0, 0.65);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: white;

  padding: 10px 14px;

  border-radius: 12px;

  cursor: pointer;

  transition: 0.25s ease;

  font-weight: 600;
}

.pagination-btn:hover,
.page-number:hover {

  border-color: #22c55e;

  transform: translateY(-2px);
}

.page-number.active {

  background: #22c55e;

  color: black;

  border-color: #22c55e;

  font-weight: bold;
}

/* MOBILE */

@media(max-width:768px) {

  .pagination-btn,
  .page-number {

    padding: 8px 12px;

    font-size: 13px;
  }

}

.team-search {
  position: relative;
}

.team-search input {
  padding: 12px 12px 12px 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  color: white;
  outline: none;
}

.team-search input:focus {
  border-color: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.team-search .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

/* ===== XP BAR BASE ===== */
.xp-bar {
  width: 120px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

/* NORMAL */
#xpBar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00f5ff, #00ff88, #22c55e);
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.7);
  transition: width 0.5s ease;
}

/* 💎 VIP */
.xp-bar.vip #xpBar {
  background: linear-gradient(90deg, #facc15, #f59e0b);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.9);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

#xpBar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00f5ff, #00ff88, #22c55e);
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.7);
  transition: width 0.5s ease;
}

.free-bets-header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  width: fit-content;
  margin-top: 3px;
  padding: 4px 9px;

  border-radius: 999px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(34, 197, 94, 0.12));
  border: 1px solid rgba(250, 204, 21, 0.45);

  color: #facc15;
  font-size: 11px;
  font-weight: 900;

  box-shadow: 0 0 12px rgba(250, 204, 21, 0.18);
}

@media (max-width: 768px) {
  .free-bets-header-badge {
    margin: 4px auto 0;
    font-size: 12px;
    padding: 5px 11px;
  }
}

@media (max-width: 768px) {

  .xp-bar {
    width: 140px;
    margin: 8px auto 0;
  }

  #xpText {
    display: block;
    text-align: center;
    margin-top: 4px;
  }

}

.modal-content {
  background: #0f172a;
  margin: 5% auto;
  padding: 25px;
  border-radius: 14px;

  width: 90%;
  max-width: 520px;

  color: white;

  animation: fadeIn 0.3s ease;

  max-height: 85vh;
  overflow-y: auto;

  box-sizing: border-box;

  scrollbar-width: thin;
  scrollbar-color: #22c55e transparent;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

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

.modal-content::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 10px;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

.info-box {
  background: #1e293b;
  padding: 12px;
  border-radius: 10px;
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes shine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.nav-btn {
  background: #ffffff;
  color: #111;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.nav-btn:hover {
  background: linear-gradient(45deg, #facc15, #f97316);
  color: #000;
}

.nav-btn:hover {
  background: gold;
  transform: scale(1.05);
}

.ad-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ad-box {
  background: #1e293b;
  border-radius: 15px;
  padding: 20px;
  max-width: 350px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.ad-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.ad-box button {
  background: #22c55e;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== BANNER PROFISSIONAL RESPONSIVO ===== */
.ads-banner {
  width: 100%;
  max-width: 980px;
  aspect-ratio: 1920 / 500;
  margin: 0 auto 35px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  z-index: 1;

  background: rgba(0, 0, 0, 0.45);

  border: 1px solid rgba(250, 204, 21, 0.22);
  box-shadow:
    0 0 35px rgba(250, 204, 21, 0.18),
    inset 0 0 40px rgba(0, 0, 0, 0.45);
}

.ads-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.ad-card {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: #050505;
}

.ad-card img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: inherit;
}

/* TABLET */
@media (max-width: 900px) {
  .ads-banner {
    max-width: 100%;
    aspect-ratio: 1600 / 450;
    margin-bottom: 28px;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .ads-banner {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1080 / 620;
    margin: 0 auto 24px;
    border-radius: 18px;
  }

  .ad-card img {
    object-fit: cover;
    object-position: center;
  }
}

/* ===== FILTROS DE LIGAS PROFISSIONAL ===== */
.league-section {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 16px;
}

.league-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 4px;
}

.league-header span {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.league-header small {
  color: #94a3b8;
  font-size: 11px;
}

.league-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding: 4px 4px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.league-filters::-webkit-scrollbar {
  display: none;
}

.league-filters {
  scrollbar-width: none;
}

.league-filters button {
  flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;

  min-height: 38px;
  padding: 8px 14px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);

  background: rgba(0, 0, 0, 0.62);
  color: #e5e7eb;

  font-size: 13px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;

  cursor: pointer;
  transition: 0.2s ease;
}

.league-filters button:hover {
  border-color: rgba(34, 197, 94, 0.9);
}

.league-filters button.active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #03120a;
  border-color: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.45);
}

.league-filters button.featured {
  background: linear-gradient(135deg, #facc15, #22c55e);
  color: #002776;
  border-color: #facc15;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.45);
}

/* ===== DESKTOP: filtros quebram linha normalmente ===== */
@media (min-width: 769px) {
  .league-section {
    max-width: 980px;
  }

  .league-filters {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }


}


@media (min-width: 769px) {
  .mobile-hint {
    display: none;
  }
}


.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

.tabs button {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.tabs button.active {
  background: #22c55e;
  color: black;
  font-weight: bold;



}

.email-options {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px;
  border-radius: 14px;
  margin-top: -5px;
  margin-bottom: 5px;
  width: 190px;
}

.email-options a,
.email-options button {
  background: #1e293b;
  color: white;
  border: none;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.email-options a:hover,
.email-options button:hover {
  background: #2563eb;
}

.how-it-works-modal {
  max-width: 760px;
  text-align: left;
}

.how-title {
  color: #facc15;
  text-align: center;
  margin-bottom: 10px;
}

.how-subtitle {
  color: #cbd5e1;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.how-section {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 12px;
}

.how-section h3 {
  margin: 0 0 8px;
  color: #22c55e;
  font-size: 16px;
}

.how-section p,
.how-section li {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
}

.how-section ul {
  padding-left: 18px;
  margin: 8px 0 0;
}

.free-bonus-highlight {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;

  background: linear-gradient(135deg,
      rgba(250, 204, 21, .15),
      rgba(34, 197, 94, .10));

  border: 1px solid rgba(250, 204, 21, .35);
}

.simulation-box {
  background: rgba(0, 0, 0, 0.35);
  border-left: 4px solid #facc15;
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}

/* ✅ CORREÇÃO FINAL MOBILE - TIMES ALINHADOS */
@media (max-width: 768px) {
  .teams-wrapper {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .team-side {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    gap: 6px !important;
  }

  .team-side.left {
    justify-content: flex-end !important;
    text-align: right !important;
  }

  .team-side.right {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .team-side span {
    max-width: 115px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block !important;
  }

  .vs-center {
    min-width: 42px !important;
    width: 42px !important;
    text-align: center !important;
    font-size: 14px !important;
  }

  .team-logo {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
  }

  /* ===== BOTÃO VOLTAR AO TOPO MOBILE ===== */
  .btn-voltar-topo {
    position: fixed;
    right: 16px;
    bottom: 155px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: linear-gradient(135deg, #22c55e, #16a34a);

    color: white;
    font-size: 24px;
    font-weight: bold;

    cursor: pointer;

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);

    transition: all 0.25s ease;
  }

  .btn-voltar-topo.show {
    display: flex;
  }

  .btn-voltar-topo:active {
    transform: scale(0.95);
  }


}

.session-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(6px);
}

.session-box {
  width: 90%;
  max-width: 380px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}

.session-icon {
  font-size: 52px;
  margin-bottom: 12px;
}

.session-box h2 {
  margin: 0 0 12px;
  color: #facc15;
}

.session-box p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

.session-box button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.account-menu {
  position: relative;
  display: inline-block;
}

.account-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  min-width: 230px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 16px;
  padding: 8px;
  z-index: 999999;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

.account-menu.active .account-dropdown {
  display: block;
}

.account-dropdown a,
.account-dropdown button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  background: rgba(250, 204, 21, 0.12);
  color: #facc15;
}

.account-dropdown .danger {
  color: #fca5a5;
}

@media (max-width: 768px) {

  .account-menu {
    width: 100%;
    max-width: 312px;
  }

  .account-menu .nav-btn {
    width: 100%;
    max-width: 312px;
  }

  .account-dropdown {
    position: static;
    margin-top: 8px;
    width: 100%;
  }
}

.quick-recharge-box {
  display: none;
  margin: 14px 0;
  padding: 14px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.quick-recharge-box h4 {
  margin: 0 0 8px;
  color: #22c55e;
  text-align: center;
}

.quick-recharge-box input {
  width: 100%;
  box-sizing: border-box;

  padding: 10px;

  border-radius: 8px;
  border: none;

  margin-bottom: 8px;

  font-size: 15px;
}

.quick-recharge-summary {
  font-size: 13px;
  color: #facc15;
  text-align: center;
  margin-bottom: 10px;
}

.quick-recharge-actions {
  display: flex;
  gap: 8px;
}

.quick-recharge-actions button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.quick-pix {
  background: #22c55e;
}

.quick-card {
  background: #2563eb;
}

.quick-pix-area {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
}

#emailVerificationModal {
  z-index: 999999 !important;
}

@media (min-width: 769px) {
  .top-nav {
    padding-top: 20px;
    justify-content: center;
    padding-right: 0;
    transform: translateX(-90px);
  }

  .brand-space {
    height: 170px;
  }
}

/* =====================================================
   DESKTOP V2 — BASE VISUAL
===================================================== */

:root {
  --desktop-bg: #030604;
  --desktop-surface: #080d0a;
  --desktop-surface-soft: #0c120e;
  --desktop-card: rgba(12, 18, 14, 0.92);

  --desktop-gold: #f5c518;
  --desktop-gold-strong: #ffb800;
  --desktop-gold-soft: rgba(245, 197, 24, 0.14);

  --desktop-green: #16c55f;
  --desktop-green-soft: rgba(22, 197, 95, 0.14);

  --desktop-text: #ffffff;
  --desktop-muted: #8e9b93;

  --desktop-border: rgba(255, 255, 255, 0.09);
  --desktop-border-gold: rgba(245, 197, 24, 0.3);

  --desktop-radius-sm: 10px;
  --desktop-radius-md: 16px;
  --desktop-radius-lg: 24px;

  --desktop-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55);
}

body.desktop-v2 {
  margin: 0;
  min-height: 100vh;

  background:
    radial-gradient(circle at 50% 0%,
      rgba(245, 197, 24, 0.09),
      transparent 32%),
    linear-gradient(180deg,
      #030604 0%,
      #050906 45%,
      #020403 100%);

  color: var(--desktop-text);
}

body.desktop-v2 *,
body.desktop-v2 *::before,
body.desktop-v2 *::after {
  box-sizing: border-box;
}

body.desktop-v2 .overlay {
  width: 100%;
  max-width: none;
  min-height: 100vh;

  margin: 0;
  padding: 0 0 80px;

  background: transparent;

  display: block;
}

body.desktop-v2 button,
body.desktop-v2 input,
body.desktop-v2 select,
body.desktop-v2 textarea {
  font-family: inherit;
}

/* =====================================================
   DESKTOP V2 — HEADER
===================================================== */

body.desktop-v2 .top-nav {
  width: 100%;
  max-width: none;
  min-height: auto;

  margin: 0;
  padding: 0;

  display: block;

  position: sticky;
  top: 0;
  z-index: 10000;
}

.desktop-header {
  width: 100%;

  background:
    linear-gradient(180deg,
      rgba(3, 6, 4, 0.98),
      rgba(3, 6, 4, 0.91));

  border-bottom: 1px solid var(--desktop-border);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.desktop-header-inner {
  width: min(1460px, calc(100% - 48px));
  min-height: 84px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.desktop-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  text-decoration: none;
}

.desktop-brand img {
  display: block;
  width: 104px;
  height: 72px;

  object-fit: contain;

  filter:
    drop-shadow(0 0 14px rgba(245, 197, 24, 0.26));
}

.desktop-main-nav {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.desktop-nav-link {
  min-height: 42px;
  padding: 0 15px;

  border: 0;
  border-radius: 10px;

  background: transparent;
  color: #cbd2cd;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.desktop-nav-link:hover {
  color: var(--desktop-text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.desktop-nav-link.active {
  color: var(--desktop-gold);
  background: var(--desktop-gold-soft);
}

.desktop-auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-login-btn,
.desktop-register-btn {
  height: 42px;
  padding: 0 18px;

  border-radius: 11px;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-login-btn {
  border: 1px solid var(--desktop-border);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.desktop-register-btn {
  border: 1px solid rgba(245, 197, 24, 0.5);

  background:
    linear-gradient(135deg,
      var(--desktop-gold),
      var(--desktop-gold-strong));

  color: #090b09;

  box-shadow:
    0 8px 22px rgba(245, 197, 24, 0.16);
}

.desktop-login-btn:hover,
.desktop-register-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .desktop-header-inner {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .desktop-main-nav {
    gap: 2px;
  }

  .desktop-nav-link {
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }
}

/* =====================================================
   DESKTOP V2 — ÁREA DO USUÁRIO
===================================================== */

.desktop-user-area {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 12px;
}

/* ACESSOS DE GERENCIAMENTO */

.desktop-management-button {
  min-height: 44px;
  padding: 6px 12px 6px 9px;

  border: 1px solid rgba(245, 197, 24, 0.24);
  border-radius: 12px;

  background:
    linear-gradient(145deg,
      rgba(245, 197, 24, 0.075),
      rgba(255, 255, 255, 0.018));

  color: #ffffff;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  text-decoration: none;
  white-space: nowrap;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 9px 24px rgba(0, 0, 0, 0.2);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.desktop-management-button:hover {
  transform: translateY(-2px);

  border-color: rgba(245, 197, 24, 0.5);

  background:
    linear-gradient(145deg,
      rgba(245, 197, 24, 0.14),
      rgba(245, 197, 24, 0.035));

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(245, 197, 24, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.desktop-management-icon {
  width: 31px;
  height: 31px;

  flex-shrink: 0;

  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 9px;

  background: rgba(245, 197, 24, 0.07);
  color: var(--desktop-gold);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desktop-management-icon svg {
  width: 18px;
  height: 18px;

  display: block;
}

.desktop-management-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.desktop-management-content small {
  color: #7f8b83;

  font-size: 8px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.desktop-management-content strong {
  color: #f2f5f3;

  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
}

/* VARIAÇÃO DO FINANCEIRO */

.desktop-management-financial {
  border-color: rgba(34, 197, 94, 0.24);

  background:
    linear-gradient(145deg,
      rgba(34, 197, 94, 0.075),
      rgba(255, 255, 255, 0.018));
}

.desktop-management-financial .desktop-management-icon {
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.07);
  color: #36cf78;
}

.desktop-management-financial:hover {
  border-color: rgba(34, 197, 94, 0.48);

  background:
    linear-gradient(145deg,
      rgba(34, 197, 94, 0.13),
      rgba(34, 197, 94, 0.025));

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(34, 197, 94, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.desktop-icon-button {
  width: 42px;
  height: 42px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018));

  color: #d7ded9;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.desktop-icon-button svg {
  width: 21px;
  height: 21px;

  display: block;
}

.desktop-icon-button:hover {
  color: var(--desktop-gold);

  border-color: rgba(245, 197, 24, 0.34);

  background:
    linear-gradient(145deg,
      rgba(245, 197, 24, 0.12),
      rgba(245, 197, 24, 0.025));

  transform: translateY(-1px);

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.desktop-notification-button {
  position: relative;
}

.desktop-notification-indicator {
  position: absolute;
  top: 8px;
  right: 8px;

  width: 6px;
  height: 6px;

  border: 1px solid #080c09;
  border-radius: 50%;

  background: var(--desktop-gold);

  box-shadow:
    0 0 8px rgba(245, 197, 24, 0.68);
}

/* PERFIL */

.desktop-profile {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 10px;
}

.desktop-profile-avatar {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  border: 1px solid rgba(245, 197, 24, 0.34);
  border-radius: 50%;

  background:
    radial-gradient(circle at 35% 25%,
      rgba(245, 197, 24, 0.2),
      rgba(245, 197, 24, 0.04) 48%,
      rgba(0, 0, 0, 0.24) 100%);

  color: var(--desktop-gold);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 800;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.25);
}

.desktop-profile-content {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 4px;
}

.desktop-profile-name {
  display: block;

  max-width: 150px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.desktop-profile-status {
  min-height: 17px;

  display: flex;
  align-items: center;

  gap: 6px;
}

.desktop-vip-badge {
  min-height: 17px;

  padding: 1px 7px;

  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;

  background: rgba(245, 197, 24, 0.09);
  color: var(--desktop-gold);

  display: inline-flex;
  align-items: center;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.55px;
}

.desktop-user-level {
  color: #89958d;

  font-size: 10px;
  font-weight: 600;
}

/* SALDO E PONTOS */

.desktop-financial-summary {
  min-height: 48px;

  padding: 7px 13px;

  border: 1px solid rgba(245, 197, 24, 0.24);
  border-radius: 13px;

  background:
    linear-gradient(145deg,
      rgba(245, 197, 24, 0.065),
      rgba(255, 255, 255, 0.018));

  display: flex;
  align-items: center;

  gap: 13px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 10px 28px rgba(0, 0, 0, 0.2);
}

.desktop-financial-item {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.desktop-financial-label {
  color: #839087;

  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.desktop-financial-item strong {
  white-space: nowrap;

  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.desktop-financial-balance {
  color: #ffffff;
}

.desktop-financial-points {
  color: var(--desktop-gold);
}

.desktop-financial-divider {
  width: 1px;
  height: 27px;

  background:
    linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, 0.14),
      transparent);
}

/* MENU DA CONTA */

.desktop-account-menu {
  position: relative;
}

.desktop-account-toggle svg {
  width: 18px;
  height: 18px;

  transition: transform 0.22s ease;
}

.desktop-account-menu.active .desktop-account-toggle svg {
  transform: rotate(180deg);
}

.desktop-account-dropdown {
  top: calc(100% + 14px);
  right: 0;
  left: auto;

  transform: none;

  width: 275px;
  min-width: 275px;

  padding: 9px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;

  background:
    linear-gradient(160deg,
      rgba(12, 18, 14, 0.99),
      rgba(5, 9, 7, 0.99));

  box-shadow:
    0 26px 75px rgba(0, 0, 0, 0.64),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.desktop-dropdown-header {
  padding: 12px 12px 11px;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.desktop-dropdown-header strong {
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
}

.desktop-dropdown-header span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #7f8c84;

  font-size: 10px;
}

.desktop-dropdown-divider {
  width: calc(100% - 14px);
  height: 1px;

  margin: 5px auto;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
}

.desktop-account-dropdown a,
.desktop-dropdown-logout {
  width: 100%;
  min-height: 43px;

  padding: 0 11px;

  border: 0;
  border-radius: 10px;

  background: transparent;
  color: #d4dad6;

  display: flex;
  align-items: center;

  gap: 11px;

  font-size: 12px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.desktop-account-dropdown a:hover {
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;

  transform: translateX(2px);
}

.desktop-dropdown-icon {
  width: 19px;
  height: 19px;

  flex-shrink: 0;

  color: #9ca8a0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desktop-dropdown-icon svg {
  width: 18px;
  height: 18px;

  display: block;
}

.desktop-account-dropdown a:hover .desktop-dropdown-icon {
  color: var(--desktop-gold);
}

.desktop-dropdown-logout {
  color: #e99292;
}

.desktop-dropdown-logout:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #ffaaaa;

  transform: translateX(2px);
}

.desktop-dropdown-logout .desktop-dropdown-icon {
  color: #d66f6f;
}

@media (max-width: 1260px) {
  .desktop-profile-content {
    display: none;
  }

  .desktop-management-content {
    display: none;
  }

  .desktop-management-button {
    width: 42px;
    height: 42px;
    min-height: 42px;

    padding: 0;

    justify-content: center;
  }

  .desktop-management-icon {
    width: 100%;
    height: 100%;

    border: 0;
    background: transparent;
  }

  .desktop-header-inner {
    grid-template-columns: 115px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .desktop-user-area {
    gap: 8px;
  }
}

@media (max-width: 1050px) {
  .desktop-financial-label {
    display: none;
  }

  .desktop-financial-summary {
    min-height: 42px;
    padding: 7px 10px;
    gap: 9px;
  }

  .desktop-financial-divider {
    height: 20px;
  }
}

/* =====================================================
   DESKTOP V2 — HERO
===================================================== */

.desktop-hero {
  width: min(1460px, calc(100% - 48px));

  margin: 30px auto 0;
  padding: 70px 64px 34px;

  position: relative;
  overflow: hidden;

  border: 1px solid rgba(245, 197, 24, 0.17);
  border-radius: 28px;

  background:
    linear-gradient(135deg,
      rgba(8, 13, 9, 0.98),
      rgba(3, 7, 5, 0.98));

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.desktop-hero-background {
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(circle at 72% 35%,
      rgba(245, 197, 24, 0.18),
      transparent 27%),
    radial-gradient(circle at 80% 70%,
      rgba(22, 197, 95, 0.07),
      transparent 30%);
}

.desktop-hero-background::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px,
      transparent 1px);

  background-size: 54px 54px;

  mask-image:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.7),
      transparent 72%);
}

.desktop-hero-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);

  align-items: center;

  gap: 55px;
}

.desktop-hero-copy {
  max-width: 610px;
}

.desktop-hero-eyebrow {
  color: var(--desktop-gold);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.desktop-hero-copy h1 {
  margin: 17px 0 18px;

  display: flex;
  flex-direction: column;

  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(62px, 5.8vw, 96px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: 1px;
  text-align: left;
  text-shadow: none;
}

.desktop-hero-copy h1 span {
  color: #ffffff;
}

.desktop-hero-copy h1 strong {
  color: var(--desktop-gold);
  font-weight: 400;
}

.desktop-hero-copy p {
  max-width: 520px;

  margin: 0;

  color: #a1ada5;

  font-size: 15px;
  line-height: 1.8;
}

.desktop-hero-actions {
  margin-top: 29px;

  display: flex;
  align-items: center;

  gap: 12px;
}

.desktop-primary-button,
.desktop-secondary-button {
  min-height: 48px;

  padding: 0 19px;

  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 12px;
  font-weight: 750;

  cursor: pointer;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.desktop-primary-button svg,
.desktop-secondary-button svg {
  width: 19px;
  height: 19px;
}

.desktop-primary-button {
  border: 1px solid rgba(245, 197, 24, 0.58);

  background:
    linear-gradient(135deg,
      #f6c915,
      #eaaa00);

  color: #080b08;

  box-shadow:
    0 12px 32px rgba(245, 197, 24, 0.18);
}

.desktop-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.035);
  color: #e6ebe8;
}

.desktop-primary-button:hover,
.desktop-secondary-button:hover {
  transform: translateY(-2px);
}

.desktop-primary-button:hover {
  box-shadow:
    0 18px 40px rgba(245, 197, 24, 0.25);
}

.desktop-secondary-button:hover {
  border-color: rgba(245, 197, 24, 0.25);
  background: rgba(245, 197, 24, 0.055);
}

/* HERO VISUAL */

.desktop-hero-visual {
  min-height: 360px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-hero-glow {
  width: 380px;
  height: 380px;

  position: absolute;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(245, 197, 24, 0.24),
      rgba(245, 197, 24, 0.06) 40%,
      transparent 70%);

  filter: blur(4px);
}

.desktop-hero-trophy {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-hero-trophy img {
  display: block;
  object-fit: contain;
}

/* =====================================================
   HERO — COMPOSIÇÃO ESPORTIVA
===================================================== */

.desktop-hero-sports-art {
  width: 100%;
  min-height: 360px;

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(150px, 0.8fr) minmax(210px, 1fr) minmax(170px, 0.9fr);

  align-items: center;
  justify-items: center;

  gap: 14px;
}

.desktop-hero-sports-art::before {
  content: "";

  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 27px;

  height: 42px;

  border-radius: 50%;

  background:
    radial-gradient(ellipse,
      rgba(245, 197, 24, 0.18),
      rgba(245, 197, 24, 0.05) 43%,
      transparent 72%);

  filter: blur(10px);

  pointer-events: none;
}



.desktop-hero-sports-art .desktop-hero-trophy {
  width: clamp(220px, 17vw, 290px);
  height: auto;

  position: relative;
  z-index: 4;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-18px);
}

.desktop-hero-sports-art .desktop-hero-trophy::before {
  content: "";

  position: absolute;
  inset: 4%;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(245, 197, 24, 0.23),
      rgba(245, 197, 24, 0.055) 48%,
      transparent 72%);

  filter: blur(8px);

  z-index: -1;
}

.desktop-hero-sports-art .desktop-hero-trophy img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(0 27px 34px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 23px rgba(245, 197, 24, 0.2));
}


/* =====================================================
   HERO — BOLA QUICANDO
===================================================== */

.desktop-football-animation {
  width: 100%;
  height: 320px;

  position: relative;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: visible;
}

.desktop-football-bouncing-image {
  width: clamp(190px, 15vw, 255px);
  height: auto;

  position: relative;
  z-index: 3;

  display: block;
  object-fit: contain;

  transform-origin: center bottom;

  filter:
    drop-shadow(0 25px 30px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 16px rgba(245, 197, 24, 0.14));

  animation:
    desktopFootballBounce 2.7s cubic-bezier(0.42, 0, 0.35, 1) infinite;

  will-change: transform;
}

.desktop-football-shadow {
  width: 145px;
  height: 24px;

  position: absolute;
  left: 50%;
  bottom: 17px;
  z-index: 1;

  border-radius: 50%;

  background:
    radial-gradient(ellipse,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.3) 50%,
      transparent 74%);

  filter: blur(5px);

  animation:
    desktopFootballShadow 2.7s cubic-bezier(0.42, 0, 0.35, 1) infinite;

  will-change: transform, opacity;
}

@keyframes desktopFootballBounce {
  0% {
    transform:
      translateY(-65px) rotate(-4deg) scaleX(1) scaleY(1);
  }

  20% {
    transform:
      translateY(0) rotate(0deg) scaleX(1.07) scaleY(0.92);
  }

  27% {
    transform:
      translateY(-12px) rotate(2deg) scaleX(0.98) scaleY(1.03);
  }

  48% {
    transform:
      translateY(-48px) rotate(7deg) scaleX(1) scaleY(1);
  }

  65% {
    transform:
      translateY(0) rotate(10deg) scaleX(1.05) scaleY(0.94);
  }

  72% {
    transform:
      translateY(-8px) rotate(8deg) scaleX(0.99) scaleY(1.02);
  }

  86% {
    transform:
      translateY(-25px) rotate(3deg) scaleX(1) scaleY(1);
  }

  100% {
    transform:
      translateY(-65px) rotate(-4deg) scaleX(1) scaleY(1);
  }
}

@keyframes desktopFootballShadow {
  0% {
    opacity: 0.22;

    transform:
      translateX(-50%) scaleX(0.52);
  }

  20% {
    opacity: 0.75;

    transform:
      translateX(-50%) scaleX(1);
  }

  27% {
    opacity: 0.58;

    transform:
      translateX(-50%) scaleX(0.82);
  }

  48% {
    opacity: 0.3;

    transform:
      translateX(-50%) scaleX(0.62);
  }

  65% {
    opacity: 0.72;

    transform:
      translateX(-50%) scaleX(0.96);
  }

  72% {
    opacity: 0.56;

    transform:
      translateX(-50%) scaleX(0.81);
  }

  86% {
    opacity: 0.4;

    transform:
      translateX(-50%) scaleX(0.7);
  }

  100% {
    opacity: 0.22;

    transform:
      translateX(-50%) scaleX(0.52);
  }
}

/* =====================================================
   HERO — LUVAS EM IMPACTO
===================================================== */

.desktop-mma-animation {
  width: 100%;
  height: 320px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

.desktop-mma-glove {
  width: clamp(135px, 11vw, 185px);
  height: auto;

  position: absolute;
  top: 50%;
  z-index: 3;

  display: block;
  object-fit: contain;

  transform-origin: center center;

  filter:
    drop-shadow(0 24px 28px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 13px rgba(245, 197, 24, 0.11));

  will-change: transform, filter;
}

.desktop-mma-glove-left {
  left: -15%;

  animation:
    desktopLeftGloveImpact 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.desktop-mma-glove-right {
  right: -15%;

  animation:
    desktopRightGloveImpact 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes desktopLeftGloveImpact {

  0%,
  20% {
    transform:
      translateY(-50%) translateX(-25px) rotate(7deg) scaleX(1) scaleY(1);
  }

  39% {
    transform:
      translateY(-50%) translateX(24px) rotate(2deg) scaleX(1.02) scaleY(1.02);
  }

  43% {
    transform:
      translateY(-50%) translateX(34px) rotate(0deg) scaleX(1.08) scaleY(0.94);
  }

  50% {
    transform:
      translateY(-50%) translateX(12px) rotate(4deg) scaleX(1) scaleY(1);
  }

  68%,
  100% {
    transform:
      translateY(-50%) translateX(-25px) rotate(7deg) scaleX(1) scaleY(1);
  }
}

@keyframes desktopRightGloveImpact {

  0%,
  20% {
    transform:
      translateY(-50%) translateX(25px) rotate(7deg) scaleX(-1) scaleY(1);
  }

  39% {
    transform:
      translateY(-50%) translateX(-24px) rotate(2deg) scaleX(-1.02) scaleY(1.02);
  }

  43% {
    transform:
      translateY(-50%) translateX(-34px) rotate(0deg) scaleX(-1.08) scaleY(0.94);
  }

  50% {
    transform:
      translateY(-50%) translateX(-12px) rotate(4deg) scaleX(-1) scaleY(1);
  }

  68%,
  100% {
    transform:
      translateY(-50%) translateX(25px) rotate(7deg) scaleX(-1) scaleY(1);
  }
}

.desktop-mma-impact-glow {
  width: 80px;
  height: 80px;

  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 218, 87, 0.85) 16%,
      rgba(245, 197, 24, 0.38) 42%,
      transparent 72%);

  filter: blur(2px);

  opacity: 0;

  animation:
    desktopMmaImpactGlow 3s ease-out infinite;

  pointer-events: none;
}

.desktop-mma-impact-ring {
  width: 82px;
  height: 82px;

  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;

  border: 1px solid rgba(245, 197, 24, 0.7);
  border-radius: 50%;

  opacity: 0;

  animation:
    desktopMmaImpactRing 3s ease-out infinite;

  pointer-events: none;
}

@keyframes desktopMmaImpactGlow {

  0%,
  39% {
    opacity: 0;

    transform:
      translate(-50%, -50%) scale(0.15);
  }

  43% {
    opacity: 1;

    transform:
      translate(-50%, -50%) scale(1);
  }

  48% {
    opacity: 0.35;

    transform:
      translate(-50%, -50%) scale(1.4);
  }

  56%,
  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%) scale(1.65);
  }
}

@keyframes desktopMmaImpactRing {

  0%,
  40% {
    opacity: 0;

    transform:
      translate(-50%, -50%) scale(0.25);
  }

  43% {
    opacity: 0.75;

    transform:
      translate(-50%, -50%) scale(0.5);
  }

  57% {
    opacity: 0;

    transform:
      translate(-50%, -50%) scale(1.75);
  }

  100% {
    opacity: 0;

    transform:
      translate(-50%, -50%) scale(1.75);
  }
}

/* MODALIDADES */

.desktop-modalities-header {
  margin-top: 45px;

  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.desktop-modalities-header span,
.desktop-section-heading span {
  color: var(--desktop-gold);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.desktop-modalities-header h2,
.desktop-section-heading h2 {
  margin: 5px 0 0;

  color: #ffffff;

  font-size: 21px;
  font-weight: 700;
}

.desktop-modalities-grid {
  margin-top: 18px;

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.desktop-modality-card {
  min-height: 164px;

  padding: 22px;

  border: 1px solid rgba(245, 197, 24, 0.18);
  border-radius: 18px;

  background:
    linear-gradient(145deg,
      rgba(13, 20, 15, 0.96),
      rgba(6, 10, 8, 0.96));

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  text-align: left;

  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025);

  transition:
    transform 0.23s ease,
    border-color 0.23s ease,
    box-shadow 0.23s ease,
    background 0.23s ease;
}

.desktop-modality-card:hover {
  transform: translateY(-3px);

  border-color: rgba(245, 197, 24, 0.4);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(245, 197, 24, 0.045);
}

.desktop-modality-content {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 22px;
}

.desktop-modality-media {
  width: 92px;
  height: 92px;

  flex-shrink: 0;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-modality-media::before {
  content: "";

  position: absolute;
  inset: 10px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(245, 197, 24, 0.16),
      rgba(245, 197, 24, 0.04) 52%,
      transparent 72%);

  filter: blur(2px);
}

.desktop-modality-media img {
  width: 100%;
  height: 100%;

  position: relative;
  z-index: 1;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(0 15px 18px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(245, 197, 24, 0.08));

  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.desktop-modality-card:hover .desktop-modality-media img {
  transform: scale(1.07) translateY(-2px);

  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 18px rgba(245, 197, 24, 0.15));
}


.desktop-modality-text {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 4px;
}

.desktop-modality-label {
  color: var(--desktop-gold);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.desktop-modality-text strong {
  color: #ffffff;

  font-size: 17px;
  font-weight: 700;
}

.desktop-modality-text small {
  color: #8f9b93;

  font-size: 11px;
  line-height: 1.5;
}

.desktop-modality-action {
  flex-shrink: 0;

  color: #d5dbd7;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  font-size: 11px;
  font-weight: 700;
}

.desktop-modality-action svg {
  width: 17px;
  height: 17px;
}

/* ANÚNCIOS ABAIXO DO HERO */

.desktop-ads-section {
  width: min(1460px, calc(100% - 48px));

  margin: 28px auto 0;
}

.desktop-section-heading {
  margin-bottom: 14px;
}

body.desktop-v2 .desktop-ads-section .ads-banner {
  max-width: none;
  width: 100%;

  margin: 0;

  border-radius: 20px;
}

@media (max-width: 1100px) {
  .desktop-hero {
    padding: 55px 38px 30px;
  }

  .desktop-hero-content {
    grid-template-columns: 1fr 430px;
    gap: 25px;
  }

  .desktop-hero-sports-art {
    grid-template-columns:
      minmax(125px, 0.8fr) minmax(180px, 1fr) minmax(145px, 0.9fr);

    gap: 4px;
  }

  .desktop-football-bouncing-image {
    width: 185px;
  }

  .desktop-mma-glove {
    width: 138px;
  }

  .desktop-mma-glove-left {
    left: -8%;
  }

  .desktop-mma-glove-right {
    right: -8%;
  }

  .desktop-hero-sports-art .desktop-hero-trophy {
    width: 220px;
  }
}

@media (max-width: 850px) {
  .desktop-hero-content {
    grid-template-columns: 1fr;
  }

  .desktop-hero-visual {
    display: none;
  }

  .desktop-modalities-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .desktop-football-bouncing-image,
  .desktop-football-shadow,
  .desktop-mma-glove-left,
  .desktop-mma-glove-right,
  .desktop-mma-impact-glow,
  .desktop-mma-impact-ring {
    animation: none !important;
  }

  .desktop-football-bouncing-image {
    transform: translateY(-20px);
  }

  .desktop-mma-glove-left {
    transform:
      translateY(-50%) translateX(10px) scaleX(1);
  }

  .desktop-mma-glove-right {
    transform:
      translateY(-50%) translateX(-10px) scaleX(-1);
  }

  .desktop-mma-impact-glow,
  .desktop-mma-impact-ring {
    display: none;
  }
}

/* =====================================================
   DESKTOP V2 — JOGOS EM DESTAQUE
===================================================== */

.desktop-games-showcase {
  width: min(1460px, calc(100% - 48px));

  margin: 30px auto 0;
  padding: 34px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(245, 197, 24, 0.075),
      transparent 30%),
    linear-gradient(145deg,
      rgba(9, 14, 11, 0.97),
      rgba(4, 8, 6, 0.98));

  box-shadow:
    0 26px 75px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.desktop-games-showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;
}

.desktop-section-title {
  max-width: 610px;
}

.desktop-section-eyebrow {
  color: var(--desktop-gold);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.desktop-section-title h2 {
  margin: 6px 0 7px;

  color: #ffffff;

  font-size: 28px;
  font-weight: 750;
  line-height: 1.2;
}

.desktop-section-title p {
  margin: 0;

  color: #87938b;

  font-size: 12px;
  line-height: 1.65;
}

/* TROCA DE MODALIDADE */

.desktop-sport-switch {
  padding: 5px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;

  background: rgba(0, 0, 0, 0.28);

  display: flex;
  align-items: center;

  gap: 5px;
}

.desktop-sport-switch-button {
  min-width: 135px;
  min-height: 50px;

  padding: 6px 13px 6px 8px;

  border: 1px solid transparent;
  border-radius: 11px;

  background: transparent;
  color: #9ba69f;

  display: flex;
  align-items: center;

  gap: 9px;

  text-align: left;
  cursor: pointer;

  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.desktop-sport-switch-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
}

.desktop-sport-switch-button.active {
  border-color: rgba(245, 197, 24, 0.25);

  background:
    linear-gradient(145deg,
      rgba(245, 197, 24, 0.13),
      rgba(245, 197, 24, 0.035));

  color: #ffffff;
}

.desktop-sport-switch-icon {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-sport-switch-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(0 7px 10px rgba(0, 0, 0, 0.42));
}

.desktop-sport-switch-button>span:last-child {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.desktop-sport-switch-button small {
  color: #78847c;

  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.desktop-sport-switch-button strong {
  color: inherit;

  font-size: 11px;
  font-weight: 700;
}

/* GRADE */

.desktop-featured-games-grid {
  margin-top: 25px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 15px;
}

.desktop-featured-game-card {
  min-height: 225px;

  padding: 19px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;

  background:
    linear-gradient(145deg,
      rgba(15, 22, 17, 0.94),
      rgba(7, 11, 9, 0.96));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025);

  transition:
    transform 0.23s ease,
    border-color 0.23s ease,
    box-shadow 0.23s ease;
}

.desktop-featured-game-card:hover {
  transform: translateY(-3px);

  border-color: rgba(245, 197, 24, 0.25);

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

/* PLACEHOLDERS DE CARREGAMENTO */

.desktop-featured-game-loading {
  overflow: hidden;
  position: relative;
}

.desktop-featured-game-loading::after {
  content: "";

  position: absolute;
  inset: 0;

  transform: translateX(-100%);

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.035),
      transparent);

  animation:
    desktopGameLoadingShimmer 1.8s ease-in-out infinite;
}

.desktop-game-loading-line {
  width: 72%;
  height: 10px;

  margin-top: 22px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.055);
}

.desktop-game-loading-small {
  width: 34%;
  height: 8px;

  margin-top: 0;
}

.desktop-game-loading-teams {
  margin-top: 37px;

  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  justify-items: center;

  gap: 18px;
}

.desktop-game-loading-teams span:nth-child(1),
.desktop-game-loading-teams span:nth-child(3) {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.055);
}

.desktop-game-loading-teams span:nth-child(2) {
  width: 30px;
  height: 9px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);
}

@keyframes desktopGameLoadingShimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1100px) {
  .desktop-featured-games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .desktop-featured-game-card:last-child {
    display: none;
  }
}

@media (max-width: 760px) {
  .desktop-games-showcase {
    display: none;
  }
}

/* =====================================================
   DESKTOP V2 — CARDS REAIS DOS JOGOS
===================================================== */

.desktop-featured-game-card:not(.desktop-featured-game-loading) {
  min-height: 300px;

  position: relative;

  display: flex;
  flex-direction: column;
}

.desktop-featured-card-header {
  min-height: 44px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 12px;
}

.desktop-featured-championship {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 9px;
}

.desktop-featured-trophy-icon {
  width: 32px;
  height: 32px;

  flex-shrink: 0;

  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 9px;

  background: rgba(245, 197, 24, 0.055);
  color: var(--desktop-gold);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desktop-featured-trophy-icon svg {
  width: 17px;
  height: 17px;

  display: block;
}

.desktop-featured-championship>div {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 3px;
}

.desktop-featured-championship small {
  color: #707d74;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.desktop-featured-championship strong {
  max-width: 180px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #dfe5e1;

  font-size: 10px;
  font-weight: 650;
}

.desktop-featured-status,
.desktop-featured-popular {
  min-height: 24px;

  padding: 0 8px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.025);
  color: #97a39b;

  display: inline-flex;
  align-items: center;

  gap: 5px;

  white-space: nowrap;

  font-size: 8px;
  font-weight: 750;
}

.desktop-featured-status.live {
  border-color: rgba(239, 68, 68, 0.23);

  background: rgba(239, 68, 68, 0.07);
  color: #ff8282;
}

.desktop-featured-status.finished {
  color: #727e76;
}

.desktop-featured-popular {
  border-color: rgba(245, 197, 24, 0.25);

  background: rgba(245, 197, 24, 0.065);
  color: var(--desktop-gold);

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.desktop-featured-live-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #ef4444;

  box-shadow: 0 0 9px rgba(239, 68, 68, 0.65);

  animation:
    desktopFeaturedLivePulse 1.4s ease-in-out infinite;
}

@keyframes desktopFeaturedLivePulse {

  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* CONFRONTO */

.desktop-featured-match {
  min-height: 116px;

  margin-top: 13px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 50px minmax(0, 1fr);

  align-items: center;

  gap: 8px;
}

.desktop-featured-team {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  text-align: center;
}

.desktop-featured-logo-box {
  width: 58px;
  height: 58px;

  position: relative;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;

  background:
    radial-gradient(circle at 50% 35%,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.015) 62%,
      transparent);

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-featured-logo-box img {
  width: 44px;
  height: 44px;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(0 8px 11px rgba(0, 0, 0, 0.42));
}

.desktop-featured-team>strong {
  width: 100%;
  max-width: 125px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #f2f5f3;

  font-size: 11px;
  font-weight: 700;
}

.desktop-featured-versus {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 7px;

  color: #657169;
}

.desktop-featured-versus>span {
  width: 36px;
  height: 36px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.22);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.65px;
}

.desktop-featured-versus>strong {
  color: #ffffff;

  display: flex;
  align-items: center;

  gap: 6px;

  font-size: 17px;
  font-weight: 800;
}

.desktop-featured-versus>strong span {
  color: #69756d;

  font-size: 11px;
}

/* INFORMAÇÕES FINANCEIRAS */

.desktop-featured-financial {
  min-height: 49px;

  margin-top: 10px;
  padding: 9px 11px;

  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;

  background: rgba(0, 0, 0, 0.19);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

.desktop-featured-financial-item {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.desktop-featured-financial-item span {
  color: #6e7b72;

  font-size: 8px;
  font-weight: 650;
}

.desktop-featured-financial-item strong {
  color: #e7ebe8;

  font-size: 10px;
  font-weight: 750;
}

.desktop-featured-financial-item.prize strong {
  color: #39d77e;
}

.desktop-featured-financial-divider {
  width: 1px;
  height: 27px;

  background:
    linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
}

/* BOTÃO */

.desktop-featured-action {
  width: 100%;
  min-height: 40px;

  margin-top: 11px;
  padding: 0 14px;

  border: 1px solid rgba(245, 197, 24, 0.48);
  border-radius: 10px;

  background:
    linear-gradient(135deg,
      #f5c514,
      #e9a900);

  color: #070a08;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  font-size: 10px;
  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 10px 24px rgba(245, 197, 24, 0.13);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-featured-action svg {
  width: 16px;
  height: 16px;

  display: block;
}

.desktop-featured-action:not(:disabled):hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 29px rgba(245, 197, 24, 0.21);
}

.desktop-featured-action:disabled {
  cursor: default;

  border-color: rgba(255, 255, 255, 0.07);

  background: rgba(255, 255, 255, 0.035);
  color: #68746c;

  box-shadow: none;
}

.desktop-featured-action.live {
  border-color: rgba(239, 68, 68, 0.15);

  background: rgba(239, 68, 68, 0.055);
  color: #dd7777;
}

/* ESTADO VAZIO */

.desktop-featured-empty {
  min-height: 220px;

  grid-column: 1 / -1;

  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.012);
  color: #67736b;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  text-align: center;
}

.desktop-featured-empty svg {
  width: 30px;
  height: 30px;

  color: #4f5b53;
}

.desktop-featured-empty strong {
  color: #a5afa8;

  font-size: 12px;
}

.desktop-featured-empty span {
  font-size: 10px;
}

/* =====================================================
   DESKTOP V2 — TODOS OS JOGOS
===================================================== */

.desktop-all-games {
  width: min(1460px, calc(100% - 48px));

  margin: 32px auto 60px;
  padding: 36px;

  position: relative;

  scroll-margin-top: 95px;

  border: 1px solid rgba(245, 197, 24, 0.17);
  border-radius: 25px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(245, 197, 24, 0.075),
      transparent 27%),
    radial-gradient(circle at 0% 100%,
      rgba(20, 125, 68, 0.045),
      transparent 31%),
    linear-gradient(145deg,
      rgba(8, 14, 10, 0.985),
      rgba(3, 8, 5, 0.99));

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

/* CABEÇALHO */

.desktop-all-games-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 35px;
}

.desktop-all-games-heading {
  max-width: 580px;
}

.desktop-all-games-eyebrow {
  color: var(--desktop-gold);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.desktop-all-games-heading h2 {
  margin: 7px 0 8px;

  color: #ffffff;

  font-size: 30px;
  font-weight: 750;
  line-height: 1.15;
}

.desktop-all-games-heading p {
  margin: 0;

  color: #849087;

  font-size: 12px;
  line-height: 1.65;
}

.desktop-all-games-header-actions {
  display: flex;
  align-items: center;

  gap: 12px;
}

/* CONTADOR */

.desktop-games-availability {
  min-height: 58px;

  padding: 8px 13px 8px 8px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.22);

  display: flex;
  align-items: center;

  gap: 10px;
}

.desktop-games-availability-icon {
  width: 39px;
  height: 39px;

  flex-shrink: 0;

  border: 1px solid rgba(245, 197, 24, 0.23);
  border-radius: 10px;

  background: rgba(245, 197, 24, 0.065);
  color: var(--desktop-gold);

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-games-availability-icon svg {
  width: 20px;
  height: 20px;
}

.desktop-games-availability-copy {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.desktop-games-availability-copy strong {
  color: #e7ece8;

  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-games-availability-copy small {
  color: #78847c;

  display: flex;
  align-items: center;

  gap: 6px;

  font-size: 8px;
}

.desktop-games-online-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow: 0 0 9px rgba(34, 197, 94, 0.55);
}

/* SELETOR DE MODALIDADE */

.desktop-all-games-sports {
  min-height: 58px;

  padding: 4px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.22);

  display: flex;
  align-items: center;

  gap: 4px;
}

.desktop-all-games-sport {
  min-width: 113px;
  min-height: 48px;

  padding: 5px 13px 5px 8px;

  border: 1px solid transparent;
  border-radius: 10px;

  background: transparent;
  color: #929e96;

  display: flex;
  align-items: center;

  gap: 8px;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.desktop-all-games-sport.active {
  border-color: rgba(245, 197, 24, 0.44);

  background:
    linear-gradient(145deg,
      rgba(245, 197, 24, 0.16),
      rgba(245, 197, 24, 0.04));

  color: #ffffff;
}

.desktop-all-games-sport-image {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-all-games-sport-image img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.desktop-all-games-sport strong {
  font-size: 10px;
  font-weight: 700;
}

/* FILTROS DE TEMPO */

.desktop-games-period-filters {
  width: fit-content;

  margin-top: 27px;
  padding: 4px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;

  background: rgba(0, 0, 0, 0.22);

  display: flex;
  align-items: center;
}

.desktop-games-period-filters button {
  min-width: 121px;
  min-height: 44px;

  padding: 0 16px;

  border: 1px solid transparent;
  border-radius: 9px;

  background: transparent;
  color: #98a39c;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  font-size: 10px;
  font-weight: 700;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.desktop-games-period-filters button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.025);
}

.desktop-games-period-filters button.active {
  border-color: rgba(245, 197, 24, 0.5);

  background:
    linear-gradient(145deg,
      rgba(245, 197, 24, 0.18),
      rgba(245, 197, 24, 0.045));

  color: var(--desktop-gold);

  box-shadow:
    0 0 22px rgba(245, 197, 24, 0.07);
}

.desktop-period-icon {
  width: 17px;
  height: 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desktop-period-icon svg {
  width: 100%;
  height: 100%;
}

.desktop-period-live-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #f43f5e;

  box-shadow: 0 0 10px rgba(244, 63, 94, 0.45);
}

/* BUSCA E CAMPEONATOS */

.desktop-games-toolbar {
  margin-top: 20px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.95fr);

  gap: 15px;
}

.desktop-games-search,
.desktop-league-selector-trigger {
  min-height: 52px;

  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 12px;

  background:
    linear-gradient(145deg,
      rgba(13, 20, 16, 0.92),
      rgba(6, 11, 8, 0.95));
}

.desktop-games-search {
  padding: 0 16px;

  display: flex;
  align-items: center;

  gap: 11px;
}

.desktop-games-search:focus-within {
  border-color: rgba(245, 197, 24, 0.34);

  box-shadow:
    0 0 0 3px rgba(245, 197, 24, 0.045);
}

.desktop-games-search-icon {
  width: 21px;
  height: 21px;

  flex-shrink: 0;

  color: #9aa59e;
}

.desktop-games-search-icon svg {
  width: 100%;
  height: 100%;
}

.desktop-games-search input {
  width: 100%;
  height: 50px;

  border: 0;
  outline: 0;

  background: transparent;
  color: #edf1ee;

  font-family: inherit;
  font-size: 11px;
}

.desktop-games-search input::placeholder {
  color: #657168;
}

/* DROPDOWN */

.desktop-league-selector {
  position: relative;
  z-index: 20;
}

.desktop-league-selector-trigger {
  width: 100%;

  padding: 6px 14px 6px 10px;

  color: #ffffff;

  display: flex;
  align-items: center;

  gap: 10px;

  text-align: left;
  cursor: pointer;
}

.desktop-league-selector-icon {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  color: var(--desktop-gold);

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-league-selector-icon svg {
  width: 20px;
  height: 20px;
}

.desktop-league-selector-copy {
  min-width: 0;
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 2px;
}

.desktop-league-selector-copy small {
  color: #6f7b73;

  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.desktop-league-selector-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #e8ece9;

  font-size: 10px;
  font-weight: 700;
}

.desktop-league-selector-chevron {
  width: 18px;
  height: 18px;

  color: #9ba69f;

  transition: transform 0.2s ease;
}

.desktop-league-selector-chevron svg {
  width: 100%;
  height: 100%;
}

.desktop-league-selector.is-open .desktop-league-selector-chevron {
  transform: rotate(180deg);
}

.desktop-league-options {
  width: 100%;
  max-height: 320px;

  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  padding: 8px;

  overflow-y: auto;

  border: 1px solid rgba(245, 197, 24, 0.18);
  border-radius: 13px;

  background: rgba(5, 10, 7, 0.985);

  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.58);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 5px;
}

.desktop-league-options[hidden] {
  display: none;
}

.desktop-league-options .league-btn {
  min-height: 38px;

  padding: 0 10px;

  border: 1px solid transparent;
  border-radius: 8px;

  background: transparent;
  color: #929e96;

  text-align: left;

  font-family: inherit;
  font-size: 9px;
  font-weight: 650;

  cursor: pointer;
}

.desktop-league-options .league-btn:hover {
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}

.desktop-league-options .league-btn.active {
  border-color: rgba(245, 197, 24, 0.28);

  background: rgba(245, 197, 24, 0.09);
  color: var(--desktop-gold);
}

/* GRADE */

.desktop-all-games-grid {
  min-height: 300px;

  margin-top: 22px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 15px;
}

.desktop-all-game-loading {
  min-height: 205px;

  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;

  background:
    linear-gradient(145deg,
      rgba(14, 21, 16, 0.92),
      rgba(6, 11, 8, 0.96));
}

.desktop-all-game-loading::after {
  content: "";

  position: absolute;
  inset: 0;

  transform: translateX(-100%);

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.035),
      transparent);

  animation:
    desktopAllGameShimmer 1.8s ease-in-out infinite;
}

@keyframes desktopAllGameShimmer {
  100% {
    transform: translateX(100%);
  }
}

/* PAGINAÇÃO */

.desktop-games-pagination {
  margin-top: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;
}

.desktop-games-pagination .pagination-numbers {
  display: flex;
  align-items: center;

  gap: 6px;
}

.desktop-games-pagination button {
  min-width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.018);
  color: #a2ada6;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: inherit;
  font-size: 10px;
  font-weight: 700;

  cursor: pointer;
}

.desktop-games-pagination button.active {
  border-color: rgba(245, 197, 24, 0.55);

  background: rgba(245, 197, 24, 0.12);
  color: var(--desktop-gold);
}

.desktop-pagination-arrow svg {
  width: 18px;
  height: 18px;
}

/* CONFIANÇA */

.desktop-games-trust {
  width: min(900px, 100%);

  margin: 26px auto 0;
  padding: 13px;

  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.17);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 12px;
}

.desktop-games-trust-item {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 11px;
}

.desktop-games-trust-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 11px;

  background: rgba(245, 197, 24, 0.055);
  color: var(--desktop-gold);

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-games-trust-icon svg {
  width: 22px;
  height: 22px;
}

.desktop-games-trust-item>div {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 3px;
}

.desktop-games-trust-item strong {
  color: #e8ece9;

  font-size: 10px;
  font-weight: 700;
}

.desktop-games-trust-item span {
  color: #737f77;

  font-size: 8px;
  line-height: 1.45;
}

/* TABELA LEGADA */

.desktop-legacy-games-table {
  display: none !important;
}

@media (max-width: 1100px) {
  .desktop-all-games {
    padding: 28px;
  }

  .desktop-all-games-header {
    flex-direction: column;
  }

  .desktop-all-games-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .desktop-games-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .desktop-all-games {
    display: none;
  }
}

/* =====================================================
   CORREÇÃO — CARDS DESKTOP DE TODOS OS JOGOS
===================================================== */

.desktop-all-games-grid {
  min-height: 300px;
  margin-top: 22px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;

  gap: 16px;
}

.desktop-all-game-card {
  min-width: 0;
  min-height: 330px;
  padding: 18px;

  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(245, 197, 24, 0.05),
      transparent 30%),
    linear-gradient(145deg,
      rgba(13, 21, 16, 0.98),
      rgba(5, 10, 7, 0.99));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025);

  display: flex;
  flex-direction: column;

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.desktop-all-game-card:hover {
  transform: translateY(-3px);

  border-color: rgba(245, 197, 24, 0.28);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

/* CABEÇALHO DO CARD */

.desktop-all-game-card-header {
  min-width: 0;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 12px;
}

.desktop-game-league {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 9px;
}

.desktop-game-league-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 9px;

  background: rgba(245, 197, 24, 0.055);
  color: #f5c514;

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-game-league-icon svg {
  width: 18px !important;
  height: 18px !important;

  display: block;
}

.desktop-game-league-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 3px;
}

.desktop-game-league-copy small {
  color: #657168;

  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.desktop-game-league-copy strong {
  max-width: 220px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #e5eae6;

  font-size: 10px;
  font-weight: 700;
}

/* STATUS */

.desktop-game-status {
  min-height: 25px;
  padding: 0 9px;

  flex-shrink: 0;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.025);
  color: #9aa59e;

  display: inline-flex;
  align-items: center;

  gap: 6px;

  font-size: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-game-status.is-scheduled {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.06);
  color: #55da8c;
}

.desktop-game-status.is-live {
  border-color: rgba(244, 63, 94, 0.25);
  background: rgba(244, 63, 94, 0.07);
  color: #ff8799;
}

.desktop-game-status.is-finished {
  color: #717d75;
}

.desktop-game-live-indicator {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #f43f5e;

  box-shadow:
    0 0 9px rgba(244, 63, 94, 0.65);
}

/* DATA E HORÁRIO */

.desktop-game-date-row {
  margin-top: 13px;
  padding: 8px 10px;

  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 9px;

  background: rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 11px;
}

.desktop-game-date-item {
  color: #849087;

  display: inline-flex;
  align-items: center;

  gap: 6px;

  font-size: 8px;
  font-weight: 650;
}

.desktop-game-date-item svg {
  width: 14px !important;
  height: 14px !important;

  flex-shrink: 0;

  color: #a6b0a9;
}

.desktop-game-date-divider {
  width: 1px;
  height: 15px;

  background: rgba(255, 255, 255, 0.09);
}

/* CONFRONTO */

.desktop-all-game-match {
  min-height: 122px;
  margin-top: 11px;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 64px minmax(0, 1fr);

  align-items: center;

  gap: 10px;
}

.desktop-all-game-team {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 6px;

  text-align: center;
}

.desktop-all-game-logo {
  width: 58px;
  height: 58px;

  flex-shrink: 0;

  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;

  background:
    radial-gradient(circle at 50% 35%,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.012) 65%);

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-all-game-logo img {
  width: 43px !important;
  height: 43px !important;
  max-width: 43px !important;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(0 8px 11px rgba(0, 0, 0, 0.45));
}

.desktop-all-game-team>strong {
  width: 100%;
  max-width: 180px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #edf1ee;

  font-size: 11px;
  font-weight: 700;
}

.desktop-all-game-team>small {
  color: #59655d;

  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.desktop-all-game-center {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 7px;
}

.desktop-game-versus {
  width: 39px;
  height: 39px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.2);
  color: #727e76;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.desktop-game-score {
  color: #ffffff;

  display: flex;
  align-items: center;

  gap: 7px;

  font-size: 20px;
  font-weight: 800;
}

.desktop-game-score span {
  color: #667269;
  font-size: 11px;
}

.desktop-game-predictions {
  color: #707c73;

  font-size: 7px;
  font-weight: 650;
}

/* ETAPA DO CAMPEONATO */

.desktop-game-stage {
  width: fit-content;

  margin: 0 auto 10px;
  padding: 4px 9px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.02);
  color: #6e7a72;

  font-size: 7px;
  font-weight: 650;
}

/* VALORES */

.desktop-all-game-financial {
  min-height: 48px;

  margin-top: auto;
  padding: 8px 11px;

  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;

  background: rgba(0, 0, 0, 0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;
}

.desktop-game-financial-item {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.desktop-game-financial-item span {
  color: #67736b;

  font-size: 7px;
  font-weight: 650;
}

.desktop-game-financial-item strong {
  color: #e7ece8;

  font-size: 10px;
  font-weight: 750;
}

.desktop-game-financial-item.is-prize strong {
  color: #38d67c;
}

.desktop-game-financial-divider {
  width: 1px;
  height: 26px;

  background:
    linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
}

/* BOTÃO */

.desktop-all-game-action {
  margin-top: 10px;
}

.desktop-game-action-button {
  width: 100%;
  min-height: 42px;
  padding: 0 15px;

  border: 1px solid rgba(245, 197, 24, 0.5);
  border-radius: 10px;

  background:
    linear-gradient(135deg,
      #f5c514,
      #e8a900);

  color: #070a08;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  font-family: inherit;
  font-size: 10px;
  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 11px 24px rgba(245, 197, 24, 0.12);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-game-action-button svg {
  width: 16px !important;
  height: 16px !important;

  display: block;
}

.desktop-game-action-button:not(:disabled):hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 30px rgba(245, 197, 24, 0.2);
}

.desktop-game-action-button:disabled {
  cursor: default;

  border-color: rgba(255, 255, 255, 0.07);

  background: rgba(255, 255, 255, 0.03);
  color: #6e7a72;

  box-shadow: none;
}

/* ESTADO VAZIO */

.desktop-games-empty-state {
  min-height: 300px;

  grid-column: 1 / -1;

  border: 1px dashed rgba(255, 255, 255, 0.085);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.012);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  text-align: center;
}

.desktop-games-empty-icon svg {
  width: 30px !important;
  height: 30px !important;
}

@media (max-width: 1100px) {
  .desktop-all-games-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   DESKTOP V2 — MMA EM PREPARAÇÃO
===================================================== */

.desktop-mma-coming-soon {
  min-height: 390px;

  grid-column: 1 / -1;

  position: relative;
  overflow: hidden;

  border: 1px solid rgba(245, 197, 24, 0.14);
  border-radius: 20px;

  background:
    radial-gradient(circle at 22% 50%,
      rgba(245, 197, 24, 0.09),
      transparent 32%),
    linear-gradient(135deg,
      rgba(12, 19, 15, 0.98),
      rgba(4, 8, 6, 0.99));

  display: grid;
  grid-template-columns:
    minmax(360px, 0.9fr) minmax(380px, 1.1fr);

  align-items: center;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.desktop-mma-coming-visual {
  min-height: 390px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-mma-coming-glow {
  width: 250px;
  height: 250px;

  position: absolute;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(245, 197, 24, 0.16),
      rgba(245, 197, 24, 0.035) 48%,
      transparent 72%);

  filter: blur(8px);
}

.desktop-mma-coming-glove {
  width: clamp(155px,
      13vw,
      220px);

  position: absolute;
  z-index: 2;

  object-fit: contain;

  filter:
    drop-shadow(0 24px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 13px rgba(245, 197, 24, 0.1));
}

.desktop-mma-coming-glove-left {
  transform:
    translateX(-74px) rotate(5deg);

  animation:
    desktopMmaComingLeft 3.4s ease-in-out infinite;
}

.desktop-mma-coming-glove-right {
  transform:
    translateX(74px) rotate(-5deg) scaleX(-1);

  animation:
    desktopMmaComingRight 3.4s ease-in-out infinite;
}

@keyframes desktopMmaComingLeft {

  0%,
  100% {
    transform:
      translateX(-82px) rotate(6deg);
  }

  50% {
    transform:
      translateX(-68px) rotate(3deg);
  }
}

@keyframes desktopMmaComingRight {

  0%,
  100% {
    transform:
      translateX(82px) rotate(-6deg) scaleX(-1);
  }

  50% {
    transform:
      translateX(68px) rotate(-3deg) scaleX(-1);
  }
}

.desktop-mma-coming-content {
  max-width: 530px;

  padding: 45px 55px 45px 20px;

  position: relative;
  z-index: 2;
}

.desktop-mma-coming-eyebrow {
  color: #f5c514;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.desktop-mma-coming-content h3 {
  max-width: 490px;

  margin: 9px 0 12px;

  color: #ffffff;

  font-size: 29px;
  font-weight: 760;
  line-height: 1.15;
}

.desktop-mma-coming-content p {
  max-width: 500px;

  margin: 0;

  color: #849087;

  font-size: 11px;
  line-height: 1.7;
}

.desktop-mma-coming-features {
  margin-top: 22px;

  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.desktop-mma-coming-features span {
  min-height: 30px;

  padding: 0 11px;

  border: 1px solid rgba(245, 197, 24, 0.16);
  border-radius: 999px;

  background:
    rgba(245, 197, 24, 0.045);
  color: #b6beb8;

  display: inline-flex;
  align-items: center;

  font-size: 8px;
  font-weight: 650;
}

/* ATIVO NO MENU SUPERIOR */

.desktop-nav-link.is-sport-active {
  color: #f5c514;

  background:
    rgba(245, 197, 24, 0.07);
}

@media (max-width: 1100px) {
  .desktop-mma-coming-soon {
    grid-template-columns:
      minmax(300px, 0.85fr) minmax(330px, 1.15fr);
  }

  .desktop-mma-coming-content {
    padding-right: 30px;
  }

  .desktop-mma-coming-content h3 {
    font-size: 24px;
  }
}

/* =====================================================
   DESKTOP — DADOS DOS JOGOS MANUAIS / VÁRZEA
===================================================== */

@media (min-width: 769px) {

  body.desktop-v2 .desktop-manual-game-meta {
    width: 100%;
    margin: 0 0 10px;
    padding: 8px 10px;

    display: grid;
    grid-template-columns:
      minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;

    box-sizing: border-box;

    border: 1px solid rgba(245, 197, 24, 0.12);
    border-radius: 11px;

    background:
      linear-gradient(145deg,
        rgba(245, 197, 24, 0.035),
        rgba(255, 255, 255, 0.012));
  }

  body.desktop-v2 .desktop-manual-game-meta-item {
    min-width: 0;
    padding: 7px 9px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.14);
  }

  body.desktop-v2 .desktop-manual-game-meta-item span {
    min-width: 0;

    color: #6e7a72;

    font-size: 7px;
    font-weight: 650;
    line-height: 1.3;
  }

  body.desktop-v2 .desktop-manual-game-meta-item strong {
    flex-shrink: 0;
    max-width: 55%;

    color: #e7ebe8;

    font-size: 8px;
    font-weight: 750;
    line-height: 1.3;

    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

}

@media (min-width: 769px) {

  body.desktop-v2 .desktop-all-game-card:has(.desktop-manual-game-meta) {
    min-height: 365px;
  }

}

@media (min-width: 769px) {

  body.desktop-v2 .desktop-all-game-card:has(.desktop-manual-game-meta) {
    min-height: 365px;
  }

}

/* =====================================================
   DESKTOP — INFORMAÇÕES DA PARTIDA NO MODAL
===================================================== */

@media (min-width: 769px) {

  body.desktop-v2 .desktop-bet-game-meta {
    width: 100%;
    margin: 0 0 16px;
    padding: 12px;

    grid-template-columns:
      minmax(0, 1fr) minmax(0, 1fr);
    gap: 9px;

    box-sizing: border-box;

    border: 1px solid rgba(250, 204, 21, 0.24);
    border-radius: 14px;

    background:
      linear-gradient(145deg,
        rgba(250, 204, 21, 0.07),
        rgba(15, 23, 42, 0.45));

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  body.desktop-v2 .desktop-bet-game-meta-main {
    grid-column: 1 / -1;
  }

  body.desktop-v2 .desktop-bet-game-meta-main,
  body.desktop-v2 .desktop-bet-game-meta-item {
    min-width: 0;
    min-height: 42px;
    padding: 9px 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 10px;

    background: rgba(0, 0, 0, 0.18);
  }

  body.desktop-v2 .desktop-bet-game-meta span {
    min-width: 0;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 650;
    line-height: 1.3;

    text-align: left;
  }

  body.desktop-v2 .desktop-bet-game-meta strong {
    flex-shrink: 0;
    max-width: 58%;

    color: #ffffff;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;

    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.desktop-v2 .desktop-bet-game-meta-main strong {
    color: #facc15;
    font-size: 13px;
  }

}

@media (min-width: 769px) {

  body.desktop-v2 #betModal .bet-modal {
    width: 440px;
    max-width: calc(100vw - 40px);
  }

}

@media (min-width: 769px) and (max-height: 800px) {

  body.desktop-v2 #betModal {
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  body.desktop-v2 #betModal .bet-modal {
    margin: auto;
  }

}

/* =====================================================
   DESKTOP V2 — DETALHES DO JOGO
===================================================== */

.desktop-game-details-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;

  display: none;
  align-items: flex-start;
  justify-content: center;

  padding: 96px 28px 40px;

  overflow-y: auto;

  background:
    radial-gradient(circle at 50% 10%,
      rgba(212, 175, 55, 0.08),
      transparent 30%),
    rgba(1, 7, 5, 0.96);

  backdrop-filter: blur(12px);
}

.desktop-game-details-shell {
  width: min(1080px, 100%);

  margin: 0 auto;

  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;

  overflow: hidden;

  background:
    radial-gradient(circle at 20% 0%,
      rgba(212, 175, 55, 0.07),
      transparent 26%),
    linear-gradient(145deg,
      rgba(4, 18, 13, 0.99),
      rgba(3, 10, 8, 0.99));

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

/* =====================================================
   TOPO
===================================================== */

.desktop-game-details-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  min-height: 66px;
  padding: 0 24px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.055);

  background: rgba(2, 10, 7, 0.92);
}

.desktop-game-details-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #7e8a84;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.desktop-game-details-breadcrumb span:first-child {
  color: #18c96e;
}

.desktop-game-details-breadcrumb strong {
  color: #f4f6f5;
}

.desktop-game-details-close {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;

  color: #d8ddda;
  background: rgba(255, 255, 255, 0.025);

  font-size: 25px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.desktop-game-details-close:hover {
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.45);
  background: rgba(250, 204, 21, 0.07);
  transform: rotate(4deg);
}

/* =====================================================
   ESTRUTURA PRINCIPAL
===================================================== */

.desktop-game-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: start;
  gap: 16px;

  padding: 20px;
}

.desktop-game-details-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.desktop-game-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;

  min-width: 0;
  position: sticky;
  top: 0;
}

.desktop-game-details-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  align-self: flex-start;

  padding: 10px 15px;

  border: 1px solid rgba(212, 175, 55, 0.27);
  border-radius: 12px;

  color: #f0f3f1;
  background: rgba(255, 255, 255, 0.025);

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.desktop-game-details-back svg {
  width: 16px;
  height: 16px;
}

.desktop-game-details-back:hover {
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.5);
  background: rgba(250, 204, 21, 0.06);
  transform: translateX(-2px);
}

/* =====================================================
   CARD DO CONFRONTO
===================================================== */

.desktop-game-match-card {
  position: relative;

  padding: 18px;

  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;

  overflow: hidden;

  background:
    radial-gradient(circle at 50% 35%,
      rgba(212, 175, 55, 0.09),
      transparent 36%),
    linear-gradient(145deg,
      rgba(5, 23, 16, 0.98),
      rgba(4, 12, 9, 0.99));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 16px 40px rgba(0, 0, 0, 0.2);
}

.desktop-game-match-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;

  width: 210px;
  height: 210px;

  border-radius: 50%;

  background: rgba(250, 204, 21, 0.08);
  filter: blur(55px);

  pointer-events: none;
}

.desktop-game-match-heading {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.desktop-game-match-heading>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.desktop-game-match-heading span {
  color: #77847d;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.desktop-game-match-heading strong {
  color: #f4f6f5;
  font-size: 16px;
  font-weight: 800;
}

.desktop-game-available-badge {
  flex: 0 0 auto;

  padding: 7px 11px;

  border: 1px solid rgba(20, 201, 103, 0.28);
  border-radius: 999px;

  color: #21d878 !important;
  background: rgba(20, 201, 103, 0.08);

  font-size: 9px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.desktop-game-match-date {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: center;

  margin-top: 14px;
  padding: 9px 12px;

  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;

  color: #adb7b2;
  background: rgba(0, 0, 0, 0.16);

  font-size: 11px;
  font-weight: 600;
}

.desktop-game-match-teams {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;

  padding: 20px 12px 18px;
}

.desktop-game-match-team {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-width: 0;

  text-align: center;
}

.desktop-game-match-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 84px;
  height: 84px;

  margin-bottom: 12px;

  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 22px;

  background:
    radial-gradient(circle at 50% 40%,
      rgba(255, 255, 255, 0.06),
      transparent 68%),
    rgba(0, 0, 0, 0.16);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 10px 25px rgba(0, 0, 0, 0.18);
}

.desktop-game-match-logo img {
  display: block;

  width: 62px;
  height: 62px;

  object-fit: contain;
}

.desktop-game-match-team>strong {
  display: block;

  max-width: 100%;

  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;

  overflow-wrap: anywhere;
}

.desktop-game-match-team>small {
  margin-top: 5px;

  color: #68766f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.desktop-game-match-versus {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-game-match-versus span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;

  color: #facc15;
  background: rgba(0, 0, 0, 0.2);

  font-size: 15px;
  font-weight: 900;
}

.desktop-game-match-summary {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  padding: 13px 0;

  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;

  background:
    linear-gradient(90deg,
      rgba(212, 175, 55, 0.035),
      rgba(0, 0, 0, 0.13));
}

.desktop-game-match-summary>div {
  display: flex;
  flex-direction: column;
  gap: 5px;

  padding: 0 14px;

  text-align: center;
}

.desktop-game-match-summary>div+div {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.desktop-game-match-summary span {
  color: #7d8882;
  font-size: 9px;
  font-weight: 700;
}

.desktop-game-match-summary strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.desktop-game-match-summary>div:first-child strong {
  color: #facc15;
}

/* =====================================================
   ÁREA DO PALPITE
===================================================== */

.desktop-game-prediction-card {
  padding: 18px;

  border: 1px solid rgba(20, 201, 103, 0.17);
  border-radius: 18px;

  background:
    linear-gradient(145deg,
      rgba(5, 24, 17, 0.98),
      rgba(4, 13, 10, 0.99));
}

.desktop-game-prediction-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 16px;
}

.desktop-game-prediction-heading>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.desktop-game-prediction-heading span {
  color: #18c96e;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.desktop-game-prediction-heading h2 {
  margin: 0;

  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
}

.desktop-game-prediction-heading small {
  max-width: 265px;

  color: #7d8882;
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.desktop-game-score-fields {
  display: grid;
  grid-template-columns:
    minmax(130px, 1fr) 24px minmax(130px, 1fr) minmax(165px, 0.82fr);
  align-items: end;
  gap: 12px;
}

.desktop-game-score-field {
  display: flex;
  flex-direction: column;
  gap: 8px;

  min-width: 0;
}

.desktop-game-score-field>span {
  min-height: 30px;

  color: #aab4af;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.desktop-game-score-field input {
  width: 100%;
  height: 58px;

  padding: 0 12px;

  border: 1px solid rgba(212, 175, 55, 0.27);
  border-radius: 14px;
  outline: none;

  color: #ffffff;
  background:
    linear-gradient(145deg,
      rgba(0, 0, 0, 0.26),
      rgba(4, 14, 10, 0.95));

  font-family: inherit;
  font-size: 27px;
  font-weight: 800;
  text-align: center;

  appearance: textfield;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.desktop-game-score-field input::-webkit-outer-spin-button,
.desktop-game-score-field input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.desktop-game-score-field input:focus {
  border-color: rgba(250, 204, 21, 0.72);
  background: rgba(8, 22, 16, 0.98);

  box-shadow:
    0 0 0 3px rgba(250, 204, 21, 0.08),
    0 0 24px rgba(250, 204, 21, 0.08);
}

.desktop-game-score-separator {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 64px;

  color: #facc15;
  font-size: 21px;
  font-weight: 900;
}

.desktop-game-confirm-button {
  width: 100%;
  height: 58px;

  margin: 0;
  padding: 0 20px;

  border: 1px solid rgba(250, 204, 21, 0.52);
  border-radius: 14px;

  color: #141000;
  background:
    linear-gradient(135deg,
      #ffd21c,
      #e8aa00) !important;

  box-shadow:
    0 12px 28px rgba(229, 170, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-game-confirm-button:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.05);

  box-shadow:
    0 16px 34px rgba(229, 170, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.desktop-game-confirm-button:disabled {
  color: #fff6f6;
  border-color: rgba(239, 68, 68, 0.32);

  background:
    linear-gradient(135deg,
      #b72f2f,
      #8e2020) !important;

  box-shadow: none;

  cursor: not-allowed;
  opacity: 0.75;
}

.desktop-game-closing-warning {
  margin: 12px 0 0;

  color: #707d76;
  font-size: 9px;
  line-height: 1.5;
}

.desktop-game-insufficient-warning {
  display: none;

  margin: 12px 0 0;

  color: #ef6262;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

/* =====================================================
   RECARGA
===================================================== */

.desktop-game-recharge {
  margin: 0;
  padding: 18px;

  border: 1px solid rgba(20, 201, 103, 0.22);
  border-radius: 18px;

  background:
    linear-gradient(145deg,
      rgba(4, 26, 17, 0.98),
      rgba(3, 15, 10, 0.99));
}

.desktop-game-recharge-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 14px;
}

.desktop-game-recharge-heading>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.desktop-game-recharge-heading span {
  color: #18c96e;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.desktop-game-recharge-heading h3 {
  margin: 0;

  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.desktop-game-recharge-heading>strong {
  color: #facc15;
  font-size: 17px;
  font-weight: 800;
}

.desktop-game-recharge input {
  width: 100%;
  height: 46px;

  padding: 0 14px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  outline: none;

  color: #ffffff;
  background: rgba(0, 0, 0, 0.21);

  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}

.desktop-game-recharge input:focus {
  border-color: rgba(250, 204, 21, 0.5);
}

.desktop-game-recharge .quick-recharge-summary {
  margin-top: 10px;

  color: #87928c;
  font-size: 10px;
  line-height: 1.5;
}

.desktop-game-recharge .quick-recharge-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;

  margin-top: 13px;
}

.desktop-game-recharge .quick-recharge-actions button {
  height: 42px;

  border-radius: 11px;

  font-family: inherit;
  font-size: 11px;
  font-weight: 800;

  cursor: pointer;
}

.desktop-game-recharge .quick-pix {
  border: 1px solid rgba(20, 201, 103, 0.36);
  color: #dffbed;
  background: rgba(20, 201, 103, 0.14);
}

.desktop-game-recharge .quick-card {
  border: 1px solid rgba(212, 175, 55, 0.34);
  color: #f9e9aa;
  background: rgba(212, 175, 55, 0.1);
}

.desktop-game-recharge .quick-pix-area {
  margin-top: 12px;
}

/* =====================================================
   SIDEBAR
===================================================== */

.desktop-game-sidebar-card,
.desktop-game-free-bet {
  padding: 16px;

  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;

  background:
    linear-gradient(145deg,
      rgba(7, 21, 16, 0.98),
      rgba(4, 13, 10, 0.99));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.022),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.desktop-game-sidebar-title {
  margin-bottom: 13px;
  padding-bottom: 11px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.desktop-game-sidebar-title span {
  color: #facc15;
  font-size: 11px;
  font-weight: 800;
}

.desktop-game-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.desktop-game-sidebar-list>div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;

  padding: 10px 0;
}

.desktop-game-sidebar-list>div+div {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.desktop-game-sidebar-list span {
  color: #78857f;
  font-size: 10px;
  font-weight: 600;
}

.desktop-game-sidebar-list strong {
  max-width: 155px;

  color: #f1f4f2;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;

  overflow-wrap: anywhere;
}

.desktop-game-free-bet {
  display: none;

  border-color: rgba(250, 204, 21, 0.24);

  background:
    radial-gradient(circle at 85% 20%,
      rgba(250, 204, 21, 0.11),
      transparent 36%),
    linear-gradient(145deg,
      rgba(25, 23, 6, 0.95),
      rgba(9, 14, 9, 0.99));
}

.desktop-game-free-bet-label {
  display: block;

  margin-bottom: 7px;

  color: #18c96e;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.desktop-game-free-bet>strong {
  display: block;

  color: #facc15;
  font-size: 17px;
  font-weight: 800;
}

.desktop-game-free-bet p {
  margin: 7px 0 12px;

  color: #a4ada8;
  font-size: 10px;
  line-height: 1.55;
}

.desktop-game-free-bet .free-bet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 10px;

  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 999px;

  color: #f7e49b;
  background: rgba(250, 204, 21, 0.075);

  font-size: 10px;
  font-weight: 700;
}

.desktop-game-reward-copy {
  margin: 0;

  color: #98a39d;
  font-size: 10px;
  line-height: 1.7;
}

.desktop-game-reward-copy::before {
  content: "🏆";
  display: block;

  margin-bottom: 12px;

  color: #facc15;
  font-size: 24px;
}

/* =====================================================
   AJUSTES DE COMPATIBILIDADE
===================================================== */

.desktop-game-details-modal .bet-modal,
.desktop-game-details-modal .bet-teams,
.desktop-game-details-modal .bet-info,
.desktop-game-details-modal .score-label,
.desktop-game-details-modal>.modal-content {
  all: unset;
}

body:has(.desktop-game-details-modal[style*="display: flex"]) {
  overflow: hidden;
}

/* =====================================================
   RESPONSIVIDADE DESKTOP
===================================================== */

@media (max-width: 1050px) {
  .desktop-game-details-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .desktop-game-details-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-game-score-fields {
    grid-template-columns:
      minmax(130px, 1fr) 28px minmax(130px, 1fr);
  }

  .desktop-game-confirm-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .desktop-game-details-modal {
    padding: 18px 10px;
  }

  .desktop-game-details-shell {
    border-radius: 18px;
  }

  .desktop-game-details-topbar {
    padding: 0 14px;
  }

  .desktop-game-details-layout {
    padding: 12px;
  }

  .desktop-game-details-sidebar {
    display: flex;
  }

  .desktop-game-match-teams {
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
    gap: 8px;

    padding-inline: 0;
  }

  .desktop-game-match-logo {
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }

  .desktop-game-match-logo img {
    width: 53px;
    height: 53px;
  }

  .desktop-game-match-team>strong {
    font-size: 13px;
  }

  .desktop-game-match-summary {
    grid-template-columns: 1fr;
  }

  .desktop-game-match-summary>div {
    padding: 10px 14px;
  }

  .desktop-game-match-summary>div+div {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 0;
  }

  .desktop-game-prediction-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .desktop-game-prediction-heading small {
    text-align: left;
  }

  .desktop-game-score-fields {
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
  }

  .desktop-game-confirm-button {
    grid-column: 1 / -1;
  }

  .desktop-game-details-breadcrumb {
    gap: 5px;
    font-size: 9px;
  }
}

.desktop-game-details-sidebar .desktop-game-sidebar-card:last-child {
  flex: 1;
}

/* =====================================================
   DESKTOP — LIMITE DINÂMICO DE PALPITES
===================================================== */

.desktop-bet-limit-info {
  display: grid;
  grid-template-columns:
    46px minmax(0, 1fr) 92px;
  align-items: center;
  gap: 13px;

  margin-bottom: 16px;
  padding: 13px 15px;

  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;

  background:
    radial-gradient(circle at 88% 50%,
      rgba(212, 175, 55, 0.1),
      transparent 40%),
    rgba(0, 0, 0, 0.13);

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.desktop-bet-limit-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;

  color: #facc15;
  background:
    rgba(212, 175, 55, 0.07);
}

.desktop-bet-limit-icon svg {
  width: 25px;
  height: 25px;
}

.desktop-bet-limit-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.desktop-bet-limit-copy small {
  color: #8c9892;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
}

.desktop-bet-limit-copy strong {
  margin-top: 2px;

  color: #facc15;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.desktop-bet-limit-copy span {
  margin-top: 2px;

  color: #b5beb9;
  font-size: 9px;
  font-weight: 600;
}

.desktop-bet-limit-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding-left: 13px;

  border-left: 1px solid rgba(255, 255, 255, 0.07);

  text-align: center;
}

.desktop-bet-limit-count strong {
  color: #1ed875;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.desktop-bet-limit-count span {
  margin-top: 5px;

  color: #c7ceca;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* LIMITE ESGOTADO */

.desktop-bet-limit-info.is-exhausted {
  border-color:
    rgba(239, 68, 68, 0.3);

  background:
    radial-gradient(circle at 88% 50%,
      rgba(239, 68, 68, 0.1),
      transparent 40%),
    rgba(0, 0, 0, 0.13);
}

.desktop-bet-limit-info.is-exhausted .desktop-bet-limit-count strong {
  color: #ef5353;
}

.desktop-bet-limit-info.is-exhausted .desktop-bet-limit-count span {
  color: #f19a9a;
}

@media (max-width: 760px) {
  .desktop-bet-limit-info {
    grid-template-columns:
      42px minmax(0, 1fr) 70px;

    gap: 10px;
    padding: 12px;
  }

  .desktop-bet-limit-icon {
    width: 42px;
    height: 42px;
  }

  .desktop-bet-limit-copy strong {
    font-size: 11px;
  }

  .desktop-bet-limit-count strong {
    font-size: 18px;
  }
}

/* =====================================================
   DESKTOP — ÚLTIMOS CONFRONTOS
===================================================== */

.desktop-head-to-head-card {
  display: block;
}

.desktop-head-to-head-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desktop-head-to-head-item {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: center;
  gap: 8px;

  min-height: 48px;
  padding: 8px 9px;

  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 11px;

  background:
    rgba(0, 0, 0, 0.14);
}

.desktop-head-to-head-team {
  display: flex;
  align-items: center;
  gap: 7px;

  min-width: 0;
}

.desktop-head-to-head-team-away {
  justify-content: flex-end;
}

.desktop-head-to-head-team img {
  flex: 0 0 auto;

  width: 26px;
  height: 26px;

  object-fit: contain;
}

.desktop-head-to-head-team strong {
  color: #dce2df;
  font-size: 10px;
  font-weight: 800;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-head-to-head-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #facc15;
}

.desktop-head-to-head-score strong {
  font-size: 13px;
  font-weight: 900;
}

.desktop-head-to-head-score span {
  color: #69766f;
  font-size: 9px;
  font-weight: 700;
}

.desktop-head-to-head-state {
  padding: 14px 10px;

  border: 1px dashed rgba(255, 255, 255, 0.075);
  border-radius: 11px;

  color: #7f8c85;
  background:
    rgba(0, 0, 0, 0.1);

  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.desktop-head-to-head-state.is-error {
  color: #e88a8a;
  border-color:
    rgba(239, 68, 68, 0.2);
}

@media (max-width: 1050px) {
  .desktop-head-to-head-card {
    min-height: 100%;
  }
}

/* =====================================================
   DESKTOP V2 — BOTÃO DA CARTEIRA NO CABEÇALHO
===================================================== */

.desktop-wallet-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;

  flex: 0 0 auto;
  min-width: 108px;
  height: 44px;
  padding: 0 12px;

  color: #f8fafc;
  text-decoration: none;

  background:
    linear-gradient(145deg,
      rgba(250, 204, 21, 0.075),
      rgba(8, 14, 11, 0.96));

  border: 1px solid rgba(250, 204, 21, 0.28);

  border-radius: 12px;

  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-wallet-button::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(105deg,
      transparent 20%,
      rgba(250, 204, 21, 0.08) 50%,
      transparent 80%);

  opacity: 0;
  transform: translateX(-35%);

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    transform 0.35s ease;
}

.desktop-wallet-button:hover {
  color: #ffffff;

  border-color:
    rgba(250, 204, 21, 0.58);

  background:
    linear-gradient(145deg,
      rgba(250, 204, 21, 0.13),
      rgba(8, 14, 11, 0.98));

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(250, 204, 21, 0.07);

  transform: translateY(-1px);
}

.desktop-wallet-button:hover::before {
  opacity: 1;
  transform: translateX(35%);
}

.desktop-wallet-button:active {
  transform: translateY(0);
}

.desktop-wallet-button:focus-visible {
  outline: 2px solid rgba(250, 204, 21, 0.8);

  outline-offset: 3px;
}

.desktop-wallet-button-icon {
  position: relative;
  z-index: 1;

  display: grid;
  place-items: center;

  flex: 0 0 27px;
  width: 27px;
  height: 27px;

  color: #facc15;

  background:
    rgba(250, 204, 21, 0.08);

  border: 1px solid rgba(250, 204, 21, 0.23);

  border-radius: 8px;
}

.desktop-wallet-button-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.desktop-wallet-button-content {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 0;
  line-height: 1;
}

.desktop-wallet-button-content small {
  margin-bottom: 4px;

  color: #8e9b94;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-wallet-button-content strong {
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* =====================================================
   DESKTOP V2 — CARTEIRA RESPONSIVA NO CABEÇALHO
===================================================== */

@media (max-width: 1360px) {
  .desktop-wallet-button {
    width: 44px;
    min-width: 44px;
    padding: 0;

    justify-content: center;
  }

  .desktop-wallet-button-content {
    display: none;
  }

  .desktop-wallet-button-icon {
    flex: 0 0 27px;
  }
}

/* =========================================================
   NOTIFICAÇÕES — DESKTOP
========================================================= */

/* Impede scroll da página quando o painel estiver aberto */
body.desktop-notifications-open {
  overflow: hidden;
}


/* =========================================================
   BOTÃO DO SINO
========================================================= */

.desktop-notification-button {
  position: relative;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.015));

  color: #e5e7eb;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.desktop-notification-button:hover {
  color: #facc15;

  border-color:
    rgba(250, 204, 21, 0.28);

  background:
    rgba(250, 204, 21, 0.07);

  box-shadow:
    0 0 0 1px rgba(250, 204, 21, 0.03);
}

.desktop-notification-button:active {
  transform: scale(0.96);
}

.desktop-notification-button svg {
  width: 22px;
  height: 22px;

  display: block;

  pointer-events: none;
}


/* Sino quando existem notificações não lidas */

.desktop-notification-button.has-unread {
  color: #facc15;

  border-color:
    rgba(250, 204, 21, 0.22);
}


/* =========================================================
   BADGE DO SINO
========================================================= */

.desktop-notification-badge {
  position: absolute;

  top: -5px;
  right: -5px;

  min-width: 19px;
  height: 19px;

  padding: 0 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #090d0b;
  border-radius: 999px;

  background: #ef4444;
  color: #ffffff;

  font-size: 10px;
  font-weight: 800;
  line-height: 1;

  box-sizing: border-box;

  pointer-events: none;

  box-shadow:
    0 2px 8px rgba(239, 68, 68, 0.35);
}

.desktop-notification-badge[hidden] {
  display: none !important;
}


/* =========================================================
   OVERLAY
========================================================= */

.desktop-notifications-overlay {
  position: fixed;
  inset: 0;

  z-index: 99998;

  display: flex;
  justify-content: flex-end;

  background:
    rgba(0, 0, 0, 0);

  visibility: hidden;
  opacity: 0;

  pointer-events: none;

  transition:
    background 0.25s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.desktop-notifications-overlay.open {
  visibility: visible;
  opacity: 1;

  pointer-events: auto;

  background:
    rgba(0, 0, 0, 0.58);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}


/* =========================================================
   PAINEL LATERAL
========================================================= */

.desktop-notifications-panel {
  position: relative;

  width: min(400px, 100%);
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      #101714 0%,
      #0b100e 55%,
      #080c0a 100%);

  border-left:
    1px solid rgba(250, 204, 21, 0.12);

  box-shadow:
    -20px 0 60px rgba(0, 0, 0, 0.48);

  transform:
    translateX(100%);

  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-notifications-overlay.open .desktop-notifications-panel {
  transform:
    translateX(0);
}


/* Linha dourada superior */

.desktop-notifications-panel::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 2px;

  background:
    linear-gradient(90deg,
      transparent,
      #facc15,
      #d4a017,
      transparent);

  opacity: 0.8;

  z-index: 2;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.desktop-notifications-header {
  min-height: 78px;

  padding: 16px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 14px;

  flex-shrink: 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.06);

  background:
    rgba(255, 255, 255, 0.012);
}

.desktop-notifications-header-copy {
  min-width: 0;
}

.desktop-notifications-header-copy>span {
  display: block;

  margin-bottom: 4px;

  color: #d9ad00;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.desktop-notifications-header-info {
  min-width: 0;
}

.desktop-notifications-header h2 {
  margin: 0;

  color: #f8fafc;

  font-size: 20px;
  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -0.3px;
}

.desktop-notifications-header-copy p {
  max-width: 270px;

  margin: 5px 0 0;

  color: #7b8881;

  font-size: 11px;

  line-height: 1.45;
}

.desktop-notifications-count {
  display: block;

  margin-top: 5px;

  color: #8f9b94;

  font-size: 12px;
  font-weight: 500;
}


/* =========================================================
   BOTÃO FECHAR
========================================================= */

.desktop-notifications-close {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  padding: 0;

  border:
    1px solid rgba(255, 255, 255, 0.07);

  border-radius: 9px;

  background:
    rgba(255, 255, 255, 0.025);

  color: #7f8b85;

  cursor: pointer;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.desktop-notifications-close:hover {
  color: #ffffff;

  border-color:
    rgba(255, 255, 255, 0.14);

  background:
    rgba(255, 255, 255, 0.055);
}

.desktop-notifications-close:active {
  transform: scale(0.95);
}

.desktop-notifications-close svg {
  width: 16px;
  height: 16px;
}

.desktop-notifications-close:hover {
  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.08);

  border-color:
    rgba(255, 255, 255, 0.14);
}

.desktop-notifications-close:active {
  transform: scale(0.95);
}

.desktop-notifications-close svg {
  width: 19px;
  height: 19px;

  pointer-events: none;
}


/* =========================================================
   ÁREA "MARCAR TODAS COMO LIDAS"
========================================================= */

.desktop-notifications-toolbar {
  min-height: 46px;

  padding: 8px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  flex-shrink: 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.05);

  background:
    rgba(255, 255, 255, 0.012);
}

.desktop-notifications-read-all {
  min-height: 30px;

  padding: 0 10px;

  border:
    1px solid rgba(250, 204, 21, 0.14);

  border-radius: 7px;

  background:
    rgba(250, 204, 21, 0.035);

  color: #d9b82b;

  font-family: inherit;
  font-size: 11px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.desktop-notifications-read-all:hover:not(:disabled) {
  background:
    rgba(250, 204, 21, 0.08);

  border-color:
    rgba(250, 204, 21, 0.25);

  color: #fde047;
}

.desktop-notifications-read-all:disabled {
  color: #69736d;

  background:
    rgba(255, 255, 255, 0.025);

  border-color:
    rgba(255, 255, 255, 0.05);

  cursor: default;

  opacity: 0.65;
}

.desktop-notifications-read-all:hover:not(:disabled) {
  background:
    rgba(250, 204, 21, 0.08);

  color: #fde047;
}

.desktop-notifications-read-all:disabled {
  color: #5f6863;

  cursor: default;

  opacity: 0.55;
}


/* =========================================================
   LISTA
========================================================= */

.desktop-notifications-list {
  flex: 1;

  min-height: 0;

  overflow-y: auto;
  overflow-x: hidden;

  overscroll-behavior: contain;

  scrollbar-width: thin;
  scrollbar-color:
    rgba(250, 204, 21, 0.22) transparent;
}

.desktop-notifications-list::-webkit-scrollbar {
  width: 5px;
}

.desktop-notifications-list::-webkit-scrollbar-track {
  background: transparent;
}

.desktop-notifications-list::-webkit-scrollbar-thumb {
  background:
    rgba(250, 204, 21, 0.22);

  border-radius: 999px;
}


/* =========================================================
   ITEM DA NOTIFICAÇÃO
========================================================= */

.desktop-notification-item {
  position: relative;

  width: 100%;

  padding: 16px 18px 16px 22px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  border: 0;
  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);

  background: transparent;

  color: inherit;

  font-family: inherit;
  text-align: left;

  cursor: pointer;

  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.desktop-notification-item:hover {
  background:
    rgba(255, 255, 255, 0.028);
}


/* Notificação ainda não lida */

.desktop-notification-item.is-unread {
  background:
    linear-gradient(90deg,
      rgba(250, 204, 21, 0.055),
      rgba(250, 204, 21, 0.012));
}

.desktop-notification-item.is-unread:hover {
  background:
    linear-gradient(90deg,
      rgba(250, 204, 21, 0.085),
      rgba(250, 204, 21, 0.025));
}


/* Linha lateral para não lidas */

.desktop-notification-item.is-unread::before {
  content: "";

  position: absolute;

  top: 12px;
  bottom: 12px;
  left: 0;

  width: 2px;

  border-radius: 0 999px 999px 0;

  background:
    linear-gradient(180deg,
      #fde047,
      #d4a017);
}


/* =========================================================
   BOLINHA DE STATUS
========================================================= */

.desktop-notification-status {
  width: 6px;
  height: 6px;

  margin-top: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.14);
}

.desktop-notification-item.is-unread .desktop-notification-status {
  background: #facc15;

  box-shadow:
    0 0 7px rgba(250, 204, 21, 0.36);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.desktop-notification-content {
  min-width: 0;

  flex: 1;

  display: flex;
  flex-direction: column;
}

.desktop-notification-content strong {
  display: block;

  margin: 0 0 5px;

  color: #d9e0dc;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.35;
}

.desktop-notification-item.is-unread .desktop-notification-content strong {
  color: #ffffff;
}

.desktop-notification-message {
  display: -webkit-box;

  overflow: hidden;

  color: #8d9992;

  font-size: 12px;
  font-weight: 400;

  line-height: 1.5;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.desktop-notification-content small {
  display: block;

  margin-top: 7px;

  color: #58645e;

  font-size: 10px;
  font-weight: 500;
}


/* =========================================================
   ESTADO VAZIO
========================================================= */

.desktop-notifications-empty {
  min-height: 330px;

  padding: 50px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.desktop-notifications-empty-icon {
  width: 70px;
  height: 70px;

  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(250, 204, 21, 0.14);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(250, 204, 21, 0.09),
      rgba(250, 204, 21, 0.025));

  color:
    rgba(250, 204, 21, 0.75);
}

.desktop-notifications-empty-icon svg {
  width: 34px;
  height: 34px;
}

.desktop-notifications-empty strong {
  color: #e5e7eb;

  font-size: 16px;
  font-weight: 750;
}

.desktop-notifications-empty p {
  max-width: 260px;

  margin: 7px 0 0;

  color: #78837d;

  font-size: 13px;
  line-height: 1.55;
}


/* =========================================================
   FOCO / ACESSIBILIDADE
========================================================= */

.desktop-notification-button:focus-visible,
.desktop-notifications-close:focus-visible,
.desktop-notifications-read-all:focus-visible,
.desktop-notification-item:focus-visible {
  outline:
    2px solid rgba(250, 204, 21, 0.75);

  outline-offset: 2px;
}


/* =========================================================
   DESKTOP APENAS
========================================================= */

@media (max-width: 768px) {

  .desktop-notification-button,
  .desktop-notifications-overlay {
    display: none !important;
  }

}


/* =========================================================
   TELAS DESKTOP MENORES
========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

  .desktop-notifications-panel {
    width: 390px;
  }

}


/* =========================================================
   REDUZ ANIMAÇÃO PARA QUEM PREFERE
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .desktop-notifications-overlay,
  .desktop-notifications-panel,
  .desktop-notification-button,
  .desktop-notification-item {
    transition: none;
  }

}

/* =========================================================
   LOGIN PREMIUM — DESKTOP
   Mantém a mesma identidade visual do mobile
========================================================= */

body.desktop-v2 .mobile-login-modal {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  align-items: center;
  justify-content: center;

  padding: 28px;

  z-index: 100000;

  overflow-y: auto;

  font-family: "Poppins", sans-serif;
}


/* =========================================================
   FUNDO / BACKDROP
========================================================= */

body.desktop-v2 .mobile-login-backdrop {
  position: fixed;
  inset: 0;

  background:
    rgba(0, 0, 0, 0.76);

  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}


/* =========================================================
   CARD PRINCIPAL
========================================================= */

body.desktop-v2 .mobile-login-card {
  position: relative;

  width: min(480px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);

  overflow-y: auto;
  overflow-x: hidden;

  margin: auto;

  border:
    1px solid rgba(234, 179, 8, 0.32);

  border-radius: 24px;

  background:
    radial-gradient(circle at 50% 0%,
      rgba(250, 204, 21, 0.07),
      transparent 28%),
    linear-gradient(160deg,
      #101713 0%,
      #0b100e 45%,
      #080c0a 100%);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.68),
    0 0 60px rgba(250, 204, 21, 0.035);

  color: #ffffff;

  scrollbar-width: thin;
  scrollbar-color:
    rgba(250, 204, 21, 0.20) transparent;

  animation:
    desktopPremiumLoginEnter 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}


/* SCROLLBAR */

body.desktop-v2 .mobile-login-card::-webkit-scrollbar {
  width: 5px;
}

body.desktop-v2 .mobile-login-card::-webkit-scrollbar-track {
  background: transparent;
}

body.desktop-v2 .mobile-login-card::-webkit-scrollbar-thumb {
  background:
    rgba(250, 204, 21, 0.20);

  border-radius: 999px;
}


/* =========================================================
   BOTÃO FECHAR
========================================================= */

body.desktop-v2 .mobile-login-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border:
    1px solid rgba(250, 204, 21, 0.22);

  border-radius: 12px;

  background:
    rgba(250, 204, 21, 0.025);

  color: #d9ad00;

  cursor: pointer;

  z-index: 5;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

body.desktop-v2 .mobile-login-close:hover {
  color: #facc15;

  background:
    rgba(250, 204, 21, 0.08);

  border-color:
    rgba(250, 204, 21, 0.42);
}

body.desktop-v2 .mobile-login-close:active {
  transform: scale(0.95);
}

body.desktop-v2 .mobile-login-close svg {
  width: 18px;
  height: 18px;

  display: block;
}


/* =========================================================
   CABEÇALHO
========================================================= */

body.desktop-v2 .mobile-login-header {
  position: relative;

  padding:
    30px 38px 26px;

  text-align: center;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);
}


/* LOGO */

body.desktop-v2 .mobile-login-brand {
  position: relative;

  width: 104px;
  height: 92px;

  margin:
    0 auto 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

body.desktop-v2 .mobile-login-brand-glow {
  position: absolute;

  width: 135px;
  height: 85px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(250, 204, 21, 0.17),
      transparent 68%);

  filter: blur(10px);

  pointer-events: none;
}

body.desktop-v2 .mobile-login-logo {
  position: relative;

  width: 90px;
  max-height: 86px;

  object-fit: contain;

  display: block;

  z-index: 1;

  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.50));
}


/* =========================================================
   "★ ACESSO ★"
========================================================= */

body.desktop-v2 .mobile-login-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 2px;

  color: #d8ad15;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;

  text-transform: uppercase;
}

body.desktop-v2 .mobile-login-eyebrow span {
  color: #facc15;

  font-size: 11px;

  letter-spacing: 0;
}


/* =========================================================
   TÍTULO
========================================================= */

body.desktop-v2 .mobile-login-header h2 {
  margin:
    12px 0 0;

  color: #ffffff;

  font-size: 29px;
  font-weight: 800;

  line-height: 1.1;

  letter-spacing: 3px;

  text-transform: uppercase;
}

body.desktop-v2 .mobile-login-title-line {
  display: block;

  width: 92px;
  height: 2px;

  margin:
    15px auto 0;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
      transparent,
      #facc15,
      transparent);

  box-shadow:
    0 0 15px rgba(250, 204, 21, 0.25);
}

body.desktop-v2 .mobile-login-header p {
  margin:
    13px 0 0;

  color: #b89b43;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.5;
}


/* =========================================================
   CORPO
========================================================= */

body.desktop-v2 .mobile-login-body {
  padding:
    25px 38px 30px;
}


/* =========================================================
   LABELS
========================================================= */

body.desktop-v2 .mobile-login-label {
  display: block;

  margin:
    0 0 7px;

  color: #d6ddd9;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.7px;

  text-transform: uppercase;
}

body.desktop-v2 .mobile-login-field+.mobile-login-label {
  margin-top: 18px;
}


/* =========================================================
   CAMPO
========================================================= */

body.desktop-v2 .mobile-login-field {
  position: relative;

  width: 100%;
  height: 56px;

  display: flex;
  align-items: center;

  border:
    1px solid rgba(234, 179, 8, 0.36);

  border-radius: 14px;

  background:
    linear-gradient(180deg,
      rgba(17, 24, 21, 0.96),
      rgba(10, 15, 13, 0.98));

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.desktop-v2 .mobile-login-field:focus-within {
  border-color:
    rgba(250, 204, 21, 0.72);

  background:
    rgba(14, 20, 17, 0.99);

  box-shadow:
    0 0 0 3px rgba(250, 204, 21, 0.055);
}


/* ÍCONE DO CAMPO */

body.desktop-v2 .mobile-login-field-icon {
  width: 52px;
  height: 100%;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #e1b51a;
}

body.desktop-v2 .mobile-login-field-icon::after {
  content: "";

  position: absolute;

  left: 51px;

  width: 1px;
  height: 26px;

  background:
    rgba(250, 204, 21, 0.11);
}

body.desktop-v2 .mobile-login-field-icon svg {
  width: 21px;
  height: 21px;
}


/* INPUT */

body.desktop-v2 .mobile-login-field input {
  min-width: 0;
  height: 100%;

  flex: 1;

  padding:
    0 48px 0 13px;

  border: 0 !important;
  outline: 0 !important;

  background:
    transparent !important;

  box-shadow:
    none !important;

  color: #ffffff;

  font-family: "Poppins", sans-serif;

  font-size: 13px;
  font-weight: 400;
}

body.desktop-v2 .mobile-login-field input::placeholder {
  color: #6e7772;

  opacity: 1;
}


/* Autofill Chrome */

body.desktop-v2 .mobile-login-field input:-webkit-autofill,
body.desktop-v2 .mobile-login-field input:-webkit-autofill:hover,
body.desktop-v2 .mobile-login-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;

  -webkit-box-shadow:
    0 0 0 1000px #0d1310 inset;

  caret-color: #ffffff;

  transition:
    background-color 9999s ease-in-out 0s;
}


/* =========================================================
   MOSTRAR SENHA
========================================================= */

body.desktop-v2 .mobile-login-password-toggle {
  position: absolute;

  right: 8px;
  top: 50%;

  transform:
    translateY(-50%);

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 0;

  background: transparent;

  color: #d9ad00;

  cursor: pointer;

  border-radius: 9px;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

body.desktop-v2 .mobile-login-password-toggle:hover {
  color: #facc15;

  background:
    rgba(250, 204, 21, 0.055);
}

body.desktop-v2 .mobile-login-password-toggle svg {
  width: 21px;
  height: 21px;
}


/* =========================================================
   LEMBRAR LOGIN
========================================================= */

body.desktop-v2 .mobile-login-remember {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-top: 15px;

  color: #c8cfcb;

  font-size: 12px;
  font-weight: 500;

  cursor: pointer;

  user-select: none;
}

body.desktop-v2 .mobile-login-remember input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

body.desktop-v2 .mobile-login-checkbox {
  position: relative;

  width: 20px;
  height: 20px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(250, 204, 21, 0.38);

  border-radius: 6px;

  background:
    rgba(255, 255, 255, 0.025);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body.desktop-v2 .mobile-login-remember input:checked+.mobile-login-checkbox {
  border-color: #facc15;

  background:
    linear-gradient(135deg,
      #fde047,
      #eab308);

  box-shadow:
    0 5px 14px rgba(234, 179, 8, 0.18);
}

body.desktop-v2 .mobile-login-remember input:checked+.mobile-login-checkbox::after {
  content: "";

  width: 8px;
  height: 4px;

  margin-top: -2px;

  border-left:
    2px solid #12170c;

  border-bottom:
    2px solid #12170c;

  transform:
    rotate(-45deg);
}


/* =========================================================
   BOTÃO ENTRAR
========================================================= */

body.desktop-v2 .mobile-login-submit {
  position: relative;

  width: 100%;
  height: 52px;

  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding:
    0 58px 0 20px;

  border: 0;

  border-radius: 13px;

  background:
    linear-gradient(135deg,
      #fde047 0%,
      #facc15 48%,
      #e9aa08 100%);

  color: #10140d;

  font-family: "Poppins", sans-serif;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1px;

  text-transform: uppercase;

  cursor: pointer;

  box-shadow:
    0 12px 28px rgba(234, 179, 8, 0.18);

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

body.desktop-v2 .mobile-login-submit:hover {
  filter: brightness(1.04);

  transform:
    translateY(-1px);

  box-shadow:
    0 16px 34px rgba(234, 179, 8, 0.24);
}

body.desktop-v2 .mobile-login-submit:active {
  transform:
    translateY(0) scale(0.99);
}


/* SETA */

body.desktop-v2 .mobile-login-submit-arrow {
  position: absolute;

  right: 7px;
  top: 50%;

  transform:
    translateY(-50%);

  width: 39px;
  height: 39px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background:
    rgba(0, 0, 0, 0.08);
}

body.desktop-v2 .mobile-login-submit-arrow svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   ESQUECI MINHA SENHA
========================================================= */

body.desktop-v2 .mobile-login-forgot {
  display: block;

  margin:
    17px auto 0;

  padding: 4px 8px;

  border: 0;

  background: transparent;

  color: #e5b91d;

  font-family: inherit;

  font-size: 11px;
  font-weight: 700;

  text-decoration: underline;

  text-underline-offset: 3px;

  cursor: pointer;
}

body.desktop-v2 .mobile-login-forgot:hover {
  color: #fde047;
}


/* =========================================================
   DIVISOR
========================================================= */

body.desktop-v2 .mobile-login-divider {
  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 12px;

  margin:
    21px 0 17px;
}

body.desktop-v2 .mobile-login-divider span {
  height: 1px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(250, 204, 21, 0.28));
}

body.desktop-v2 .mobile-login-divider span:last-child {
  background:
    linear-gradient(90deg,
      rgba(250, 204, 21, 0.28),
      transparent);
}

body.desktop-v2 .mobile-login-divider strong {
  color: #facc15;

  font-size: 12px;
}


/* =========================================================
   CRIAR CONTA
========================================================= */

body.desktop-v2 .mobile-login-create-account {
  width: 100%;

  padding: 3px;

  border: 0;

  background: transparent;

  color: #9da7a1;

  font-family: inherit;

  font-size: 11px;
  font-weight: 500;

  cursor: pointer;
}

body.desktop-v2 .mobile-login-create-account strong {
  margin-left: 4px;

  color: #eab308;

  font-weight: 800;

  transition:
    color 0.2s ease;
}

body.desktop-v2 .mobile-login-create-account:hover strong {
  color: #fde047;
}


/* =========================================================
   FOCO / ACESSIBILIDADE
========================================================= */

body.desktop-v2 .mobile-login-close:focus-visible,
body.desktop-v2 .mobile-login-password-toggle:focus-visible,
body.desktop-v2 .mobile-login-submit:focus-visible,
body.desktop-v2 .mobile-login-forgot:focus-visible,
body.desktop-v2 .mobile-login-create-account:focus-visible {
  outline:
    2px solid rgba(250, 204, 21, 0.75);

  outline-offset: 2px;
}


/* =========================================================
   ANIMAÇÃO
========================================================= */

@keyframes desktopPremiumLoginEnter {
  from {
    opacity: 0;

    transform:
      translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }
}


/* =========================================================
   DESKTOP COM POUCA ALTURA
========================================================= */

@media (min-width: 769px) and (max-height: 760px) {

  body.desktop-v2 .mobile-login-modal {
    align-items: flex-start;

    padding-top: 18px;
    padding-bottom: 18px;
  }

  body.desktop-v2 .mobile-login-card {
    max-height:
      calc(100vh - 36px);
  }

  body.desktop-v2 .mobile-login-header {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  body.desktop-v2 .mobile-login-brand {
    width: 80px;
    height: 68px;

    margin-bottom: 6px;
  }

  body.desktop-v2 .mobile-login-logo {
    width: 70px;
    max-height: 65px;
  }

  body.desktop-v2 .mobile-login-header h2 {
    margin-top: 8px;

    font-size: 25px;
  }

  body.desktop-v2 .mobile-login-body {
    padding-top: 20px;
    padding-bottom: 22px;
  }

  body.desktop-v2 .mobile-login-field {
    height: 52px;
  }

}


/* =========================================================
   MOBILE
   Não força esta versão desktop no layout mobile.
========================================================= */

@media (max-width: 768px) {

  body.desktop-v2 .mobile-login-card {
    width:
      calc(100vw - 28px);
  }

}

/* =========================================================
   CADASTRO PREMIUM — DESKTOP
========================================================= */

body.desktop-v2 .desktop-register-modal {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 28px;

  z-index: 100000;

  overflow-y: auto;

  font-family: "Poppins", sans-serif;
}


/* =========================================================
   BACKDROP
========================================================= */

body.desktop-v2 .desktop-register-backdrop {
  position: fixed;
  inset: 0;

  background:
    rgba(0, 0, 0, 0.78);

  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}


/* =========================================================
   CARD
========================================================= */

body.desktop-v2 .desktop-register-card {
  position: relative;

  width: min(560px, calc(100vw - 48px));
  max-height: calc(100vh - 40px);

  margin: auto;

  overflow-y: auto;
  overflow-x: hidden;

  border:
    1px solid rgba(234, 179, 8, 0.30);

  border-radius: 24px;

  background:
    radial-gradient(circle at 50% 0%,
      rgba(250, 204, 21, 0.075),
      transparent 26%),
    linear-gradient(160deg,
      #111816 0%,
      #0b100e 48%,
      #080c0a 100%);

  box-shadow:
    0 38px 95px rgba(0, 0, 0, 0.72),
    0 0 70px rgba(250, 204, 21, 0.035);

  color: #ffffff;

  scrollbar-width: thin;
  scrollbar-color:
    rgba(250, 204, 21, 0.20) transparent;

  animation:
    desktopRegisterEnter 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Scrollbar */

body.desktop-v2 .desktop-register-card::-webkit-scrollbar {
  width: 5px;
}

body.desktop-v2 .desktop-register-card::-webkit-scrollbar-track {
  background: transparent;
}

body.desktop-v2 .desktop-register-card::-webkit-scrollbar-thumb {
  background:
    rgba(250, 204, 21, 0.20);

  border-radius: 999px;
}


/* =========================================================
   FECHAR
========================================================= */

body.desktop-v2 .desktop-register-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border:
    1px solid rgba(250, 204, 21, 0.22);

  border-radius: 12px;

  background:
    rgba(250, 204, 21, 0.025);

  color: #d9ad00;

  cursor: pointer;

  z-index: 5;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

body.desktop-v2 .desktop-register-close:hover {
  color: #facc15;

  background:
    rgba(250, 204, 21, 0.08);

  border-color:
    rgba(250, 204, 21, 0.42);
}

body.desktop-v2 .desktop-register-close:active {
  transform: scale(0.95);
}

body.desktop-v2 .desktop-register-close svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   CABEÇALHO
========================================================= */

body.desktop-v2 .desktop-register-header {
  padding:
    28px 42px 24px;

  text-align: center;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);
}


/* Logo */

body.desktop-v2 .desktop-register-brand {
  position: relative;

  width: 100px;
  height: 88px;

  margin:
    0 auto 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

body.desktop-v2 .desktop-register-brand-glow {
  position: absolute;

  width: 140px;
  height: 90px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(250, 204, 21, 0.18),
      transparent 68%);

  filter: blur(11px);
}

body.desktop-v2 .desktop-register-logo {
  position: relative;

  width: 88px;
  max-height: 82px;

  object-fit: contain;

  z-index: 1;

  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.50));
}


/* Eyebrow */

body.desktop-v2 .desktop-register-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: #d8ad15;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 3px;

  text-transform: uppercase;
}

body.desktop-v2 .desktop-register-eyebrow span {
  color: #facc15;

  letter-spacing: 0;
}


/* Título */

body.desktop-v2 .desktop-register-header h2 {
  margin:
    10px 0 0;

  color: #ffffff;

  font-size: 29px;
  font-weight: 800;

  line-height: 1.1;

  letter-spacing: 2px;

  text-transform: uppercase;
}

body.desktop-v2 .desktop-register-header p {
  margin:
    11px 0 0;

  color: #b79a44;

  font-size: 13px;

  line-height: 1.5;
}


/* =========================================================
   CORPO
========================================================= */

body.desktop-v2 .desktop-register-body {
  padding:
    24px 42px 30px;
}


/* =========================================================
   CAMPOS
========================================================= */

body.desktop-v2 .desktop-register-field {
  position: relative;

  width: 100%;
  height: 54px;

  margin-bottom: 13px;

  display: flex;
  align-items: center;

  border:
    1px solid rgba(234, 179, 8, 0.32);

  border-radius: 14px;

  background:
    linear-gradient(180deg,
      rgba(17, 24, 21, 0.96),
      rgba(10, 15, 13, 0.99));

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.desktop-v2 .desktop-register-field:focus-within {
  border-color:
    rgba(250, 204, 21, 0.72);

  background:
    rgba(14, 20, 17, 0.99);

  box-shadow:
    0 0 0 3px rgba(250, 204, 21, 0.055);
}


/* Ícone */

body.desktop-v2 .desktop-register-field-icon {
  width: 52px;
  height: 100%;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #dfb219;
}

body.desktop-v2 .desktop-register-field-icon::after {
  content: "";

  position: absolute;

  left: 51px;

  width: 1px;
  height: 26px;

  background:
    rgba(250, 204, 21, 0.10);
}

body.desktop-v2 .desktop-register-field-icon svg {
  width: 21px;
  height: 21px;
}


/* Input */

body.desktop-v2 .desktop-register-field input {
  min-width: 0;
  height: 100%;

  flex: 1;

  padding:
    0 14px;

  border: 0 !important;
  outline: 0 !important;

  background: transparent !important;

  color: #ffffff;

  font-family: inherit;

  font-size: 13px;

  box-shadow: none !important;
}

body.desktop-v2 .desktop-register-field input::placeholder {
  color: #6f7974;

  opacity: 1;
}


/* Autofill */

body.desktop-v2 .desktop-register-field input:-webkit-autofill,
body.desktop-v2 .desktop-register-field input:-webkit-autofill:hover,
body.desktop-v2 .desktop-register-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;

  -webkit-box-shadow:
    0 0 0 1000px #0d1310 inset;

  caret-color: #ffffff;

  transition:
    background-color 9999s ease-in-out 0s;
}


/* =========================================================
   SELECT
========================================================= */

body.desktop-v2 .desktop-register-select {
  position: relative;
}

body.desktop-v2 .desktop-register-select select {
  width: 100%;
  height: 100%;

  flex: 1;

  appearance: none;
  -webkit-appearance: none;

  padding:
    0 48px 0 14px;

  border: 0;
  outline: 0;

  background: transparent;

  color: #ffffff;

  font-family: inherit;

  font-size: 13px;

  cursor: pointer;
}

body.desktop-v2 .desktop-register-select select option {
  background: #0d1310;

  color: #ffffff;
}

body.desktop-v2 .desktop-register-select-arrow {
  position: absolute;

  right: 14px;
  top: 50%;

  transform:
    translateY(-50%);

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d9ad00;

  pointer-events: none;
}

body.desktop-v2 .desktop-register-select-arrow svg {
  width: 16px;
  height: 16px;
}


/* =========================================================
   FORÇA DA SENHA
========================================================= */

body.desktop-v2 .desktop-register-strength {
  width: 100%;
  height: 5px;

  margin:
    2px 0 5px;

  overflow: hidden;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.07);
}

body.desktop-v2 .desktop-register-strength #strengthBar {
  height: 100%;
  width: 0;

  border-radius: inherit;

  transition:
    width 0.2s ease,
    background 0.2s ease;
}

body.desktop-v2 .desktop-register-strength-text {
  min-height: 15px;

  margin-bottom: 5px;

  font-size: 10px;
  font-weight: 600;
}

body.desktop-v2 .desktop-register-warning {
  margin-bottom: 8px;

  font-size: 10px;
  line-height: 1.4;
}


/* =========================================================
   TÍTULO DE SEÇÃO
========================================================= */

body.desktop-v2 .desktop-register-section-title {
  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 12px;

  margin:
    17px 0 15px;
}

body.desktop-v2 .desktop-register-section-title span {
  height: 1px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(250, 204, 21, 0.26));
}

body.desktop-v2 .desktop-register-section-title span:last-child {
  background:
    linear-gradient(90deg,
      rgba(250, 204, 21, 0.26),
      transparent);
}

body.desktop-v2 .desktop-register-section-title strong {
  color: #d6ad21;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  white-space: nowrap;
}


/* =========================================================
   TERMOS
========================================================= */

body.desktop-v2 .desktop-register-terms {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 11px;

  margin-top: 17px;

  color: #c3cbc6;

  font-size: 11px;

  line-height: 1.55;

  cursor: pointer;
}

body.desktop-v2 .desktop-register-terms input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

body.desktop-v2 .desktop-register-checkbox {
  position: relative;

  width: 21px;
  height: 21px;

  margin-top: 1px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(250, 204, 21, 0.36);

  border-radius: 6px;

  background:
    rgba(255, 255, 255, 0.02);
}

body.desktop-v2 .desktop-register-terms input:checked+.desktop-register-checkbox {
  border-color: #facc15;

  background:
    linear-gradient(135deg,
      #fde047,
      #eab308);

  box-shadow:
    0 5px 14px rgba(234, 179, 8, 0.16);
}

body.desktop-v2 .desktop-register-terms input:checked+.desktop-register-checkbox::after {
  content: "";

  width: 8px;
  height: 4px;

  margin-top: -2px;

  border-left:
    2px solid #10140d;

  border-bottom:
    2px solid #10140d;

  transform:
    rotate(-45deg);
}


/* Links */

body.desktop-v2 .desktop-register-terms a {
  color: #e8ba18;

  font-weight: 700;

  text-decoration: none;
}

body.desktop-v2 .desktop-register-terms a:hover {
  color: #fde047;

  text-decoration: underline;
}


/* =========================================================
   BOTÃO CRIAR CONTA
========================================================= */

body.desktop-v2 .desktop-register-submit {
  position: relative;

  width: 100%;
  height: 52px;

  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding:
    0 58px 0 20px;

  border: 0;

  border-radius: 13px;

  background:
    linear-gradient(135deg,
      #fde047 0%,
      #facc15 48%,
      #e9aa08 100%);

  color: #10140d;

  font-family: inherit;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1px;

  text-transform: uppercase;

  cursor: pointer;

  box-shadow:
    0 12px 28px rgba(234, 179, 8, 0.18);

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

body.desktop-v2 .desktop-register-submit:hover {
  transform:
    translateY(-1px);

  filter:
    brightness(1.04);

  box-shadow:
    0 16px 34px rgba(234, 179, 8, 0.24);
}

body.desktop-v2 .desktop-register-submit:active {
  transform:
    scale(0.99);
}


/* Seta */

body.desktop-v2 .desktop-register-submit-arrow {
  position: absolute;

  right: 7px;
  top: 50%;

  transform:
    translateY(-50%);

  width: 39px;
  height: 39px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background:
    rgba(0, 0, 0, 0.08);
}

body.desktop-v2 .desktop-register-submit-arrow svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   VOLTAR PARA LOGIN
========================================================= */

body.desktop-v2 .desktop-register-login-link {
  width: 100%;

  margin-top: 15px;

  padding: 3px;

  border: 0;

  background: transparent;

  color: #9da7a1;

  font-family: inherit;

  font-size: 11px;

  cursor: pointer;
}

body.desktop-v2 .desktop-register-login-link strong {
  margin-left: 4px;

  color: #eab308;

  font-weight: 800;
}

body.desktop-v2 .desktop-register-login-link:hover strong {
  color: #fde047;
}


/* =========================================================
   FOCO
========================================================= */

body.desktop-v2 .desktop-register-close:focus-visible,
body.desktop-v2 .desktop-register-submit:focus-visible,
body.desktop-v2 .desktop-register-login-link:focus-visible {
  outline:
    2px solid rgba(250, 204, 21, 0.75);

  outline-offset: 2px;
}


/* =========================================================
   ANIMAÇÃO
========================================================= */

@keyframes desktopRegisterEnter {
  from {
    opacity: 0;

    transform:
      translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }
}


/* =========================================================
   DESKTOP COM MENOR ALTURA
========================================================= */

@media (min-width: 769px) and (max-height: 820px) {

  body.desktop-v2 .desktop-register-modal {
    align-items: flex-start;

    padding:
      16px 24px;
  }

  body.desktop-v2 .desktop-register-card {
    max-height:
      calc(100vh - 32px);
  }

  body.desktop-v2 .desktop-register-header {
    padding:
      18px 36px 16px;
  }

  body.desktop-v2 .desktop-register-brand {
    width: 74px;
    height: 62px;

    margin-bottom: 5px;
  }

  body.desktop-v2 .desktop-register-logo {
    width: 66px;
    max-height: 60px;
  }

  body.desktop-v2 .desktop-register-header h2 {
    margin-top: 7px;

    font-size: 24px;
  }

  body.desktop-v2 .desktop-register-header p {
    margin-top: 7px;
  }

  body.desktop-v2 .desktop-register-body {
    padding:
      18px 36px 22px;
  }

  body.desktop-v2 .desktop-register-field {
    height: 48px;

    margin-bottom: 10px;
  }

  body.desktop-v2 .desktop-register-section-title {
    margin:
      13px 0 11px;
  }

  body.desktop-v2 .desktop-register-terms {
    margin-top: 12px;
  }

  body.desktop-v2 .desktop-register-submit {
    height: 48px;

    margin-top: 15px;
  }

}


/* =========================================================
   MOBILE
   Não interfere no layout mobile existente.
========================================================= */

@media (max-width: 768px) {

  body.desktop-v2 .desktop-register-card {
    width:
      calc(100vw - 28px);
  }

}

/* =========================================================
   VALIDAÇÃO DE CONFIRMAÇÃO DE SENHA
========================================================= */

body.desktop-v2 .desktop-register-field input.is-valid {
  color: #ffffff;
}

body.desktop-v2 .desktop-register-field:has(input.is-valid) {
  border-color:
    rgba(34, 197, 94, 0.55);

  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.05);
}

body.desktop-v2 .desktop-register-field:has(input.is-invalid) {
  border-color:
    rgba(239, 68, 68, 0.58);

  box-shadow:
    0 0 0 3px rgba(239, 68, 68, 0.055);
}

.password-match-success {
  display: block;

  color: #22c55e;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.4;
}

.password-match-error {
  display: block;

  color: #ef4444;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.4;
}

/* =========================================================
   RECUPERAÇÃO DE SENHA — DESKTOP PREMIUM
========================================================= */

body.desktop-v2 .desktop-recover-modal {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 28px;

  z-index: 100000;

  overflow-y: auto;

  font-family: "Poppins", sans-serif;
}


/* =========================================================
   BACKDROP
========================================================= */

body.desktop-v2 .desktop-recover-backdrop {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.8);

  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}


/* =========================================================
   CARD PRINCIPAL
========================================================= */

body.desktop-v2 .desktop-recover-card {
  position: relative;

  width: min(500px, calc(100vw - 48px));

  margin: auto;

  overflow: hidden;

  border: 1px solid rgba(234, 179, 8, 0.28);

  border-radius: 24px;

  background:
    radial-gradient(circle at 50% 0%,
      rgba(250, 204, 21, 0.075),
      transparent 30%),
    linear-gradient(160deg,
      #111816 0%,
      #0b100e 52%,
      #080c0a 100%);

  box-shadow:
    0 38px 95px rgba(0, 0, 0, 0.72),
    0 0 70px rgba(250, 204, 21, 0.035);

  color: #ffffff;

  animation:
    desktopRecoverEnter 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   CABEÇALHO
========================================================= */

body.desktop-v2 .desktop-recover-header {
  position: relative;

  min-height: 92px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 22px 70px 22px 26px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.055);
}


/* Ícone de segurança */

body.desktop-v2 .desktop-recover-header-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(250, 204, 21, 0.24);

  border-radius: 13px;

  background:
    rgba(250, 204, 21, 0.035);

  color: #e3b517;
}

body.desktop-v2 .desktop-recover-header-icon svg {
  width: 22px;
  height: 22px;
}


/* Texto */

body.desktop-v2 .desktop-recover-header-copy {
  min-width: 0;
}

body.desktop-v2 .desktop-recover-header-copy span {
  display: block;

  margin-bottom: 4px;

  color: #d9ad18;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.6px;

  text-transform: uppercase;
}

body.desktop-v2 .desktop-recover-header-copy h2 {
  margin: 0;

  color: #ffffff;

  font-size: 22px;
  font-weight: 800;

  line-height: 1.15;
}


/* =========================================================
   BOTÃO FECHAR
========================================================= */

body.desktop-v2 .desktop-recover-close {
  position: absolute;

  top: 24px;
  right: 22px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border:
    1px solid rgba(250, 204, 21, 0.18);

  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.018);

  color: #cfa914;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

body.desktop-v2 .desktop-recover-close:hover {
  background:
    rgba(250, 204, 21, 0.075);

  border-color:
    rgba(250, 204, 21, 0.38);

  color: #facc15;
}

body.desktop-v2 .desktop-recover-close:active {
  transform: scale(0.95);
}

body.desktop-v2 .desktop-recover-close svg {
  width: 17px;
  height: 17px;
}


/* =========================================================
   CORPO
========================================================= */

body.desktop-v2 .desktop-recover-body {
  padding: 26px;
}


/* =========================================================
   BLOCO EXPLICATIVO
========================================================= */

body.desktop-v2 .desktop-recover-info {
  margin-bottom: 22px;

  padding: 16px 17px;

  border:
    1px solid rgba(250, 204, 21, 0.12);

  border-radius: 14px;

  background:
    linear-gradient(135deg,
      rgba(250, 204, 21, 0.045),
      rgba(255, 255, 255, 0.012));
}

body.desktop-v2 .desktop-recover-info strong {
  display: block;

  margin-bottom: 6px;

  color: #ffffff;

  font-size: 13px;
  font-weight: 800;
}

body.desktop-v2 .desktop-recover-info p {
  margin: 0;

  color: #8f9b94;

  font-size: 11px;

  line-height: 1.65;
}


/* =========================================================
   LABEL
========================================================= */

body.desktop-v2 .desktop-recover-label {
  display: block;

  margin:
    0 0 8px 2px;

  color: #c9d0cc;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}


/* =========================================================
   INPUT
========================================================= */

body.desktop-v2 .desktop-recover-input-box {
  position: relative;

  width: 100%;
  height: 56px;

  display: flex;
  align-items: center;

  border:
    1px solid rgba(234, 179, 8, 0.32);

  border-radius: 14px;

  background:
    linear-gradient(180deg,
      rgba(17, 24, 21, 0.97),
      rgba(10, 15, 13, 0.99));

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.desktop-v2 .desktop-recover-input-box:focus-within {
  border-color:
    rgba(250, 204, 21, 0.72);

  background:
    rgba(14, 20, 17, 0.99);

  box-shadow:
    0 0 0 3px rgba(250, 204, 21, 0.055);
}


/* Ícone do input */

body.desktop-v2 .desktop-recover-input-icon {
  position: relative;

  width: 54px;
  height: 100%;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #dfb219;
}

body.desktop-v2 .desktop-recover-input-icon::after {
  content: "";

  position: absolute;

  right: 0;

  width: 1px;
  height: 27px;

  background:
    rgba(250, 204, 21, 0.10);
}

body.desktop-v2 .desktop-recover-input-icon svg {
  width: 21px;
  height: 21px;
}


/* Input real */

body.desktop-v2 .desktop-recover-input-box input {
  min-width: 0;
  height: 100%;

  flex: 1;

  padding: 0 15px;

  border: 0 !important;
  outline: 0 !important;

  background: transparent !important;

  color: #ffffff;

  font-family: inherit;

  font-size: 13px;

  box-shadow: none !important;
}

body.desktop-v2 .desktop-recover-input-box input::placeholder {
  color: #69746e;

  opacity: 1;
}


/* Autofill */

body.desktop-v2 .desktop-recover-input-box input:-webkit-autofill,
body.desktop-v2 .desktop-recover-input-box input:-webkit-autofill:hover,
body.desktop-v2 .desktop-recover-input-box input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;

  -webkit-box-shadow:
    0 0 0 1000px #0d1310 inset;

  caret-color: #ffffff;

  transition:
    background-color 9999s ease-in-out 0s;
}


/* =========================================================
   STATUS
========================================================= */

body.desktop-v2 .desktop-recover-status {
  margin-top: 12px;

  padding: 11px 13px;

  border-radius: 11px;

  font-size: 11px;
  font-weight: 600;

  line-height: 1.5;
}

body.desktop-v2 .desktop-recover-status.is-success {
  display: block !important;

  border:
    1px solid rgba(34, 197, 94, 0.25);

  background:
    rgba(34, 197, 94, 0.075);

  color: #5ddb82;
}

body.desktop-v2 .desktop-recover-status.is-error {
  display: block !important;

  border:
    1px solid rgba(239, 68, 68, 0.28);

  background:
    rgba(239, 68, 68, 0.075);

  color: #f87171;
}


/* =========================================================
   BOTÃO ENVIAR
========================================================= */

body.desktop-v2 .desktop-recover-submit {
  width: 100%;
  height: 52px;

  margin-top: 20px;

  border: 0;

  border-radius: 13px;

  background:
    linear-gradient(135deg,
      #fde047 0%,
      #facc15 48%,
      #e9aa08 100%);

  color: #10140d;

  font-family: inherit;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.8px;

  text-transform: uppercase;

  cursor: pointer;

  box-shadow:
    0 12px 28px rgba(234, 179, 8, 0.18);

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

body.desktop-v2 .desktop-recover-submit:hover {
  transform: translateY(-1px);

  filter: brightness(1.04);

  box-shadow:
    0 16px 34px rgba(234, 179, 8, 0.24);
}

body.desktop-v2 .desktop-recover-submit:active {
  transform: scale(0.99);
}


/* Estado desabilitado */

body.desktop-v2 .desktop-recover-submit:disabled {
  opacity: 0.55;

  cursor: not-allowed;

  transform: none;

  box-shadow: none;
}


/* =========================================================
   VOLTAR PARA LOGIN
========================================================= */

body.desktop-v2 .desktop-recover-cancel {
  width: 100%;

  margin-top: 14px;

  padding: 7px 10px;

  border: 0;

  background: transparent;

  color: #9aa49e;

  font-family: inherit;

  font-size: 11px;
  font-weight: 600;

  cursor: pointer;

  transition:
    color 0.2s ease;
}

body.desktop-v2 .desktop-recover-cancel:hover {
  color: #facc15;
}


/* =========================================================
   FOCO
========================================================= */

body.desktop-v2 .desktop-recover-close:focus-visible,
body.desktop-v2 .desktop-recover-submit:focus-visible,
body.desktop-v2 .desktop-recover-cancel:focus-visible {
  outline:
    2px solid rgba(250, 204, 21, 0.75);

  outline-offset: 2px;
}


/* =========================================================
   ANIMAÇÃO
========================================================= */

@keyframes desktopRecoverEnter {
  from {
    opacity: 0;

    transform:
      translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }
}


/* =========================================================
   ALTURAS MENORES
========================================================= */

@media (min-width: 769px) and (max-height: 700px) {

  body.desktop-v2 .desktop-recover-modal {
    padding: 16px 24px;
  }

  body.desktop-v2 .desktop-recover-header {
    min-height: 78px;

    padding:
      17px 66px 17px 22px;
  }

  body.desktop-v2 .desktop-recover-body {
    padding: 21px 24px 24px;
  }

  body.desktop-v2 .desktop-recover-info {
    margin-bottom: 17px;

    padding: 13px 15px;
  }

  body.desktop-v2 .desktop-recover-input-box {
    height: 50px;
  }

  body.desktop-v2 .desktop-recover-submit {
    height: 48px;

    margin-top: 16px;
  }

}


/* =========================================================
   MOBILE
   Mantém isolado do modal mobile existente
========================================================= */

@media (max-width: 768px) {

  body.desktop-v2 .desktop-recover-card {
    width:
      calc(100vw - 28px);
  }

}

body.desktop-recover-open {
  overflow: hidden;
}