/* ===== RESET BÁSICO ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #ebfdf2;
  color: #111;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===== GRID SIMPLES ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}

.container-fluid {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.row > [class^="col-"],
.row > [class*=" col-"] {
  padding-right: 12px;
  padding-left: 12px;
}

/* col base */
.col-sm-12,
.col-md-12,
.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* col md */
@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}

/* col lg */
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}

/* utility widths usadas na home */
.w-30 { width: 30%; }
.w-65 { width: 65%; margin-left: 5%; }
.w-100 { width: 100% !important; }

/* ===== SPACING ===== */
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.p-3  { padding: 1rem !important; }

.text-center { text-align: center !important; }

/* ===== NAVBAR DESKTOP/MOBILE ===== */
.bg-nav {
  background-color: #232f3c;
  padding: 12px 0;
}

.bgInt {
  padding: 0 6px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar-expand-lg .navbar-toggler {
  display: none;
}

.navbar-brand.logo {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  text-decoration: none;
}

.navbar-nav { list-style: none; margin: 0; padding: 0; }

.form-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.input-group {
  display: flex;
  align-items: stretch;
}

.input-group .form-control {
  flex: 1 1 auto;
  border: 1px solid #ced4da;
  padding: .375rem .75rem;
  border-radius: .25rem 0 0 .25rem;
}

.input-group-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .375rem .75rem;
  border: 1px solid #ced4da;
  border-left: 0;
  border-radius: 0 .25rem .25rem 0;
}

/* botões da nav */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.btn-nav {
  margin-left: 10px;
  height: 34px;
}

.btn-default,
.btn-default2,
.btnMini {
  background-color: #0ec654;
  color: #232f3c;
}

.btnMini {
  width: 60px;
  font-size: 12px;
}

.text-light { color: #fff !important; }

/* botões nav no mobile */
.nav-toggle,
.search-button-nav {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
}

.nav-toggle i,
.search-button-nav i {
  font-size: .8rem;
  color: #000;
}

/* offcanvas mobile */
.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px !important;
  height: 100%;
  background: #232f3c;
  transform: translateX(-100%);
  transition: transform .4s linear;
  z-index: 1050;
}

.offcanvas.show {
  transform: translateX(0);
}

.offcanvas-body .row a,
.offcanvas-body .row button {
  color: #fff;
}

/* alternância desktop/mobile */
#desktop { display: none; }
#mobile  { display: none; }

/* ===== HOME HEADER / TÍTULO ===== */
.homeh1 {
  font-size: 24px;
  text-align: center;
  color: #016f65;
}

/* ===== CARDS DE GRUPOS ===== */
.cardGroup {
  float: left;
  padding: 0 8px;
  margin-bottom: 16px;
  text-align: center;
}

.cardGroupInt {
  background-color: #fff;
  padding: 18px 10px;
  box-shadow: 2px 2px 7px rgba(0,0,0,0.2),
              -2px -2px 7px rgba(0,0,0,0.2),
              2px -2px 7px rgba(0,0,0,0.2),
              -2px 2px 7px rgba(0,0,0,0.2) !important;
  height: 100%;
  overflow: hidden;
}

.cardGroupInt .picture {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.imgGroup {
  width: 130px;
  height: 130px;
  margin: 0 auto 10px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.titleGroup {
  font-size: 14px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 12px 0 8px;
  padding: 0 5px;
  color: #333;
  font-weight: 600;
}

.categoGroup {
  display: block;
  color: #868686;
  margin-bottom: 15px;
}

.categoGroup:hover {
  color: #868686;
}

.blackaec {
  color: #232f3c;
  text-decoration: none;
}

/* botões de entrar no grupo */
.btnGroup,
.btnGroup-vip {
  padding: 5px 6px;
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.btnGroup {
  background-color: #232f3c;
  color: #fff !important;
}

.btnGroup-vip {
  background-color: #232f3c;
  color: #fff !important;
}

/* Ribbons Premium / VIP */
.ribbon,
.ribbon-vip {
  position: relative;
  top: -9px;
  right: -16px;
}

.ribbon .banner,
.ribbon-vip .banner {
  transform: rotate(45deg);
  font-smoothing: antialiased;
  display: block;
  float: right;
  position: relative;
  right: 0;
  top: 22px;
  width: 100px;
}

.ribbon .text,
.ribbon-vip .text {
  position: relative;
  z-index: 2;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
  min-height: 18px;
  line-height: 26px;
  text-shadow: 1px 1px 1px rgba(0,0,0,.2);
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
}

/* cores */
.ribbon .banner:before,
.ribbon .banner:after,
.ribbon .text:before,
.ribbon .text:after {
  background-color: #0ec654;
}

.ribbon-vip .banner:before,
.ribbon-vip .banner:after,
.ribbon-vip .text:before,
.ribbon-vip .text:after {
  background-color: #dc3545;
}

/* simplificado: sem triângulos laterais visíveis em mobile */
.ribbon .banner:before,
.ribbon .banner:after,
.ribbon-vip .banner:before,
.ribbon-vip .banner:after {
  content: "";
  display: none;
}

/* ===== BLOCO AVALIAÇÕES ===== */
.boxnovo {
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2),
              -2px -2px 5px rgba(0,0,0,0.2),
              2px -2px 5px rgba(0,0,0,0.2),
              -2px 2px 5px rgba(0,0,0,0.2) !important;
}

.boxInt {
  background-color: #fff;
  padding: 1rem;
}

.textCategory {
  border-bottom: 2px #efefef solid;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 15px;
  padding: 0 0 4px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}

.textCategory:after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #009688;
}

.img-user {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img-usernew {
  color: #232f3c;
}

.text-darknew { color: #232f3c; }

.descriptionCategory {
  color: #666 !important;
  font-size: 12px;
  line-height: 18px;
  overflow: hidden;
  height: 54px;
  margin: 0;
  padding: 0;
  text-overflow: ellipsis;
}

.descriptionCategorynew { color: #666; }

/* ===== FOOTER ===== */
.footer {
  background-color: #232f3c;
  color: #fff;
}

.footer .container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer p {
  margin: 0 0 10px;
}

.aneTema5f541e {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.aneTema5f541e li {
  display: inline-block;
  margin: 0 8px 3px;
}

.aneTema5f541e a {
  color: #0ec654;
  text-decoration: none;
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background-color: transparent;
  color: #2a465b;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

/* ===== RESPONSIVO HOME ===== */
@media screen and (max-width: 778px) {
  .cardGroup {
    width: 100%;
    padding: 0 10px;
  }
}

/* esconder elementos desktop em mobile específicos */
@media screen and (min-width: 768px) {
  .sumirdesktop { display: none !important; }
}