@font-face {
  font-family: "bootstrap-icons";
  src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2?dd6703061d3262457a04072608181652")
      format("woff2"),
    url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff?dd6703061d3262457a04072608181652")
      format("woff");
  font-display: swap; /* Força o texto/ícone a ficar visível imediatamente */
}

:root {
  --bg: #020617;
  --card: #0f172a;
  --card2: #111827;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #22c55e;
  --primary2: #4ade80;
  --primary3: #4ade80;
  --accent: #38bdf8;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Tons otimizados para cumprir a regra de contraste WCAG AA */
.text-success {
  color: #22c55e !important; /* Verde brilhante e acessível */
}

.text-primary {
  color: #3b82f6 !important; /* Azul otimizado para legibilidade */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(to bottom, #020617, #081120, #020617);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container-custom {
  width: 92%;
  max-width: 1440px;
  margin: auto;
}

.topbar {
  background-color: #22c55e !important;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.78);
  border-bottom: 1px solid var(--border);
}

.navbar-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  height: 58px;
  overflow: visible;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-top: 8px;
}

.logo span {
  color: var(--primary);
}

.search-box {
  flex: 1;
  max-width: 620px;
  position: relative;
}

.search-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  height: 52px;
  border-radius: 18px;
  padding: 0 20px 0 50px;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 17px;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  padding: 80px 0 50px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(120px);
  left: -100px;
  top: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: stretch;
  color: #fff;
}

.hero-main {
  background: linear-gradient(
      135deg,
      rgba(2, 6, 23, 0.88),
      rgba(15, 23, 42, 0.6)
    ),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 70px;
  border-radius: 34px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-badge {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  width: max-content;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #dcfce7;
}

.hero h1 {
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  max-width: 760px;
  margin-bottom: 26px;
  letter-spacing: -3px;
}

.hero p {
  font-size: 19px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #04130a;
  padding: 16px 30px;
  border-radius: 18px;
  font-weight: 800;
  border: none;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-4px);
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: #fff;
  padding: 16px 28px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-card {
  background: linear-gradient(180deg, #0f172a, #111827);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.side-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 34px;
}

.side-tag {
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
}

.side-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.side-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.price {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
}

.trust-bar {
  padding: 28px 0;
  margin-top: 25px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  color: #fff;
}

.trust-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.trust-item i {
  font-size: 28px;
  color: var(--primary2);
}

.trust-item h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.section-title {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 18px;
  color: #fff;
}

.section-subtitle {
  max-width: 780px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 50px;
  font-size: 18px;
}

.products-section {
  padding: 0px 0;
}

/* CUSTOMIZAÇÃO DE ABAS PADRÃO BOOTSTRAP */
.products-section .nav-pills .nav-link {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.products-section .nav-pills .nav-link.active,
.products-section .nav-pills .nav-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary2)
  ) !important;
  color: #04130a !important;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
}

/* SEÇÃO DE ESTILOS DA TABELA DE RANKING */
.ranking-title {
  color: #fff;
}

.ranking-container {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.table-rank {
  overflow: hidden;
  border-radius: 20px;
}

.table-dark {
  --bs-table-bg: transparent;
  --bs-table-color: #e2e8f0 !important;
}

.ranking-table {
  --bs-table-bg: transparent;
  --bs-table-color: #e2e8f0 !important;
}

.ranking-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
}

.ranking-table th.rank-col,
.ranking-table td.rank-cell {
  padding: 14px 12px;
}

.rank-cell {
  color: #e2e8f0 !important;
}

.ranking-table th.country-col,
.ranking-table td.country-cell {
  padding: 14px 12px;
}

.ranking-table th.access-col,
.ranking-table td.access-cell {
  padding: 14px 16px;
}

.ranking-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  height: 48px;
  transition: all 0.25s ease;
}

.ranking-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025) !important;
}

.ranking-badge-podium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.ranking-badge-1 {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #ffd700;
}

.ranking-badge-2 {
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #cbd5e1;
}

.ranking-badge-3 {
  background: rgba(180, 83, 9, 0.12);
  border: 1px solid rgba(180, 83, 9, 0.35);
  color: #f59e0b;
}

.ranking-badge-other {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #334155 !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: #f8fafc !important;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: monospace;
  padding: 2px 8px;
}

.country-wrapper {
  display: inline-flex;
  align-items: center;
}

.country-flag {
  height: 13px;
  width: auto;
  border-radius: 2px;
  margin-right: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-block;
  vertical-align: middle;
}

.country-name {
  letter-spacing: 0.2px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

.access-count {
  /*color: #10b981;*/
  font-size: 0.9rem;
  font-family: "SF Mono", SFMono-Regular, Consolas, monospace;
  letter-spacing: -0.3px;
}

/* Classes de controle visual gerenciadas pelo Script */
.product-card.hidden-by-filter,
.product-card.hidden-by-limit {
  display: none !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: linear-gradient(180deg, #0f172a, #111827);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 24px;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.4);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.product-category {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.rating {
  font-size: 13px;
  font-weight: 700;
  color: #facc15;
}

.norating {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease;
}

.product-title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 16px;
  display: block;
  min-height: 20px;
  text-decoration: none;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 22px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: auto;
}

.product-price {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
}

.shipping {
  font-size: 12px;
  color: #94a3b8;
}

.buy-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 2px;
  gap: 3px;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
  background: linear-gradient(135deg, #4ade80, #22c55e);
}

.stats {
  padding: 90px 0;
}

.stats {
  padding: 90px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
}

.stat-box h3 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 10px;
}

.stat-box p {
  color: #cbd5e1;
  font-size: 15px;
  margin: 0;
}

.about {
  padding: 0px 0;
}

.about-box {
  background: linear-gradient(180deg, #0f172a, #111827);
  padding: 70px;
  border-radius: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 30px;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}

.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #cbd5e1;
  margin-bottom: 25px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  line-height: 1.7;
  color: #e2e8f0;
}

.about-list i {
  color: var(--primary2);
  font-size: 18px;
}

footer {
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 70px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.footer-logo img {
  height: 175px;
  width: auto;
  object-fit: contain;
  margin-left: -8px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-text {
  line-height: 1.9;
  color: #cbd5e1;
  max-width: 500px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 15px;
  text-decoration: none;
}

.footer-contact {
  font-size: 15px;
  color: #cbd5e1;
}

.footer-contact a {
  color: var(--primary3);
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.footer-contact i {
  color: var(--primary3);
  margin-right: 8px;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: none;
}

.bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1200px) {
  .hero-grid,
  .about-grid,
  .footer-grid,
  .trust-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero h1,
  .section-title,
  .about-content h2 {
    font-size: 42px;
  }

  .hero-main {
    padding: 40px;
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .footer-grid,
  .trust-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 50px;
  }

  .mobile-menu {
    display: block;
    font-size: 28px;
    color: #fff;
  }

  .nav-actions {
    display: none;
  }

  .gateway-cards {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-title,
  .about-content h2 {
    font-size: 34px;
  }

  .about-box,
  .hero-main {
    padding: 30px;
  }

  .logo img {
    height: 50px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

.premium-trophy {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #facc15, #f59e0b);
  box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  animation: trophyGlow 2.8s ease-in-out infinite;
}

.premium-trophy i {
  color: #fff;
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.premium-trophy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    transparent 45%
  );
  pointer-events: none;
}

@keyframes trophyGlow {
  0% {
    transform: translateY(0px);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35),
      inset 0 2px 4px rgba(255, 255, 255, 0.35);
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(250, 204, 21, 0.55),
      inset 0 2px 6px rgba(255, 255, 255, 0.45);
  }

  100% {
    transform: translateY(0px);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35),
      inset 0 2px 4px rgba(255, 255, 255, 0.35);
  }
}

.gateway-cards {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.card-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  /* Efeito Premium Dark: as bandeiras ficam levemente integradas ao fundo, ganhando cor real apenas no hover */
  opacity: 0.65;
  filter: grayscale(20%) brightness(90%);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.card-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(100%);
  transform: translateY(-2px);
}

.ga4-spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.ga4-spinner-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ga4-spinner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ga4-spinner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top: 4px solid #22c55e;
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.25);
}

.ga4-spinner-text {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.9;
}

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

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

/* Custom Accordion Styling para modo escuro */
.accordion-button::after {
  filter: invert(1) grayscale(1) brightness(2);
  /* Força a seta a ficar branca */
}

.accordion-button:not(.collapsed) {
  color: var(--primary2) !important;
  /* Muda a cor do título "Details" ao abrir */
}

/* Remove a barra superior do Google */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
  visibility: hidden !important;
}

/* Corrige deslocamento do body */
body {
  top: 0 !important;
  position: static !important;
}

/* Remove popup do tradutor */
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-aZ2wEe,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

/* Remove destaque amarelo */
.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

/* Oculta branding do gadget */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-simple img {
  display: none !important;
}

/* Oculta o container do widget */
#google_translate_element {
  display: none !important;
}

.flag-circle-img {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  object-fit: cover;

  flex-shrink: 0;

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

.language-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.lang-btn-mobile {
  width: 100%;

  display: flex;
  align-items: center;

  padding: 14px 16px;

  border: none;
  border-radius: 14px;

  background: #1e293b;
  color: #fff;

  text-align: left;

  min-height: 56px;
}

.lang-btn-mobile span {
  flex: 1;
  margin-left: 12px;
}

.flag-circle-img {
  width: 32px;
  height: 32px;

  border-radius: 50%;

  object-fit: cover;

  display: block;
}

.btn-back-to-products {
  position: fixed; /* 🔥 OBRIGATÓRIO: Tira o botão do fluxo da página e faz ele flutuar */
  bottom: 30px; /* Distância fixa da parte inferior da tela */
  right: 30px; /* Distância fixa do lado direito da tela */
  z-index: 9999; /* Força o botão a ficar na frente de qualquer outra imagem ou card */

  /* Configuração visual de exibição (Display) */
  display: flex;
  align-items: center;
  gap: 8px;

  /* Estado inicial: Escondido com efeito Fade suave */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;

  /* Design Premium combinando com seu estilo Dark */
  background-color: rgba(25, 135, 84, 0.95); /* Verde do seu tema */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.btn-back-to-products.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .btn-back-to-products {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 12px;
  }
}
/* Estilos para a modal de leitura e listagem do repositório */
#feedModal .modal-body-scroll::-webkit-scrollbar {
  width: 6px;
}
#feedModal .modal-body-scroll::-webkit-scrollbar-track {
  background: #1e293b;
  border-radius: 10px;
}
#feedModal .modal-body-scroll::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 10px;
}
#feedModal .modal-body-scroll::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}
#feedModal .modal-body-scroll {
  scrollbar-width: thin;
  scrollbar-color: #475569 #1e293b;

  /* Garante o funcionamento em celulares e o scroll nativo macio */
  max-height: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
