.banner-img {
  max-height: 520px; /* altura máxima desktop */
  object-fit: cover;
}

.clean-caption {
  background: none; /* remove o fundo escuro */
  text-shadow: 0px 2px 5px rgba(0,0,0,0.4); /* sombra leve para destacar no fundo */
  padding: 10px;
}

.clean-caption h2 {
  font-size: 2rem;
  font-weight: 600;
}

.clean-caption p {
  font-size: 1rem;
  margin-top: 5px;
}

/* Mobile */
@media (max-width: 768px) {
  .banner-img {
    max-height: 280px;
  }
  .clean-caption h2 {
    font-size: 1.2rem;
  }
  .clean-caption p {
    font-size: 0.9rem;
  }
  .clean-caption {
    padding: 5px;
  }
}
<style>
/* -------------------------------
   Estilo do menu de categorias
--------------------------------*/

.titulo-categorias {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.categoria-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categoria-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.categoria-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 15px;
}

.categoria-card .card-img {
  width: 100%;
  height: 120px; /* tamanho padrão no desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.categoria-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.categoria-card:hover img {
  transform: scale(1.1);
}

.categoria-card h3 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* -------------------------------
   Responsividade
--------------------------------*/

/* Tablet (até 992px) → 3 colunas, imagens menores */
@media (max-width: 992px) {
  .categorias-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categoria-card .card-img {
    height: 100px;
  }
}

/* Mobile (até 600px) → 2 colunas, imagens ainda menores */
@media (max-width: 600px) {
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categoria-card .card-img {
    height: 80px;
  }

  .categoria-card h3 {
    font-size: 13px;
  }
}




       .app-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 30vh;
            background-color: #f3f4f6;
        }
        .app-card {
            display: flex;
            align-items: center;
            background: white;
            padding: 12px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid #ddd;
            max-width: 320px;
        }
        .app-logo {
            width: 55px;
            height: 55px;
        }
        .app-card-content {
            margin-left: 12px;
        }
        .app-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        .app-description {
            font-size: 13px;
            color: #666;
            margin: 5px 0;
        }
        .app-button {
            display: inline-block;
            background: #1f9d55;
            color: white;
            padding: 6px 12px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 13px;
            font-weight: bold;
        }
        .app-button:hover {
            background: #157347;
        }
#ra-verified-seal {
            position: fixed;
            bottom: 0;
            right: 0;
            margin: 10px;
            z-index: 9999;
            display: none; /* Inicialmente escondido */
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 300px; /* Ajuste conforme necessário */
            padding: 10px;
        }
        #ra-verified-seal .banner-content {
            text-align: center;
        }
        #ra-verified-seal .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 18px;
            color: #333;
        }
        #ra-verified-seal .close-btn:hover {
            color: #000;
        }

.fixed-size-image {
    width: 100%; /* ou qualquer outra largura que você deseje */
    height: auto; /* A altura será ajustada automaticamente */
    /* Adicione outras propriedades CSS conforme necessário */
}
.outer-container {
    max-width: 1140px; /* mesma largura máxima da classe .container do Bootstrap */
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}
.title {
    position: absolute; /* Posicionamento absoluto */
    top: 10px; /* Distância do topo */
    left: 10px; /* Distância da esquerda */
}
.outer-container {
    background-color: white;    
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.categorias-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.categoria {
    text-align: center;
    margin: 10px;
    flex-basis: calc(100% / 6 - 20px); /* Distribui em 6 colunas */
}

.categoria a {
    text-decoration: none;
    color: inherit;
}

.categoria img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.categoria p {
    margin-top: 5px;
}

@media only screen and (max-width: 768px) {
    .categoria img {
        width: 40px; /* Reduz o tamanho das imagens para 60px em dispositivos móveis */
        height: 40px;
    }

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}
.img-payment {
    max-width: 200px; /* Ajuste o valor conforme necessário */
    height: auto;
  }
  .icoinstragam2 {
    width: 60px;
    height: 20px;
    margin: 5px;
  }
 
.footer {
    
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 12px
  }

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

  .footer li {
    margin-bottom: 10px;
  }
