* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #f5f5f5;
      color: #222;
      max-width: 600px;
      margin: 0 auto;
      padding-top: 52px;
    }

    /* === HEADER === */
    .header {
       position: fixed !important;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      background: #000;
      border-bottom: 2px solid #d7ad3a;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.4rem 1rem;
      z-index: 1000;
    }

    /* === BANNER === */
    .banner {
      width: 100%;
      overflow: hidden;
    }

    .banner img {
      width: 100%;
      height: auto;
    }

    /* === CONTEÚDO === */
    .content {
      padding: 12px;
    }

    .frase {
      text-align: center;
      font-size: 1.4rem;
      font-weight: 700;
      color: #e11919;
      margin-bottom: 20px;
    }

    /* === CARDS DE SITES === */
    .site-card {
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px;
      border-radius: 10px;
      margin-bottom: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .site-card:active {
      transform: scale(0.98);
      box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    }

    .site-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .site-info img {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      object-fit: cover;
    }

    .site-text strong {
      display: block;
      font-size: 1rem;
      color: #111;
    }

    .site-text span {
      font-size: 0.85rem;
      color: #666;
    }

    .btn-jogar {
      background: linear-gradient(135deg, #25c94b, #19a63c);
      color: #fff;
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 0.9rem;
      text-decoration: none;
      font-weight: 600;
      white-space: nowrap;
      transition: background 0.3s ease;
    }

    .btn-jogar:hover {
      background: linear-gradient(135deg, #1fae43, #159737);
    }

    /* === TABLETS === */
    @media (min-width: 600px) {
      body {
        padding-top: 90px;
      }
      .frase {
        font-size: 1.6rem;
      }
      .site-card {
        padding: 16px;
      }
      .btn-jogar {
        font-size: 1rem;
        padding: 12px 20px;
      }
    }
    .rankred {
      color:#e11919;
      font-weight: 600;
    }

   .rankgreen {
      color:#0f792f;
      font-weight: 600;
    }

     .rankcinza {
      color:#7c7c7c;
      font-weight: 600;
    }

    .rankblue {
      color:#0f12cc;
      font-weight: 600;
    }

    /* === DESKTOP (opcional) === */
    @media (min-width: 900px) {
      body {
        max-width: 800px;
      }
    }
    
    .tab {
      max-width: 900px;
      margin: 0 auto;
    }

    .tab_con h1 {
      text-align: center;
      font-size: 20px;
      margin: 24px;
    }

    .info_list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .info {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .info_title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      color: #111;
      background: linear-gradient(to right, #fff, #fef3c7);
    }

    .info_title:hover {
      background: linear-gradient(to right, #fff, #fde68a);
    }

    .info_title span:last-child {
      transition: transform 0.3s ease;
    }

    .info.open .info_title span:last-child {
      transform: rotate(180deg);
    }

    .info_detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 16px;
      border-top: 1px solid #eee;
    }

    .info.open .info_detail {
      max-height: 800px; /* altura suficiente para conteúdo */
      padding: 16px;
    }

    .info_detail img {
      width: 100%;
      max-height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .info_detail p {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 10px;
    }

    .info_detail span {
      color: #d7ad3a;
      font-weight: 600;
    }

    .service_part {
      max-width: 900px;
      margin: 35px auto;
      text-align: center;
      font-family: 'Inter', sans-serif;
      color: #222;
      padding: 0 20px;
}

.service_part h1 {
  font-size: 20px;
  margin: 12px;
}

.service_part p {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* === GRID 2x2 === */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-items: center;
}

.grid-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 24px 16px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.grid-item:hover::before {
  opacity: 1;
}

.grid-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

.digt {
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.dest {
  font-size: 0.95rem;
  color: #555;
}

.footer {
  background: #111;
  color: #ddd;
  text-align: center;
  padding: 50px 20px 30px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,215,0,0.08), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.footer .p1 {
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #ccc;
}

.footer .p1 span {
  color: #f5c518;
  font-weight: 600;
}

.footer_img img {
  width: 160px;
  margin: 20px 0;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer_img img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.footer .p2 {
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  margin-top: 25px;
}
img.mais18 {
    width: 25px;
}

.kf {
  position: fixed !important;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 2000;
}

.kf img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}


.kf a {
  text-align: center;
  text-decoration: none;
}

.kf img:hover {
  transform: scale(1.1);
}

/* animação de flutuação */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
