/* Base UI (Bootstrap-free): tokens, layout, utilities */
:root{
  --bg: #ebfdf2;
  --fg: #111;
  --muted: #666;
  --brand: #0ec654;
  --brand-2: #016f65;
  --nav: #232f3c;
  --nav-2: #161f28;
  --card: #fff;
  --radius: 8px;
  --shadow: 2px 2px 7px rgba(0,0,0,.2),-2px -2px 7px rgba(0,0,0,.2),2px -2px 7px rgba(0,0,0,.2),-2px 2px 7px rgba(0,0,0,.2);
  --focus: 0 0 0 3px rgba(14,198,84,.25);

  /* compatibility with existing CSS that used Bootstrap vars */
  --bs-gutter-x: 1.5rem;
}

*,*::before,*::after{box-sizing:border-box}
html{color-scheme:light}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size:14px;
  line-height:22px;
}
body[dark]{background:#181818;color:#fff}
body[dark] h1,
body[dark] h2,
body[dark] h3,
body[dark] h4,
body[dark] h5,
body[dark] h6,
body[dark] p,
body[dark] li,
body[dark] span:not(.badge){color:#fff}
img{max-width:100%;height:auto}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:none}

/* Dark mode toggle uses body[dark] attribute */
body[dark]{background:#181818;color:#fff}
body[dark] a{color:var(--brand)}

/* Layout primitives (subset of bootstrap-like API) */
.container{
  width:100%;
  margin-left:auto;
  margin-right:auto;
  padding-left:12px;
  padding-right:12px;
}
@media (min-width:576px){.container{max-width:540px}}
@media (min-width:768px){.container{max-width:720px}}
@media (min-width:992px){.container{max-width:960px}}
@media (min-width:1200px){.container{max-width:1140px}}

.container-fluid{
  width:100%;
  padding-left:12px;
  padding-right:12px;
}

.row{
  display:flex;
  flex-wrap:wrap;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}
.row > *{
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* Minimal grid columns used in templates */
.col-12{flex:0 0 auto;width:100%}
.col-4{flex:0 0 auto;width:33.333333%}
.col-6{flex:0 0 auto;width:50%}
.col-8{flex:0 0 auto;width:66.666667%}

@media (min-width:576px){
  .col-sm-4{flex:0 0 auto;width:33.333333%}
  .col-sm-12{flex:0 0 auto;width:100%}
}
@media (min-width:768px){
  .col-md-3{flex:0 0 auto;width:25%}
  .col-md-6{flex:0 0 auto;width:50%}
  .col-md-10{flex:0 0 auto;width:83.333333%}
  .col-md-12{flex:0 0 auto;width:100%}
}
@media (min-width:992px){
  .col-lg-3{flex:0 0 auto;width:25%}
  .col-lg-9{flex:0 0 auto;width:75%}
}

/* Spacing utilities (only what appears in templates) */
.p-2{padding:.5rem!important}
.p-3{padding:1rem!important}
.py-3{padding-top:1rem!important;padding-bottom:1rem!important}
.mt-1{margin-top:.25rem!important}
.mt-2{margin-top:.5rem!important}
.mt-3{margin-top:1rem!important}
.mt-4{margin-top:1.5rem!important}
.mt-5{margin-top:3rem!important}
.mb-2{margin-bottom:.5rem!important}
.mb-3{margin-bottom:1rem!important}
.mb-4{margin-bottom:1.5rem!important}
.mb-5{margin-bottom:3rem!important}
.me-1{margin-right:.25rem!important}
.me-2{margin-right:.5rem!important}
.w-100{width:100%!important}
.text-center{text-align:center!important}
.d-flex{display:flex!important}
.justify-content-between{justify-content:space-between!important}
.justify-content-center{justify-content:center!important}
.justify-content-end{justify-content:flex-end!important}
.align-items-center{align-items:center!important}
.gap-4{gap:1.5rem!important}
.rounded{border-radius: var(--radius)!important}
.bg-white{background:#fff!important}
.text-light{color:#fff!important}
.text-dark{color:#111!important}
.text-warning{color:#ffb84d!important}
.border{border:1px solid #dee2e6!important}
body[dark] .border{border-color:#3c3c3c!important}


/* Extra utility classes migrated from old Bootstrap usage */
.bg-light{background-color:#f8f9fa!important}
.border-1{border-width:1px!important}
.border-success{border-color:#198754!important}
.rounded-3{border-radius:1rem!important}
.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}
.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}
.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}
.list-group-horizontal{flex-direction:row}
.list-group-item{position:relative;display:block;padding:.5rem .75rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}
.list-group-item+.list-group-item{border-top-width:0}
.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}
.list-group-item:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}
.list-group-item.bg-light{background-color:#f8f9fa!important}
.list-group-item.bg-success{background-color:#198754!important;color:#fff}
.list-group-item.rounded-circle{border-radius:50%!important}


/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
  padding:.5rem .75rem;
  border:1px solid transparent;
  border-radius:6px;
  cursor:pointer;
  font:inherit;
  line-height:1.1;
  user-select:none;
  text-decoration:none;
  background:transparent;
}
.btn:focus{outline:none;box-shadow:var(--focus)}
.btn.disabled,[disabled].btn{opacity:.7;cursor:not-allowed;pointer-events:none}

.btn-primary{color:#fff;background:var(--nav);border-color:var(--nav-2)}
.btn-primary:hover{background:var(--nav-2);border-color:var(--nav)}
.btn-secondary{color:#fff;background:#6c757d;border-color:#6c757d}
.btn-danger{color:#fff;background:#dc3545;border-color:#dc3545}
.btn-success{color:#fff;background:#198754;border-color:#198754}

/* Forms */
.form-control{
  width:100%;
  display:block;
  padding:.5rem .65rem;
  border:1px solid #ced4da;
  border-radius:6px;
  background:#fff;
  color:#111;
}
body[dark] .form-control{background:#1f1f1f;border-color:#3c3c3c;color:#fff}
.form-control:focus{outline:none;box-shadow:var(--focus);border-color:rgba(14,198,84,.5)}

.input-group{display:flex;align-items:stretch;width:100%}
.input-group > .form-control{border-top-right-radius:0;border-bottom-right-radius:0}
.input-group-text{
  display:inline-flex;
  align-items:center;
  padding:.5rem .65rem;
  border:1px solid #ced4da;
  border-left:0;
  border-top-right-radius:6px;
  border-bottom-right-radius:6px;
  background:var(--brand);
  color:var(--nav);
  cursor:pointer;
}

/* Navbar/offcanvas (used by layouts/_nav.blade.php) */
.navbar{display:flex;align-items:center;min-height:56px}
.navbar-brand{display:inline-flex;align-items:center;gap:.5rem}
.navbar-toggler{display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(0,0,0,.1);background:#fff;border-radius:6px;height:35px;width:35px;cursor:pointer}
.navbar-collapse{display:none}
.navbar-collapse.is-open{display:block}
.navbar-nav{list-style:none;margin:0;padding:0}

.navbar-desktop-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
}
.form-nav{display:flex;align-items:center;gap:.5rem}

.bg-nav{background-color:var(--nav);padding:12px 0}
.bgInt{padding:0 6px;margin:0 auto}

.nav-toggle,
.search-button-nav{
  height:35px;
  width:35px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.nav-toggle i,
.search-button-nav i{
  font-size:.8rem;
}

#form-search-mobile{position:absolute;width:100%;display:none}
#mobile{display:none}
#desktop{display:none}
.mobile-dark{display:none}
.desktop-dark{display:none}
.text-navbrand-nav{font-size:1.4rem;margin:0}
.offcanvas-body .row a,
.offcanvas-body .row button{color:#fff}
.mdrcor{background-color:#FFB84D}

.offcanvas{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:230px;
  background:var(--nav);
  transform:translateX(-105%);
  transition:transform .25s ease;
  z-index:1000;
  visibility:hidden;
}
.offcanvas.is-open{transform:translateX(0);visibility:visible}
.offcanvas-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:999;
}
.offcanvas-header{padding:12px}
.offcanvas-body{padding:12px}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:1100;
}
.modal.is-open{display:flex}
.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}
.modal-dialog{position:relative;max-width:520px;width:100%}
.modal-content{
  position:relative;
  background:#fff;
  border-radius:10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow:hidden;
}
body[dark] .modal-content{background:#1f1f1f;color:#fff}
.modal-header,.modal-footer{padding:12px 14px;display:flex;align-items:center;justify-content:space-between;gap:10px}
.modal-body{padding:12px 14px}
.btn-close{
  background:transparent;
  border:0;
  width:32px;
  height:32px;
  border-radius:8px;
  cursor:pointer;
}
.btn-close::before{content:"×";font-size:24px;line-height:1;display:block}

/* Tabs/pills */
.tab-pane{display:none}
.tab-pane.active{display:block}
.fade{transition:opacity .15s linear;opacity:0}
.fade.show{opacity:1}

/* === Legacy whatsapp.css styles brought into base for full visual parity === */
body{background-color:#ebfdf2;color:#111;font-size:14px;line-height:22px}
.fa-search{color:#232f3c}
a,a:hover,a:focus,a:active{text-decoration:none;color:#0ec654}
.ads-cliente{padding-right:1px!important;padding-left:1px!important}
#motivos{margin-bottom:0!important}
.text-darknew{color:#232f3c}
.img-usernew{color:#232f3c}
.descriptionCategorynew{color:#666}
.categoryTitlenew{color:#232f3c}
body[dark] .text-darknew{color:#0ec654!important}
body[dark] .btn-primary{background-color:#198754!important}
body[dark] .btnGroup{background-color:#0ec654!important}
body[dark] .btnGroup-vip{background-color:#dc3545!important}
body[dark] .img-usernew{color:#0ec654!important}
body[dark] .modal-content #sim{border:none!important;background-color:#0d6efd!important;border-color:#0d6efd!important}
body[dark] .blocoBotoesGroup .btn-primary{border:none!important;background-color:#0d6efd!important;border-color:#0d6efd!important}
body[dark] .bloco25{background-color:#1f1f1f!important;color:#fff!important}
.border{margin-right:-1px;margin-bottom:-1px}
body[dark] .tabelanicks{color:#fff!important}
body[dark] .pagamentoDiv{border:2px #3c3c3c solid}
body[dark] .clbk{color:#f2f2f2!important}
body[dark] .boxEdit{background-color:#1f1f1f!important;border:1px solid #3c3c3c!important}
body[dark] .border{border:1px solid #3c3c3c!important;margin-right:-1px;margin-bottom:-1px}
.imgblackwhite{background-image:url("/images/body-white.png")}
body[dark] .imgblackwhite{background-image:url("/images/body-black1.png");background-color:#0d1418!important}
body[dark] .hrbk{color:#fff!important}
body[dark]{background-color:#181818!important;background-image:none;background-attachment:fixed;color:#111;font-size:14px;line-height:22px}
body[dark] .bg-nav{background-color:#000}
body[dark] .tktdk{background-color:#056162!important}
body[dark] .rounded-circle{border-color:#f2f2f2!important}
body[dark] .tktdksp{background-color:#262d31!important}
body[dark] .btn-nav{background-color:#1f1f1f!important}
body[dark] .btn-nav:hover{background-color:#fff!important}
body[dark] .bg-default{background-color:#181818!important}
body[dark] h1{color:#fff!important;background-color:transparent!important}
body[dark] h2{color:#fff!important;background-color:transparent!important}
body[dark] .swal2-title{color:#595959!important;background-color:transparent!important}
body[dark] .swal2-success-line-tip{background-color:#a5dc86!important}
body[dark] .swal2-success-line-long{background-color:#a5dc86!important}
body[dark] .swal2-x-mark-line-left{background-color:#f27474!important}
body[dark] .swal2-x-mark-line-right{background-color:#f27474!important}
body[dark] .modal-body #motivos li{color:#000!important}
body[dark] .blocoBotoesGroup a span{color:#fff!important}
body[dark] h3{color:#fff!important;background-color:transparent!important}
body[dark] h4{color:#fff!important;background-color:transparent!important}
body[dark] h5{color:#fff!important;background-color:transparent!important}
body[dark] h6{color:#fff!important;background-color:transparent!important}
body[dark] span:not(.badge){color:#fff;background-color:transparent!important}
body[dark] p{color:#fff!important;background-color:transparent!important}
body[dark] ul{color:#fff!important;background-color:transparent!important}
body[dark] .modal-title{color:#000!important}
body[dark] li{color:#fff!important;background-color:transparent!important}
body[dark] .boxInt{background-color:#1f1f1f!important}
body[dark] .cardGroupInt{background-color:#1f1f1f!important}
body[dark] footer{background-color:#000!important}
body[dark] .boxContact{background-color:#1f1f1f!important}
body[dark] .box{background-color:#000!important}
body[dark] .boxConta{background-color:#1f1f1f!important}
body[dark] .blackeye{color:#f2f2f2!important}
body[dark] .alert-warning p{color:#664d03!important}
body[dark] .titlevendas{color:#f2f2f2!important}
body[dark] .boxConta .plano{background-color:#151515!important}
body[dark] .boxConta .planoTitulo{color:#fff!important}
body[dark] .boxConta .planoValor{color:#fff!important}
body[dark] .cardBlogInt{background-color:#1f1f1f!important}
body[dark] .cardBlogInt span{color:#fff!important}
body[dark] .btn-nav{color:#fff!important}
body[dark] .blackaec{color:#999!important}
body[dark] .btn-nav:hover{color:#232f3c!important}
body[dark].btn-default{color:#fff!important}
body[dark] #mobile .fa-search{color:#232f3c!important}
body[dark] .fa-search{color:#fff!important}
body[dark] .accordion-item .accordion-header .accordion-button{background-color:#181818!important;color:#fff}
body[dark] .accordion-collapse{border-top:1px solid #f2f2f2}
body[dark] .accordion-body{background-color:#181818!important}
body[dark] .boxContact p{color:#fff!important}
.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}
body[dark] .boxContact label{color:#fff!important}
body[dark] label{color:#fff!important}
body[dark] label strong{color:#fff!important}
body[dark] .accordion-item{background-color:#181818;border:none;margin-bottom:5px}
body[dark] .grupo{background-color:#181818!important}
body[dark] .grupo strong{color:#fff!important}
body[dark] .badge span{color:#fff!important}
body[dark] .navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1);background-color:#fff}
body[dark] .blogDetail{background-color:#1f1f1f!important}
body[dark] .blogDetail span{color:#fff!important}
body[dark] .blogDetail i{color:#fff!important}
body[dark] .blogDetail .col-6{color:#fff!important}
body[dark] .pagamentoDiv strong{color:#fff!important}
body[dark] .alert-success strong{color:#000!important}
body[dark] .formCampoCep .fa-search{color:#000!important}
body[dark] #valorComCupom{color:#000!important}
body[dark] .footer-links{background-color:#000}
body[dark] .footer-links .links-body{background-color:#1f1f1f}
.footer-links{background:#161f28;font-size:14px}
.row-links{display:flex;flex-wrap:wrap}
.row-links .col-sm-4{padding-left:7.5px;padding-right:7.5px}
.container-links{position:relative;margin-left:auto;margin-right:auto;padding-right:10px;padding-left:10px;padding-bottom:25px!important;padding-top:25px!important}
.footer-links .links-body{background:#232f3c;padding:20px}
.footer-links .links-body>span{color:#fff;display:block;padding:0 0 10px;font-weight:700;font-size:14px}
.footer-links ul{margin:0;padding:0;list-style:none}
.footer-links ul li{overflow:hidden;text-overflow:ellipsis}
.footer-links .links-body a{color:#0ec654}
.bg-nav{background-color:#232f3c;padding:12px 0}
.bg-default{background-color:#0ec654}
.bgInt{padding:0 6px;margin:0 auto}
.btnMini{background-color:#0ec654;padding:0!important;display:inline-block;border-radius:2px;font-size:12px;margin-left:10px;color:#232f3c;width:60px;display:flex;align-items:center;justify-content:center}
.btn-default{background-color:#0ec654;padding:0!important;display:inline-block;border-radius:2px;font-size:12px;margin-left:10px;color:#232f3c;width:180px;display:flex;align-items:center;justify-content:center}
.text-dk:hover{color:#fff!important}
.btn-default2{background-color:#0ec654;padding:0!important;display:inline-block;border-radius:2px;font-size:12px;margin-left:10px;color:#232f3c;width:220px;display:flex;align-items:center;justify-content:center}
.logo{color:#fff;font-size:24px;font-weight:400;display:inline-block;line-height:34px}
.text-default{color:#016f65}
.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%}
.cardBlog{float:left;padding:0 8px;margin-bottom:16px;text-align:center}
.cardBlogInt{background-color:#fff;padding:18px 10px;box-shadow:2px 2px 2px -2px #474747;height:415px}
.imgGroup{width:130px;height:130px;margin-bottom:10px;margin:0 auto;display:block;object-fit:cover;border-radius:50%}
.titleGroup{font-size:14px;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 0 8px;padding:0 5px;color:#333;font-weight:600;height:26px}
.categoGroup{display:block;color:#868686;margin-bottom:15px}
.categoGroup:hover{color:#868686}
.btnGroup{background-color:#232f3c;padding:5px 6px;display:block;width:100%;margin:0 auto;border-radius:2px;font-size:12px;font-weight:600}
.lerMais{max-height:87px;position:relative;overflow:hidden;transition:all 2000ms ease-in;transform:scale(1)}
#botaoLerMais{float:right;color:#0ec654}
.btnGroup-vip{background-color:#232f3c;padding:5px 6px;display:block;color:#fff!important;width:100%;margin:0 auto;border-radius:2px;font-size:12px;font-weight:600}
.ribbon{position:relative;top:-9px;right:-16px}
.ribbon .banner{z-index:2;transform:rotate(45deg);color:#fff;font-smoothing:antialiased;display:block;float:right;position:relative;right:0;top:22px;width:100px}
.ribbon .text,.ribbon .banner,.ribbon a{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0 0}
.ribbon-red .banner:after,.ribbon-red .banner:before{background-color:#cc0a00}
.ribbon .banner:after,.ribbon .banner:before{background-color:#51a351}
.ribbon .banner:before{transform:skewY(-45deg) translate(50%,15px);transform-origin:100% center;left:-45px}
.ribbon .banner:after,.ribbon .banner:before{content:"";display:block;height:12px;position:absolute;width:30px}
.ribbon .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}
.ribbon-red .text:before,.ribbon-red .text:after,.no-css-transforms .ribbon-red .text{background-color:#ff0d00}
.ribbon .text:before,.ribbon .text:after,.no-css-transforms .ribbon .text{background-color:#0ec654}
.ribbon .text:before{transform:translateX(-15%) skewX(-45deg)}
.ribbon .text:before,.ribbon .text:after{content:"";display:block;height:30px;position:absolute;top:0;width:100%;z-index:-1}
.ribbon .text:after{transform:translateX(15%) skewX(45deg)}
.ribbon-vip{position:relative;top:-9px;right:-16px}
.ribbon-vip .banner{z-index:2;transform:rotate(45deg);color:#000;font-smoothing:antialiased;display:block;float:right;position:relative;right:0;top:22px;width:100px}
.ribbon-vip .text,.ribbon-vip .banner,.ribbon-vip a{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0 0}
.ribbon-vip .banner:after,.ribbon-vip .banner:before{background-color:#dc3545}
.ribbon-vip .banner:before{transform:skewY(-45deg) translate(50%,15px);transform-origin:100% center;left:-45px}
.ribbon-vip .banner:after,.ribbon-vip .banner:before{content:"";display:block;height:12px;position:absolute;width:30px}
.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}
.ribbon-vip .text:before,.ribbon-vip .text:after,.no-css-transforms .ribbon-vip .text{background-color:#dc3545}
.ribbon-vip .text:before{transform:translateX(-15%) skewX(-45deg)}
.ribbon-vip .text:before,.ribbon-vip .text:after{content:"";display:block;height:30px;position:absolute;top:0;width:100%;z-index:-1}
.ribbon-vip .text:after{transform:translateX(15%) skewX(45deg)}
.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}
.categoryImg{width:80px;height:80px;border-radius:50%}
.w-30{width:30%}
.w-65{width:65%;margin-left:5%}
.w-90{width:90%}
.categoryTitle{margin:0 0 3px;padding:0;font-size:1.1rem;font-weight:600;color:#232f3c}
body[dark] .categoryTitle{color:#0ec654!important}
.bg-apk{background-color:#0ec654!important}
.descriptionCategory{color:#666!important;font-size:12px;line-height:18px;overflow:hidden;height:54px;margin:0;padding:0;text-overflow:ellipsis}
.ol-regras{margin:0!important;padding:0!important;margin-left:1rem!important}
body[dark] .descriptionCategory{color:#999!important}
h1,h2,h3,h4,h5,h6{font-weight:400!important;min-height:20px;line-height:26px}
h2{margin:0 0 20px;font-size:22px}
h3{margin:0 0 20px;font-size:18px}
h4{margin:0 0 20px;font-size:16px}
a{color:#0ec654;text-decoration:none}
.footer{background-color:#232f3c;color:#fff}
.aneTema5f541e{margin:0 0 15px;padding:0;list-style:none;text-align:center}
.aneTema5f541e li{display:inline-block;margin:0 8px 3px}
.LinhaDeCardsGrupo{display:flex}
.boxContact{background-color:#fff;padding:1rem;display:flex;flex-direction:column;justify-content:center}
.img{width:140px;height:140px;object-fit:cover;border-radius:50%;align-self:center}
.aneTemaCd7594{margin:0 0 15px;padding:0;color:#016f65;font-size:18px;font-weight:600!important;text-align:center;margin-top:30px}
.aneTemaC80b0b{margin:0 0 11px;padding:0;list-style:none;text-align:center;width:50%;display:flex;justify-content:space-around}
.blocoIcons{width:100%;display:flex;justify-content:center;margin-top:15px}
.listDetailsGroup{display:flex;gap:1.2rem}
@media (max-width:400px){
  .listDetailsGroup{gap:1rem}
  .listDetailsGroup li{font-size:12px!important}
}
.regras-black{font-size:16px;font-weight:600;margin:0;padding:0}
body[black] .regras-black{color:white!important}
.aneTema9a2858{margin-bottom:15px;margin-top:35px;padding-bottom:10px;border-bottom:1px solid #f1f1f1}
.titleTab{border-bottom:1px #efefef solid;padding-bottom:6px;margin:0 0 15px;color:#009688;font-weight:400;text-transform:uppercase;font-size:16px}
.postItemTitulo{font-weight:600;font-size:15px;line-height:24px;margin-bottom:6px;display:block;overflow:hidden;height:49px;color:#111}
.cardBlogInt{text-align:start}
.imageBlog{display:flex;justify-content:space-between}
.seloViews{left:10px;top:150px;height:20px}
.selo{position:relative;bottom:8px;font-size:11px;line-height:20px;color:rgba(0,0,0,.8);padding:0 6px;border-radius:2px}
.seloData{right:10px;top:150px;height:20px}
.form-nav{display:flex}
.blocoGrupoCadastrado{display:flex}
.w-35{width:35%}
.box{background-color:#fff;border-radius:10px;box-shadow:0 1px 26px 8px #ababab!important;transition:box-shadow .2s ease-out;width:35%}
.box:hover{box-shadow:none!important}
.boxConta{background-color:#fff;border-radius:10px;transition:box-shadow .2s ease-out}
@media only screen and (max-width:558px){
  .boxConta{padding:0 1.6rem}
}
.boxEdit{background-color:#fff!important;border:1px solid #dee2e6!important}
.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0ec654}
.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem;color:#0ec654;text-align:start!important}
.newitems{background-color:#0ec654;color:#fff;font-size:12px;padding:2px 5px;font-weight:600;border-radius:6px}
.border-right{border-right:1px solid #ccc}
.grupo{transition:box-shadow .2s ease-out}
.grupo:hover{box-shadow:0 1px 26px 8px #ababab;transition:box-shadow .3s ease-in}
.img-grupo{width:60px;height:60px;border-radius:50%;margin-bottom:10px}
.blocoImgTitleGroup{width:100%}
@media only screen and (max-width:750px){
  .blocoImgTitleGroup{display:flex;flex-direction:column;align-items:center;text-align:center}
  .blocoImgTitleGroup .me-2{margin-right:0!important}
}
.blocoVisualiza_statusGroup{width:50%;display:flex;justify-content:center;align-items:center}
.blocoBotoesGroup{width:73%;display:flex;justify-content:center;align-items:center}
.plano{background-color:#e6f2ff;border:2px #ccc solid;padding:12px;margin-bottom:15px;border-radius:3px;text-align:center}
.planoTitulo{font-size:22px;line-height:32px;margin-bottom:5px;font-weight:bold}
.planoTexto{color:#575757;margin-bottom:8px}
.planoValor{font-size:20px;line-height:30px;margin-bottom:10px;color:#117929;font-weight:bold}
.planoTextoStar{color:#ffa500!important;font-size:24px}
.badge-orange{background-color:#ff8200;color:#fff;font-size:16px;font-weight:600!important;line-height:22px;display:block;width:22px;height:22px;text-align:center;border-radius:50%;margin-top:15px}
.pagamentoDiv{border:2px #dee2e6 solid;padding:20px 22px;margin-bottom:15px;border-radius:6px}
.pagamentoTitulo{position:relative;padding-left:32px;padding-right:20px;margin-bottom:12px;color:#666;font-size:12px;line-height:18px}
.pagamentoTituloNum{background-color:#ff8200;color:#fff;font-weight:600;line-height:22px;position:absolute;top:2px;left:0;display:block;width:22px;height:22px;text-align:center;border-radius:50%}
.pagamentoTitulo strong{color:#ff8200;font-size:15px;line-height:26px}
.formCampoCep{position:relative;padding-right:60px}
.formCampoCep button{width:55px;color:#111;position:absolute;top:0;right:0;height:38px;border:none;cursor:pointer}
.accordion-button:focus{z-index:3;outline:0;box-shadow:none!important}
.blogDetail{background-color:#fff;margin-bottom:1rem!important}
@media screen and (max-width:778px){
  .LinhaDeCardsGrupo{display:flex;flex-wrap:wrap}
  .cardGroup{float:left;width:100%;padding:0 10px;margin-bottom:16px;text-align:center}
  .aneTemaC80b0b{margin:0 0 11px;padding:0;list-style:none;text-align:center;flex-direction:column;width:100%;justify-content:space-around}
  .aneTemaC80b0b li{margin-bottom:10px!important}
  .cardBlog{float:left;width:100%;padding:0 8px;margin-bottom:16px;text-align:center}
  .form-nav{display:flex;flex-wrap:wrap}
  .btn-default{margin-left:0}
  .btn-default2{margin-left:0}
  .btn-nav{margin-top:10px;width:100%;height:40px;margin-bottom:10px}
  .btnMini{margin-left:0}
  .blocoGrupoCadastrado{display:flex;flex-wrap:wrap}
  .blocoVisualiza_statusGroup{width:100%;margin-top:10px;display:flex;justify-content:center;align-items:center;border-bottom:1px solid #ccc;padding-bottom:5px;margin-bottom:5px}
  .blocoBotoesGroup{width:100%;margin-top:10px;display:flex;flex-direction:column;justify-content:center;align-items:center}
  .blocoBotoesGroup .btn{width:100%!important}
  .box{background-color:#fff;border-radius:10px;box-shadow:0 1px 26px 8px #ababab;transition:box-shadow .2s ease-out;width:90%}
}
.btn-primary{color:#fff;background-color:#232f3c;border-color:#161f28}
.btn-primary:hover{color:#fff!important;background-color:#161f28;border-color:#232f3c}
@media screen and (max-width:768px){
  .links-rodape-top{margin-top:calc(var(--bs-gutter-x) * .5)}
  #fixar{display:flex}
}
@media screen and (max-width:768px){
  .adsense-home{padding:0 8px!important}
}