* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #fff;
  color: #202124;
}

/* ===== TOPO FIXO ===== */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 66px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 1000;
  
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

.logo-img {
  height: 42px;
  width: auto;
}

.badge-img {
  height: 32px;
  width: auto;
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.container {
  width: 100%;
  max-width: 100%;
}

.content {
  padding: 72px 16px 80px;
  background: #fff;
  min-height: 100vh;
}

/* ===== INFORMAÇÕES DO APP ===== */
.app-info {
  padding: 20px 0;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.app-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-title {
  font-size: 20px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 4px;
}

.app-developer {
  font-size: 14px;
  color: #1db954;
  margin-bottom: 4px;
}

.app-verified {
  font-size: 12px;
  color: #5f6368;
}

/* ===== ESTATÍSTICAS ===== */
.stats {
  display: flex;
  align-items: center;
  margin: 16px 0;
  font-size: 14px;
}

.stat-item {
  flex: 1;                 /* divide em 3 partes iguais */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #5f6368;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: #dadce0;
}

.stat-item:first-child {
  align-items: flex-start;
  text-align: left;
}

.stat-item:last-child {
  align-items: flex-end;
  text-align: right;
}

/* ===== BOTÃO DE INSTALAÇÃO ===== */
.install-btn {
  width: 100%;
  background: linear-gradient(135deg, #1db954, #18a64b);
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
  transition: all 0.25s ease;
  text-align: center;
  margin: 16px 0;
}

.install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 185, 84, 0.4);
}

.install-btn:active {
  transform: scale(0.98);
}

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

.btn-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%)
          invert(63%) sepia(98%)
          saturate(1300%) hue-rotate(360deg)
          brightness(101%) contrast(105%);
}

.btn-title {
  color: #ffc94d;
  font-size: 16px;
  font-weight: 600;
}

.btn-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

/* ===== BOTÕES DE AÇÃO ===== */
.action-buttons {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  justify-content: center;
}


.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1db954;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  transition: opacity 0.2s ease;
}

.action-btn:hover {
  opacity: 0.8;
}

.action-icon {
  width: 20px;
  height: 20px;
  color: #1db954;
}

/* ===== SCREENSHOTS COM SCROLL HORIZONTAL ===== */
.screenshots-container {
  margin: 24px 0;
  overflow: hidden;
}

.screenshots {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

.screenshots::-webkit-scrollbar {
  height: 6px;
}

.screenshots::-webkit-scrollbar-track {
  background: #f1f3f4;
  border-radius: 3px;
}

.screenshots::-webkit-scrollbar-thumb {
  background: #dadce0;
  border-radius: 3px;
}

.screenshots img {
  width: 150px;
  height: 250px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* ===== SEÇÕES GERAIS ===== */
.section {
  margin-top: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dadce0;
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #202124;
}

.chevron {
  color: #5f6368;
  font-size: 20px;
}

/* ===== SOBRE ESTE APLICATIVO ===== */
.about-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
  color: #202124;
  margin-bottom: 12px;
}

.about-list li {
  margin-bottom: 8px;
}

.update-date {
  margin-top: 12px;
  font-size: 13px;
  color: #5f6368;
  line-height: 1.5;
}

.tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tags span {
  padding: 6px 12px;
  border-radius: 16px;
  background: #f1f3f4;
  font-size: 12px;
  color: #202124;
}

/* ===== SEGURANÇA DOS DADOS ===== */
.security-text {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 12px;
}

.card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
  color: #202124;
}

.security-item:last-child {
  margin-bottom: 0;
}

.security-item img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.security-item small {
  color: #5f6368;
  font-size: 12px;
}

.details-link {
  color: #1db954;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 8px;
}

.details-link:hover {
  text-decoration: underline;
}

/* ===== CLASSIFICAÇÕES E RESENHAS ===== */
.verified-text {
  font-size: 13px;
  color: #5f6368;
  margin-bottom: 12px;
}




.device-filter {
  display: flex;
  gap: 12px;
}

.device-filter span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #5f6368;
  cursor: pointer;
}

.device-filter span.active {
  background: #e8f0fe;
  color: #1db954;
}

.icon {
  width: 18px;
  height: 18px;
  fill: currentColor; /* isso é o segredo */
}




.rating-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.rating-score {
  text-align: center;
  flex-shrink: 0;
}

.rating-score h1 {
  font-size: 48px;
  font-weight: 300;
  color: #202124;
  line-height: 1;
}

.stars {
  color: #1db954;
  font-size: 16px;
  margin: 8px 0;
}

.rating-score small {
  font-size: 12px;
  color: #5f6368;
}

.rating-bars {
  flex: 1;
}

.rating-bars div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
}

.rating-bars span {
  width: 20px;
  text-align: center;
  color: #5f6368;
}

.bar {
  height: 6px;
  background: #dadce0;
  border-radius: 3px;
  flex: 1;
}

.bar.fill {
  width: 100%;
  background: #1db954;
}

.bar.fill-4 {
  width: 70%;
  background: #1db954;
}

/* ===== AVALIAÇÕES ===== */
.reviews {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

.review-card {
  padding: 16px 0;
  
}

.review-card:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-info strong {
  display: block;
  font-size: 14px;
  color: #202124;
  margin-bottom: 2px;
}

.review-info .stars {
  font-size: 14px;
  margin-bottom: 2px;
}

.review-info small {
  font-size: 12px;
  color: #5f6368;
}

.menu {
  font-size: 20px;
  color: #5f6368;
  cursor: pointer;
  flex-shrink: 0;
}

.review-text {
  font-size: 14px;
  margin-bottom: 12px;
  color: #202124;
  line-height: 1.5;
}

.useful-text {
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 8px;
}

.useful-buttons {
  display: flex;
  gap: 8px;
}

.useful-buttons button {
  background: #f1f3f4;
  border: none;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 12px;
  color: #5f6368;
  cursor: pointer;
  transition: all 0.2s ease;
}

.useful-buttons button:hover {
  background: #e8eaed;
}

/* ===== VER TODAS AS AVALIAÇÕES ===== */
.see-all {
  display: block;
  color: #1db954;
  font-weight: 600;
  margin: 20px 0;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.see-all:hover {
  text-decoration: underline;
}

/* ===== JOGOS SEMELHANTES ===== */
.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #202124;
}

.similar-games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.game-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.game-card:hover {
  background: #f8f9fa;
}

.game-card img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

.game-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-card strong {
  font-size: 14px;
  color: #202124;
  font-weight: 600;
}

.game-card small {
  font-size: 12px;
  color: #5f6368;
}

.game-card span {
  font-size: 13px;
  color: #202124;
  font-weight: 500;
}

/* ===== SINALIZAR COMO IMPRÓPRIO ===== */
.flag-section {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #130403;
  margin: 24px 0;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.flag-section:hover {
  opacity: 0.8;
}

.flag-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== LINKS DO GOOGLE PLAY ===== */
.store-links {
  margin: 32px 0;
  font-size: 13px;
  color: #5f6368;
}

.links-column {
  margin-bottom: 24px;
}

.links-title {
  font-weight: 600;
  color: #202124;
  margin-bottom: 8px;
  font-size: 13px;
}

.links-column a {
  display: block;
  color: #5f6368;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 13px;
  transition: color 0.2s ease;
}

.links-column a:hover {
  color: #1db954;
}

/* ===== SELETOR DE PAÍS ===== */
.country-selector {
  padding: 16px 0;
  
  margin-top: 24px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #202124;
  transition: opacity 0.2s ease;
}

.country-item:hover {
  opacity: 0.7;
}

.country-flag {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

/* ===== MENU FIXO EMBAIXO ===== */
.bottom-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 64px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 12px;
  border-top: 1px solid #dadce0;
  z-index: 999;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  color: #5f6368;
  transition: color 0.2s ease;
  flex: 1;
  height: 100%;
}

.menu-item:hover {
  color: #1db954;
}

.menu-item img,
.menu-item svg {
  width: 24px;
  height: 24px;
  color: inherit;
}

.menu-item.active {
  color: #1db954;
  font-weight: 600;
}

.menu-item.active img {
  filter: brightness(0) saturate(100%)
          invert(38%) sepia(77%)
          saturate(492%) hue-rotate(110deg);
}

.menu-item.active svg {
  color: #1db954;
}







/* ===== FRAME FIXO 344 x 882 ===== */
.app-frame {
  width: 450px;
  max-width: 100%;
  height: 882px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

/* Remove scroll duplicado */
body {
  display: flex;
  justify-content: center;
  background: #eaeaea;
  overflow: hidden;
}

/* Ajuste topo e menu para respeitar o frame */
.top-bar,
.bottom-menu {
  width: 450px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== MOBILE ===== */
@media (max-width: 400px) {
  body {
    overflow: auto;
  }

  .app-frame {
    width: 100%;
    height: 100vh;
    box-shadow: none;
  }

  .top-bar,
  .bottom-menu {
    width: 100%;
    left: 0;
    transform: none;
  }
}



/* ===== EFEITO DE REFLEXO NO BOTÃO ===== */
.install-btn {
  position: relative;
  overflow: hidden;
}

/* Faixa de luz */
.install-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(25deg);
  animation: shine 2.8s infinite;
}

/* Animação */
@keyframes shine {
  0% {
    left: -75%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}












/* ===== MODAL RAPID INSTALAR ===== */
.install-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.modal-box {
  background: #fff;
  width: 320px;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  font-size: 14px;
  margin-bottom: 10px;
}

.modal-status {
  color: #1db954;
  font-weight: 600;
  margin-bottom: 18px;
}

.modal-status .check {
  background: #1db954;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  margin-right: 6px;
}

/* PROGRESSO */
.progress-box {
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg,#ffd54f,#ff9800);
  transition: width .25s ease;
}

.progress-text {
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

/* BOTÃO FINAL */
.install-now {
  display: none;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 14px;
  background: #1db954;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* ===== CARREGAMENTO CIRCULAR ===== */
.circle-progress {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 20px auto;
}

.circle-progress svg {
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 10;
}

.circle-fill {
  fill: none;
  stroke: #ff9800;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset .3s ease;
}

/* Texto % no centro */
.circle-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

/* Efeito girando */
@keyframes rotate {
  from { transform: rotate(-90deg); }
  to   { transform: rotate(270deg); }
}

.circle-progress svg {
  animation: rotate 1.4s linear infinite;
}






    


.stat-age {
  width: 28px;
  height: 28px;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1 auto;
  
}
