:root {
  --go-white: #FFFFFF;
  --go-bg: #F5F5F5;
  --go-text: #232323;
  --go-accent: #C91C52;
  --go-accent-10: rgba(201, 28, 82, .10);
  --go-navy: #030418;
  --go-purple: #2C0B5E;
  --go-radius: 16px;
  --go-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

html,
body {
  background: var(--go-bg);
  color: var(--go-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.text-accent {
  color: var(--go-accent) !important;
}

.bg-accent {
  background-color: var(--go-accent) !important;
  color: #fff !important;
}

.bg-accent-soft {
  background-color: var(--go-accent-10) !important;
}

.text-accent-emphasis {
  color: var(--go-accent) !important;
}

.btn-accent {
  background: var(--go-accent);
  border-color: var(--go-accent);
  color: #fff;
}

.btn-accent:hover {
  filter: brightness(1.04);
}

.btn-outline-accent {
  border: 1px solid var(--go-accent);
  color: var(--go-accent);
}

.btn-outline-accent:hover {
  background: var(--go-accent);
  color: #fff;
}

.border-white-25 {
  border-color: rgba(255, 255, 255, .25) !important;
}

.card,
.navbar {
  border-radius: var(--go-radius);
}

.card.shadow-sm {
  box-shadow: var(--go-shadow) !important;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.brandmark svg {
  display: block
}

.hamburger {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
}

.hamburger .bar {
  width: 18px;
  height: 2px;
  background: #333;
  position: relative;
  border-radius: 2px;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

.hamburger .bar::before {
  top: -6px;
}

.hamburger .bar::after {
  top: 6px;
}

.search-top .form-control:focus {
  box-shadow: 0 0 0 3px var(--go-accent-10);
  border-color: var(--go-accent);
  outline: none;
}

/* Sidebar */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 1039;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 86vw;
  height: 100%;
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, .08);
  transform: translateX(-100%);
  transition: transform .3s ease;
  z-index: 1041;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
}

.sidebar nav a:hover {
  background: #f3f3f3;
}

.sidebar .muted {
  color: #777;
  font-size: .85rem;
}

.sidebar-open .sidebar {
  transform: translateX(0);
}

.sidebar-open .sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero-wrap {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 255, 255, .06), transparent 60%), ;
  color: #fff;
  padding: 1.2rem 0 2rem;
}

.hero-inner {
  align-items: center;
}

@media(max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-carousel {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 78%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 50% 50%, #000 78%, transparent 100%);
}

.hero-carousel .carousel-item {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero-carousel img {
  width: 100%;
  height: auto;
  inset: 0;
  object-fit: cover;
}

.slide-overlay {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .55) 85%);
  color: #fff;
  width: 100%;
  padding: 24px 24px 28px;
  margin-top: auto;
}

/* Carrosséis horizontais */
.scroll-carousel {
  position: relative;
}

.scroll-carousel .items {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(88%, 320px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

@media(min-width: 992px) {
  .scroll-carousel .items {
    grid-auto-columns: 330px;
  }
}

.scroll-carousel .items::-webkit-scrollbar {
  height: 10px;
}

.scroll-carousel .items::-webkit-scrollbar-thumb {
  background: #d7d7d7;
  border-radius: 7px;
}

.scroll-carousel .items>* {
  scroll-snap-align: start;
}

.carousel-faders::before,
.carousel-faders::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  pointer-events: none;
  z-index: 2;
}

.carousel-faders::before {
  left: 0;
  background: linear-gradient(90deg, var(--go-bg), transparent);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.carousel-faders::after {
  right: 0;
  background: linear-gradient(270deg, var(--go-bg), transparent);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.nav-arrows {
  position: absolute;
  inset: -60px 0 auto 0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media(max-width: 992px) {
  .nav-arrows {
    position: static;
    margin-bottom: 8px;
    justify-content: flex-start;
  }
}

.nav-arrows .btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.skiplink {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skiplink:focus {
  position: static;
  width: auto;
  height: auto;
  padding: .5rem 1rem;
  background: #000;
  color: #fff;
  z-index: 1100;
}

.divpesquisar {}

:root {
  --sidebar-w: 280px;
}

/* igual à largura da .sidebar */

html,
body {
  overflow-x: hidden;
}

/* evita scroll horizontal ao empurrar */

.page {
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  /* ease mais suave */
  will-change: transform;
}

.sidebar-open .page {
  transform: translateX(var(--sidebar-w));
  box-shadow: -12px 0 32px rgba(0, 0, 0, .12);
}

/* desktop: cancela o translate depois de abrir */

.sidebar-open .page {
  transform: none;
  /* evita “deslocar + reduzir largura” ao mesmo tempo */
  margin-left: var(--sidebar-w);
  width: calc(100% - var(--sidebar-w));
}

.mod-button {
  margin-top: 15px;


}

.mod-button {
  background-color: #ffffff;
  padding: 5% 65% 05% 10%;
  border-radius: 10px;
  width: 100%;
}

.btn-active {
  outline: 2px solid var(--go-accent);
  /* ou qualquer cor */
  outline-offset: 2px;
}

.btn.active {
  background-color: rgb(223, 223, 223);
}

:root {
  --topbar-h: 64px;
  /* ajuste se sua topbar for mais alta/baixa */
}

.nav-btn.active {
  border: 2px solid #8a8a8a;
  border-radius: 10px;

}

/* Header sempre por cima e fixo */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  /* maior que a sidebar (1041) e o backdrop (1039) */
}

/* Empurra o conteúdo para baixo do header fixo */
.page {
  padding-top: var(--topbar-h);
}

/* (opcional) deixa o botão do hambúrguer sempre visível no canto */
.hamburger {
  position: relative;
  /* já está ok dentro da topbar; 
                         use 'position: fixed' se quiser ele colado na viewport */
}

.divpesquisarform {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.my-slider img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.my-slider1 img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.my-slider2 img {
  width: 100%;
  height: auto;
  display: block;
}

.my-slider3 img {
  width: 100%;
  height: auto;
  display: block;
}

.my-slider4 img {
  border: solid 1px black;
  border-radius: 24px;
  width: 100%;
  height: auto;
  display: block;

}

.my-slider5 img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.my-slider6 img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.my-slider7 img,
.my-slider9 img,
.my-slider10 img,
.my-slider11 img,
.my-slider12 img,
.my-slider13 img,
.my-slider14 img,
.my-slider15 img,
.my-slider16 img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  display: block;

}


.cardcss {
  margin-top: 70px;
}

.propaganda {
  margin-top: 70px;
}

.godocstitulo {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  color: #4f4f4f;
  margin-top: 5px;
  font-family: poppins;
}

.godocsrevista {
  font-weight: 100;
  color: #666666;
  margin-top: -12px;
  font-family: poppins;
}

.titulogeral {
  color: #4f4f4f;
  font-size: calc(1.275rem + .3vw);
}

.botaoespecialidade {
  display: flex;
  border: solid 2px #9e9e9e;
  padding: 20px 30px 15px 30px;
  border-radius: 15px;
  justify-self: center;
  width: 100%;
}

.limparfiltros {
  display: flex;
  border: solid 2px #9e9e9e;
  padding: 10px 10px 10px 10px;
  border-radius: 15px;
  justify-self: right;
  margin-top: 20px;
  font-size: 15px;
  color: #9e9e9e;
  margin-bottom: -60px;
  display: none;
}

.limparfiltros p {
  margin: 0 auto;
}

.botaoespecialidade i {
  font-size: 30px;
  color: #9e9e9e;
  margin: 0 0 0 auto;
}

.botaoespecialidade p {
  font-weight: 600;
  margin: 0 auto 0 0;
  color: #9e9e9e;
}

.footer {
  background-color: #212529;
  background-image: url(./views/img/triangles.png);
}

.conteudoacademy {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  justify-content: center;
}


.hero-carousel .carousel-item {
  min-height: auto;
}

.conteudoacademy img {
  width: 220%;
  border-radius: 15px;
  margin-top: 25px;
}


/* filtroacademy */
:root {
  --dur: 400ms;
}

.conteudoacademy {
  opacity: 1;
  transition: opacity var(--dur) ease;
}

.conteudoacademy.fade-out {
  opacity: 0;
}

.conteudoacademy.fade-in {
  opacity: 1;
}

.meu-botao:hover {
  background: #ffffff;
}

.meu-botao.is-active {
  background: #ffffff;
}

/* end  */

/* colecoes */
.listacolecao {
  border-radius: 15px;
}

.imagemnovosartigos {
  border-radius: 20px;
  border: solid 1px rgb(194, 194, 194);
  width: 100%;
  height: auto;
}

.tituloartigorecente {
  color: rgb(80, 80, 80);
  font-size: 30px;
}

.resumoartigorecente {
  font-size: 20px;
}

.botoesartigo {
  background-color: #e2e2e2;
  color: rgb(27, 27, 27);
  font-weight: 900;
  border: 0;
  padding: 10px 30px;
}

.botoesartigo:hover {
  background-color: #d3d3d3;
  color: rgb(27, 27, 27);
  ;
}

.textoartigorecente p,
.textoartigorecente h1,
.textoartigorecente h2 {
  padding-left: 100px;

}

.textoartigorecente a {
  margin-left: 100px;
}

.logocolecao img {
  height: 120px;
  width: 250px;

}

.logocolecao a {
  pointer-events: none;
}

/* canais */

.tecnologiascanais img {
  border-radius: 20px;
  border: solid 2px rgb(194, 194, 194);
  margin-bottom: 20px;
  width: 100%;
}

.carrossellogocanais a {
  filter: invert(0.8);

}

.carrossellogocanais img {
  border: 2px rgb(214, 214, 214) solid;
  padding: 20px;
  width: 90%;


}

.carrossellogocanais2 a {
  filter: invert(0.8);

}

.carrossellogocanais2 img {
  border: 2px rgb(214, 214, 214) solid;
  padding: 20px;
  user-select: none;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;



}

.carrossellogocanais .tns-item:not(.tns-slide-active)+.tns-slide-active+.tns-slide-active+.tns-slide-active {
  transform: scale(1.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* livros */
.titulolivros {
  text-decoration: none;

  font-family: Poppins;
}

.colecaoRound {
  font-size: 17px;
  color: black;
}

.arredonda-imagem {
  border-radius: 10px;
}

/* colecao */

.produtoTopo {
  background: url(../facelift2/img/Banner-Clinical-Orthodontics.png);
  center fixed !important;
  padding-top: 50px;
  padding-bottom: 40px;
  margin-top: 20px;
  min-height: 400px;
  display: flex;
  justify-content: center;


}

.produtoTopoRevistas {
  background: url(../imagens/BANNER-ULTIMA-REVISTA-CLINICA.png) no-repeat center center fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  padding-top: 69px;
  padding-bottom: 40px;
  min-height: 450px;
  display: flex;
  justify-content: center;
}

.produtoTopo img {
  max-width: 600px;
  margin: auto;
  display: block;
}

.tiraUnderline {
  text-decoration: none;
}

.sombraAno {
  -webkit-box-shadow: 0px 2px 0px 0px #d4d4d4;
  -moz-box-shadow: 0px 2px 0px 0px #d4d4d4;
  box-shadow: 0px 2px 0px 0px #d4d4d4;
  margin-bottom: 25px;
  margin-top: 50px;
  color: #4e5252;
  font-weight: 900;
  font-size: 33px;
  font-family: 'Montserrat', sans-serif !important;
  padding-bottom: 10px;
}

.colecaoRound {
  font-size: 16px;
  text-align: center;
  /*border-radius: 18px;*/
  /*border: 1px solid gray;*/
  /* background: #d6d6d6;*/
  color: rgb(66, 66, 66);
  padding: 12px 0;
  text-decoration: none;
  margin-top: 15px;
}


.logo-abor-revista-colecao {
  float: left;
  z-index: 10;
  max-height: 24px;
  margin-left: 16px;
  margin-top: -50px;
}

.logo-alado-revista-colecao {
  float: right;
  z-index: 10;
  max-height: 100px;
  margin-left: 10px;
  margin-top: -80px;
}

.logo-abor-revista-colecoes {
  float: left;
  z-index: 10;
  max-height: 24px;
  margin-left: 5px;
  margin-top: -35px;
}

.logo-alado-revista-colecoes {
  float: right;
  z-index: 10;
  max-height: 45px;
  margin-left: 10px;
  margin-top: -45px;
}


.logo-abor-revista-home {
  float: left;
  z-index: 10;
  max-height: 50px;
  margin-left: 20px;
  margin-top: -80px;
}

.logo-alado-revista-home {
  float: right;
  z-index: 10;
  max-height: 150px;
  margin-left: 40px;
  margin-top: -120px;
}

.logo-abor-revista-mobile {
  float: left;
  z-index: 10;
  max-height: 50px;
  margin-left: 20px;
  margin-top: -80px;
}

.logo-alado-revista-mobile {
  float: right;
  z-index: 10;
  max-height: 150px;
  margin-left: 40px;
  margin-top: -120px;
}

/*CLINICALORTO*/
.produtoTopo5 {
  position: relative;
  background: url(../imagens/BannerClinicalOrthodontics.webp) no-repeat center center !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;

  padding-bottom: 185px;
  padding-top: 30px;


}

.produtoTopo5::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(246, 246, 246, 0.27) 61%, rgba(245, 245, 245, 1) 90%, rgba(245, 245, 245, 1) 100%);
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;


}

/*DPJO*/
.produtoTopo6 {
  background: url(../imagens/BannerClinicalOrthodontics.webp) no-repeat center center fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  padding-top: 90px;
}

/*JBCOMBS*/
.produtoTopo1 {
  background: url(../imagens/Bannercollegeoforal.webp) no-repeat center center fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  padding-top: 90px;
}

/*ENDO*/
.produtoTopo2 {
  background: url(../imagens/Bannerendodontics.webp) no-repeat center center fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  padding-top: 90px;
}

/*JCDR*/
.produtoTopo4 {
  background: url(../imagens/Bannerdpjo.webp) no-repeat center center fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  padding-top: 90px;
}

/*PERIODONTOLOGY*/
.produtoTopo50 {
  background: url(../imagens/BannerPERIO.webp) no-repeat center center fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  padding-top: 90px;
}

.revistaCapaAbsolute {
  width: 340px;
  z-index: 9;
  position: relative;
  -webkit-box-shadow: 3px 10px 17px -5px rgb(0, 0, 0);
  -moz-box-shadow: 3px 10px 17px -5px rgb(0, 0, 0);
  box-shadow: 3px 10px 17px -5px rgb(0, 0, 0);
  margin-bottom: -90px;

}

/* bannerrevista */

.divbannerrevista {
  text-align: center;
}

.revistatitulo {
  text-decoration: none;
  color: rgb(245, 245, 245);
  pointer-events: none;


}

.revistatitulo h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.botaoCorpo {}

.botaoacervo {}

.linhabotoes {
  column-gap: 20px;
  margin-top: auto;
  display: flex;
  justify-content: start;

}

.botaoColetanea,
.botaoColetaneaMenosClinical {

  height: 50vh;
  z-index: 100;
  white-space: nowrap;

}

.borda-titulo {
  flex: 0 0 auto;
  margin-top: 30px;
  text-align: start;
}

.linhaAopiadoresRevista2 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(30, 30, 30, 1) 10%, #232323FF 100%);
  padding-top: 30px;
  padding-bottom: 25px;
  margin-top: 20px;
  padding-right: 50px;
  align-items: center;
}

.apoioinstitucional {
  margin-right: 50px;
  margin-left: 50px;

}

.apoiogeral {
  width: auto;
  height: auto;
  margin-right: 50px;
  max-height: 40px;

}

.logo-alado-revista {}

.logo-abor-revista {}

.divaladoabor {
  z-index: 1000;
  position: absolute;

}

.logo-abor-revista {

  float: left;
  z-index: 10;
  max-height: 50px;
  margin-left: 20px;
  margin-top: 2px;
}

.logo-alado-revista {
  float: right;
  z-index: 10;
  max-height: 150px;
  margin-left: 17px;
  margin-top: -23px;
}

.divselos img {
  max-width: 15%;

}

.divselos {
  text-align: start;
  margin-top: 20%;


}

.divselos a {}

.publicacaodiv {
  position: relative;
  display: block;
  width: auto;
  justify-content: end;

}

.publicacaodiv a {
  width: 100%;
  height: auto;
}

.publicacaodiv img {
  width: 40%;
}

.revistatitulo-decoration {}

.boxbordasComprar {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: solid 2px rgb(207, 207, 207);
}

.revistaImagemArtigoh1 {
  font-size: 25px;
  font-weight: 700;
}

.revistaImagemArtigop1 {
  font-size: 20px;
}

.revistaImagemArtigo {
  min-height: 400px;

}

.revistaImagemArtigo {}

.buscaLink {
  font-size: 20px;
}

.divesquerdarevista {
  position: relative;
  justify-self: left;
}

/* artigo */
.bannerartigo {
  min-height: 300px;
  /* ou height fixa */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1000;
}

/* 
modal */
/* ===========================
   BACKDROP / BLUR
=========================== */

.modal-backdrop {
  pointer-events: none;

}


/* ===========================
   ESTRUTURA BASE
=========================== */

.modalCentraliza {
  width: auto;
  max-width: var(--bs-modal-width);
  height: auto;
  margin: auto;
  padding: initial;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 1;


}

.conteudoDoModal {
  height: auto;
  min-height: 100%;
  border-radius: 25px;
  background-color: #414141;
  opacity: 0.95;
  color: #666666;
  z-index: 1;


}

/* ===========================
   MODAL BODY
=========================== */

.modal-body-login {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
  background-color: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.color-modalbody {
  background-color: #212121 !important;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* ===========================
   HEADERS
=========================== */

.modal-head-Vantagem,
.modal-head-Vantagem2 {
  width: 100%;
  padding: var(--bs-modal-header-padding);
  background: linear-gradient(286deg,
      rgba(120, 163, 255, 1) 0%,
      rgba(255, 143, 143, 1) 98%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-radius: 30px 30px 0 0;
}

.modal-head-Vantagem1 {
  width: 100%;
  padding: var(--bs-modal-header-padding);
  background: linear-gradient(286deg,
      rgb(69, 120, 157) 0%,
      rgb(190, 45, 34) 98%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-radius: 30px 30px 0 0;
}

.modal-head-Vantagem4 {
  width: 100%;
  background-color: #fff;
  padding: var(--bs-modal-header-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-radius: 30px 30px 0 0;
}

/* ===========================
   TÍTULOS / TEXTOS
=========================== */

.tituloModal,
.modal-title-baixo {
  text-align: center;
  color: #fff;
  line-height: var(--bs-modal-title-line-height);
}

.textoModal {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
  font-family: prompt;
  background: -webkit-linear-gradient(#eee, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================
   ÍCONES / AÇÕES
=========================== */

.modal-icons {
  margin-top: 35px;
}

.logo-modal {
  align-items: center;
}

.iconeVantagem {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   BOTÕES
=========================== */

.botao-fechar,
.botaomodal-fechar {
  color: #fff !important;
  background-color: transparent !important;
  transition: 0.5s ease;
}

.botaomodal-fechar:hover {
  color: #000 !important;
}

/* ===========================
   ARREDONDAMENTOS
=========================== */

.modalRedondinho {
  border-radius: 30px;
  background: transparent !important;
}

.modalRedondinho1 {
  border-radius: 30px;
  background-color: #fff !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* ===========================
   BLUR INTERNO
=========================== */

.modalblur {
  margin: 20px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 0px 2px rgba(255, 255, 255, 0.6);
}

/* ===========================
   DIALOGS (LARGURA)
=========================== */

.modalintegra-dialog {
  --bs-modal-width: 98%;
}

.articlemodal-dialog {
  --bs-modal-width: 98%;
}

.article-modal-dialog {
  --bs-modal-width: 98%;
}

.artigocompra-modaldialog {
  --bs-modal-width: 98%;
}

/* ===========================
   MODAIS DE ARTIGO / COMPRA
=========================== */

.article-modal-body,
.article-modal-body1,
.artigocompra-containerheight,
.artigocompra-productitems,
.artigocompra-adobedcview {
  height: 100vh;
}

/* ===========================
   BACKGROUNDS DE MODAL
=========================== */

.background-modalrec {
  background-color: #fff !important;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.background-modalrec-header {
  background-color: #fff !important;
}

.background-assinantemodal {
  background-color: #212121;
}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width: 768px) {
  .titulo-modalgeral {
    margin-left: 5px !important;
    font-size: 21px !important;
  }

  .titulo-modalgeral1 {
    margin-left: 10px;
  }

  .btn-modalmargin {
    margin-left: -4px !important;
  }

  .title-price,
  .title-price2 {
    margin-left: 4px !important;
  }
}

@media (max-width:768px) {

  .produtoTopo img {
    max-width: 100% !important;
    margin: auto;
    display: block;
  }
}




.icones-colecao {
  max-width: 190px !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 100px !important;
  height: 40px;
  margin-right: 50px !important;
}

.aparecemobile {
  display: none;
}

@media screen and (max-width: 1300px) {
  .conteudoacademy {
    grid-template-columns: 25% 25% 25% 25%;
  }
}

@media screen and (max-width: 1200px) {
  .carrossellogocanais .tns-item:not(.tns-slide-active)+.tns-slide-active+.tns-slide-active+.tns-slide-active {
    transform: none;
    transition: none;
  }

  .carrossellogocanais .tns-item:not(.tns-slide-active)+.tns-slide-active+.tns-slide-active {
    transform: scale(1.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

@media screen and (max-width: 1100px) {
  .conteudoacademy {
    grid-template-columns: 33% 33% 33%;
  }
}

@media screen and (max-width: 992px) {
  .conteudoacademy {
    grid-template-columns: 50% 50%;
  }

  :root {
    --sidebar-w: 0px;
  }

  .sidebar {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .mod-button {
    background-color: #ffffff;
    padding: 5% 100% 05% 10%;
    border-radius: 10px;
    width: 100%;
  }

  .retirarbordamobile {
    overflow-x: hidden !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  .divesquerdarevista {
    position: relative;
    justify-self: center;
  }

  .linhabotoes {
    justify-content: center;
    margin: 40px 0px
  }

  .linhabotoes2 {

    margin-top: 170px !important;
  }

  .divselos {
    text-align: center;
    margin-top: 40%;

  }

  .linhaAopiadoresRevista2 {
    padding-top: 30px;
    padding-bottom: 25px;
    margin-top: 20px;
    padding-right: 5px;
    padding-left: 5px;
    column-gap: 10px;
    flex-wrap: wrap;
  }

  .linhaAopiadoresRevista3 a {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
  }

  .linhaAopiadoresRevista4 a {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
  }

  .apoiogeral {
    width: auto;
    height: auto;
    margin-right: 0px;
    max-height: 40px;
    margin-top: 30px;

  }

  .divselos img {
    max-width: 30%;

  }

  .botaoColetanea {
    padding: 0 !important;
  }

  .somemobile {
    display: none;
  }

  .aparecemobile {
    display: block;
  }

  .produtoTopo5 {
    padding-bottom: 20px;
  }

  .borda-titulo {

    margin-top: 0px;
    text-align: center;
  }

  .botaoColetanea2 {
    height: 30vh !important;
  }

}

@media screen and (max-width: 768px) {

  .textoartigorecente p,
  .textoartigorecente h1,
  .textoartigorecente h2 {
    padding-left: 0px;

  }


}

@media screen and (max-width: 576px) {

  .mod-button {
    background-color: #ffffff;
    padding: 2% 0% 2% 5%;
    border-radius: 10px;
    width: 100%;
    margin-top: 8px;
    text-align: left;
  }
}

/* ===========================
   MOBILE RESPONSIVENESS FIXES
=========================== */

/* Mobile: Sidebar oculta por padrão */
@media (max-width: 991px) {

  /* Sidebar oculta e fora da tela por padrão */
  .sidebar {
    transform: translateX(-100%) !important;
    z-index: 1041;
  }

  /* Quando aberta via toggle */
  .sidebar-open .sidebar {
    transform: translateX(0) !important;
  }

  /* Backdrop funcional */
  .sidebar-backdrop {
    background: rgba(0, 0, 0, 0.5);
    z-index: 1039;
  }

  .sidebar-open .sidebar-backdrop {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Page não se move no mobile */
  .page {
    transform: none !important;
    margin-left: 0 !important;
    width: 100% !important;
  }

  /* Topbar ajustes mobile */
  .topbar {
    padding: 8px 0;
  }

  .topbar .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Logo menor no mobile */
  .logodentalgotopo {
    max-width: 100px !important;
    width: 100px !important;
    height: auto;
  }

  /* Hamburger sempre visível */
  .hamburger {
    flex-shrink: 0;
  }

  /* Ocultar texto dos botões em telas muito pequenas */
  @media (max-width: 576px) {
    .nav-item .nav-link {
      padding: 6px 10px !important;
      font-size: 14px;
    }
  }

  /* Campo de busca mobile dentro da sidebar está ok */
  .search-top.d-lg-none {
    margin-bottom: 12px;
  }
}

/* Desktop: Sidebar com toggle funcional */
@media (min-width: 992px) {

  /* Sidebar aberta por padrão em desktop */
  .sidebar-open .sidebar {
    transform: translateX(0) !important;
  }

  /* Backdrop não aparece em desktop */
  .sidebar-backdrop {
    display: none !important;
  }

  /* Page se ajusta quando sidebar está aberta */
  .sidebar-open .page {
    margin-left: var(--sidebar-w);
    width: calc(100% - var(--sidebar-w));
    transition: all 0.3s ease;
  }

  /* Page ocupa tudo quando sidebar está fechada */
  .page {
    margin-left: 0;
    width: 100%;
    transition: all 0.3s ease;
  }
}

/* Ajustes para tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .topbar .gap-3 {
    gap: 1rem !important;
  }

  .logodentalgotopo {
    max-width: 120px !important;
    width: 120px !important;
  }
}

/* Mobile muito pequeno (< 375px) */
@media (max-width: 374px) {
  .logodentalgotopo {
    max-width: 80px !important;
    width: 80px !important;
  }

  .hamburger {
    width: 36px;
    height: 36px;
  }

  .topbar .gap-3 {
    gap: 0.5rem !important;
  }
}

/* ===========================
   BUSCA MOBILE EXPANSÍVEL
=========================== */

.mobile-search-toggle {
  border-radius: 12px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mobile-search-toggle:hover {
  background-color: #f0f0f0 !important;
}

.mobile-search-form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-search-form.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-search-form .input-group {
  max-width: 600px;
  margin: 0 auto;
}

.mobile-search-form .form-control {
  border-radius: 12px 0 0 12px;
  border-right: none;
  padding: 10px 16px;
}

.mobile-search-form .btn {
  border-radius: 0 12px 12px 0;
  border-left: 1px solid #dee2e6;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   BOTÕES COMPACTOS MOBILE
=========================== */

@media (max-width: 576px) {

  /* Ocultar texto dos botões, manter apenas ícones */
  .nav-item .btn-text-mobile {
    display: none;
  }

  .nav-item .nav-link {
    padding: 8px 12px !important;
    font-size: 0 !important;
    min-width: 42px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .nav-item .nav-link i {
    font-size: 18px !important;
    margin: 0 !important;
  }

  /* Botão Login compacto */
  .nav-item .btn-light {
    width: auto;
    min-width: 42px;
  }

  /* Botão Assine compacto */
  .nav-item .btn[style*="background-color"] {
    width: auto;
    min-width: 42px;
  }

  /* Dropdown de idioma compacto */
  .nav-item.dropdown .nav-link {
    padding: 8px !important;
  }

  /* Topbar mais compacta */
  .topbar {
    padding: 6px 0;
  }

  .topbar .gap-3 {
    gap: 0.5rem !important;
  }
}

/* ===========================
   MELHORIAS DE ACESSIBILIDADE
=========================== */

/* Focus visível para navegação por teclado */
.hamburger:focus,
.mobile-search-toggle:focus,
.nav-link:focus,
.btn:focus {
  outline: 2px solid var(--go-accent);
  outline-offset: 2px;
}

/* Animação suave do hambúrguer */
.hamburger {
  transition: transform 0.2s ease;
}

.hamburger:active {
  transform: scale(0.95);
}

/* ===========================
   MELHORIAS DE PERFORMANCE
=========================== */

/* Reduzir repaint/reflow */
.sidebar,
.mobile-search-form,
.sidebar-backdrop {
  will-change: transform, opacity;
}

/* Suavizar scroll em mobile */
@media (max-width: 991px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}