/** Header **/

@font-face {
  font-family: "MdNichrome";
  src: url("../fonts/MDNichrome-Dark.woff2") format("woff2"),
    url("../fonts/MDNichrome-Dark.woff") format("woff");
}

@font-face {
  font-family: "MdNichrome-Regular";
  src: url("../fonts/MDNichrome-Regular.woff2") format("woff2"),
    url("../fonts/MDNichrome-Regular.woff") format("woff");
}

@font-face {
  font-family: "Haffer";
  src: url("../fonts/Haffer-Regular.woff") format("woff"),
    url("../fonts/Haffer-Regular.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
  color: #faf5f0;
  font-family: "MdNichrome", sans-serif;
}

body {
  background-color: #ff3c00;
}

p {
  font-family: "Haffer", sans-serif;
}

li {
  font-size: 16px;
}

.disabled {
  display: none;
}

h1 {
  font-family: "MdNichrome", sans-serif;
  font-size: 56px;
  line-height: 60px;
  text-transform: uppercase;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile {
  display: none !important;
}

#postsCarousel .owl-nav-and-dots,
#postsCarouselAlternate .owl-nav-and-dots,
.tutoriais .owl-nav-and-dots {
  display: none;
}

#header {
  display: flex;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.85) 20%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 100%;
  padding-top: 48px;
  padding-bottom: 60px;
  position: fixed;
  z-index: 3;
}

.wrapper-header {
  display: flex;
  align-items: center;
  margin: 0px 168px;
  gap: 280px;
  height: 50px;
}

.wrapper-logo {
  width: 194px;
  height: 40px;
}

#logo-img {
  width: 194px;
  height: 40px;
}

/** navigation **/

#nav {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 40px;
}

.menu > li {
  display: flex;
  position: relative;
  align-items: center;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  padding: 0px 16px;
  height: 100%;
}

.menu > li > a {
  color: #faf5f0;
  text-decoration: none;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff3c00;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu > li > a:hover::after {
  opacity: 1;
}

/** search **/

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 40px;
  border: none;
  overflow: hidden;
  transition: width 0.4s ease, height 0.6s ease, border 1s ease;
  width: 24px;
}

.search-input {
  width: 0;
  opacity: 0;
  transition: width 0.8s ease;
  border: none;
  color: #fff;
  padding: 0 10px;
  height: 40px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  right: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 2;
}

.fa-search {
  font-size: 16px;
  text-shadow: none;
}

.search-form.expanded {
  width: 200px;
  border: 1px solid #faf5f0;
  height: 50px;
  padding-right: 24px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-input.expanded {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #faf5f0;
  width: 150px;
  overflow: hidden;
  opacity: 1;
  margin: 0;
  border: none;
  padding-right: 20px;
}

.search-input::placeholder {
  color: #faf5f0;
  opacity: 1;
}

/** Custom Slider **/

#customSlider .carousel-item {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease-in-out;
}

#customSlider .carousel-item,
#customSlider .carousel-item.active {
  height: 700px !important;
}

#customSlider.carousel-fade .carousel-inner {
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 1s ease-in-out;
}

#customSlider .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

#customSlider .carousel-caption {
  position: relative;
  z-index: 2;
}

#customSlider .carousel-caption {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  top: 45%;
  transform: translateY(-50%);
  color: white;
  z-index: 1;
  max-width: 600px;
  height: 285px;
  padding: 0 !important;
  margin: 0 !important;
}

#customSlider .carousel-caption h1 {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
  text-transform: uppercase;
  max-width: 600px;
  height: 250px;
  overflow: hidden;
}

#customSlider .carousel-caption .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px;
  padding: 22px 32px;
  background-color: #ff4500;
  color: #faf5f0;
  font-weight: bold;
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  border-radius: 0px !important;
}

#customSlider .carousel-caption .btn:hover {
  background-color: black;
  color: #ff4500;
  border: 2px solid #ff4500;
}

#customSlider .carousel-indicators {
  position: absolute !important;
  justify-content: flex-start !important;
  margin-top: 64px;
  top: 70%;
  gap: 16px;
}

#customSlider .carousel-indicators button {
  width: 48px !important;
  height: 4px !important;
  background-color: #faf5f0 !important;
  opacity: 1 !important;
  margin-left: 0 !important;
}

#customSlider .carousel-indicators .active {
  background-color: #ff3c00 !important;
}

/** content **/

#content {
  margin: 0;
  padding: 0;
}

.wrapper-content {
  margin: 56px 168px 0;
}

#postsCarousel article, #postsCarouselAlternate article {
  width: 352px;
  color: #faf5f0;
}

#postsCarousel .owl-stage-outer,
#postsCarouselAlternate .owl-stage-outer,
#wrapper-tutoriais .owl-stage-outer {
  display: flex;
  justify-content: center;
}

#postsCarousel h1, #postsCarouselAlternate h1{
  display: flex;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 8px;
  margin-top: 16px;
  padding: 0;
  height: 104px;
  overflow: hidden;
}

#postsCarousel p, #postsCarouselAlternate p {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  padding: 0;
  font-family: "Haffer", sans-serif;
  height: 72px;
}

#postsCarousel .btn, #postsCarouselAlternate .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px;
  padding: 22px 32px;
  font-weight: bold;
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  border-radius: 0px !important;
  font-family: "Haffer", sans-serif;
}

.owl-carousel-posts .owl-item img {
  height: 200px !important;
}

/* Estilo para a página com cores padrão (carousel-default) */
.carousel-default h1 {
  color: #faf5f0; /* Cor do título (branco) */
}

.carousel-default .btn {
  background-color: #faf5f0; /* Fundo branco */
  color: #ff3c00; /* Texto laranja */
}

.carousel-default .btn:hover {
  background-color: transparent;
  color: #faf5f0; /* Texto branco no hover */
  border: 2px solid #faf5f0; /* Borda branca no hover */
}

/* Estilo para a página com cores alternativas (carousel-alternate) */
.carousel-alternate h1 {
  color: #0F0F23; /* Cor do título (laranja) */
}

.carousel-alternate .btn {
  background-color: #ff3c00; /* Fundo laranja */
  color: #faf5f0; /* Texto branco */
}

.carousel-alternate p {
  color: #0F0F23;
}

.carousel-alternate .btn:hover {
  background-color: transparent;
  color: #ff3c00; /* Texto laranja no hover */
  border: 2px solid #ff3c00; /* Borda laranja no hover */
}

.carousel-alternate {
  margin-bottom: 152px;
}

@media (max-width: 960px) {
  .carousel-alternate {
    margin-bottom: 0px;
  }
}


/** crie conta **/

.crie-conta {
  display: flex;
  width: 100%;
  height: 218px;
  margin-bottom: 152px;
  margin-top: 152px;
  justify-content: center;
}

.wrapper-crie-conta {
  padding: 32px 0 32px 72px;
  width: 1104px;
  max-width: 1104px;
  background: url("../images/fundoazul.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

#clube-betano-logo {
  width: 250px;
}

.body-crie-conta {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.body-crie-conta > h2 {
  color: #FAF5F0;
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 40px;
}

.body-crie-conta > p {
  color: #0f0f23;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.abra-conta {
  display: flex;
  align-items: center;
  gap: 60px;
}

.abra-conta .btn {
  background-color: #ff3c00;
  color: #faf5f0;
  width: 191px;
  height: 50px;
  border-radius: 0px;
  text-transform: uppercase;
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.abra-conta .btn:hover {
  background-color: transparent;
  color: #ff3c00;
  border: 2px solid #ff3c00;
}

.wrapper-img-crie-conta {
  display: flex;
  align-self: center;
  margin-left: 43px;
}

/** tutoriais **/

.tutoriais {
  display: flex;
  flex-direction: column;
}

.tutoriais > h1 {
  font-size: 56px;
  text-transform: uppercase;
  line-height: 60px;
  font-weight: 500;
  color: #faf5f0;
  margin-bottom: 48px;
}

#wrapper-tutoriais article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 352px;
  height: 582px;
  background: linear-gradient(to top, black 25%, rgba(0, 0, 0, 0) 100%);
}

.content-tutoriais {
  padding: 24px;
}

.content-tutoriais > h2 {
  display: flex;
  align-items: center;
  height: 160px;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 500;
  color: #faf5f0;
}

.content-tutoriais .btn {
  display: flex;
  align-items: center;
  border: 2px solid #FF3C00;
  background-color: #ff4500;
  color: #faf5f0;
  width: 173px;
  transition: box-shadow 0.3s ease;
  height: 50px;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Haffer", sans-serif;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.5px;
  justify-content: center;
}

.content-tutoriais .btn:hover {
  background-color: transparent;
  color: #ff4500;
  border: 2px solid #ff4500;
}

.btn-tutorial {
  display: flex;
  align-self: flex-end;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 16px;
  font-family: "Haffer", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 10px;
  line-height: 22px;
  color: #faf5f0;
  position: relative;
  transition: letter-spacing 0.3s ease, color 0.3s ease,
    text-decoration 0.3s ease;
}

.btn-tutorial::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 2px;
  background-color: #faf5f0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-tutorial:hover {
  letter-spacing: 1px;
}

.btn-tutorial:hover::after {
  opacity: 1;
}

.wrapper-todos-tutoriais {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.wrapper-todos-tutoriais img {
  width: 20px;
  height: 15px;
}

.carousel-link {
 text-decoration: none;
 color: #fff;
 width: 1500px;
}




/** banners **/

.banners-promo {
  margin-top: 152px;
  margin-bottom: 152px;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 24px;
}

.banners-promo > article {
  display: flex;
  width: 540px;
  height: 280px;
  background-color: #faf5f0;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.banners-promo > article > h2 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 64px;
  font-weight: 500;
  color: #0f0f23;
}

/** betano no youtube **/
#title-youtube {
  display: flex;
  align-self: flex-start;
  margin-bottom: 48px;
}

#video-text {
  font-size: 32px;
  font-family: "MdNichrome-Regular", sans-serif;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
}

.owl-video-wrapper {
  border-radius: 8px;
}

.owl-carousel .owl-video-tn {
  background-size: cover !important;
  border-radius: 8px !important;
}

.owl-carousel .item-video {
  height: 424px !important;
}

.owl-carousel .owl-dots {
  display: block !important;
}

.owl-nav-and-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 152px;
}

.owl-nav {
  display: flex;
  gap: 10px;
}

.owl-dots {
  display: flex !important;
  gap: 16px;
}

.owl-prev,
.owl-next {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  color: #0f0f23;
  border: none;
}

.owl-prev svg {
  transform: rotate(180deg);
}

.owl-dots button {
  width: 48px;
  height: 4px;
  border: none;
  background: #faf5f0;
}

.owl-dots .active {
  background: #0f0f23;
}

/* artigos **/
.artigos {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #0f0f23;
  position: relative;
  width: 100%;
  padding-bottom: 152px;
}

.select-artigos {
  position: relative;
  width: 100%;
  margin: 24px 0px 24px;
}

.custom-select {
  appearance: none;
  background-color: #f8f4ef;
  border: 1px solid #ddd;
  padding: 14px 24px;
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #646469;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
}

.select-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}


.select-artigos.open .select-arrow,
.select-comments.open .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select option {
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 22px;
  background-color: #f8f4ef;
  color: #646469;
  padding: 8px;
  border: none;
  border-radius: 0;
}

.wrapper-artigos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  margin: 152px 168px 0px 168px;
}

.border-horizontal {
  position: absolute;
  width: 100%;
  height: 1px;
  border: 1px solid #1e1e37;
  left: 0;
  top: 300px;
}

.wrapper-artigos a {
  font-family: "MdNichrome-Regular", sans-serif;
  color: #ff3c00;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.top-artigos a:hover {
  border-bottom: 2px solid #ff3c00; 
}

.top-artigos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.top-artigos a {
  font-size: 16px;
  line-height: 22px;
}

.menu-artigos {
  position: relative;
  margin: 24px 0px 32px 0px;
  display: flex;
  list-style: none;
  padding: 0;
}

.menu-artigos li {
  position: relative;
  padding: 16px 48px;
}

.menu-artigos a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff3c00;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-artigos a:hover::after {
  opacity: 1;
}

.menu-artigos a {
  font-size: 18px;
  line-height: 24px;
}

.owl-carousel-artigo .owl-item img {
  height: 140px;
  object-fit: inherit;
}

#postsCarouselAlternate + .owl-nav-and-dots .owl-dots button {
  background: #1E1E37 !important;
}

#postsCarouselAlternate + .owl-nav-and-dots .owl-dots .owl-dot.active,
.owl-carousel-artigo + .owl-nav-and-dots .owl-dots .owl-dot.active,
.owl-carousel-artigo-mobile + .owl-nav-and-dots .owl-dots .owl-dot.active {
  background: #ff3c00 !important;
}

.owl-carousel-artigo + .owl-nav-and-dots {
  margin-bottom: 0 !important;
}

.card {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.card .card-body {
  padding: 0;
  margin: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-img-wrapper {
  position: relative;
  height: 140px;
}

.card-img-wrapper .badge {
  position: absolute;
  top: 80%;
  left: 5%;
  z-index: 10;
  background: #ebebeb !important;
  color: #ff3c00;
  border-radius: 0px;
  font-size: 10px;
  max-width: 40%;
  font-family: "MdNichrome-Regular", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 10px;
  width: 50px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-top {
  border-radius: 0px;
  object-fit: cover;
}

.card-title {
  display: flex;
  font-family: "MdNichrome", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  height: 80px;
  margin-top: 16px;
  margin-bottom: 8px;
  overflow: hidden;
}

.card-text {
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  height: 72px;
}

.artigos .btn {
  font-family: "Haffer", sans-serif;
  font-weight: 600;
  background-color: #ff3c00;
  color: #faf5f0;
  border-radius: 0px;
  width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artigos .btn:hover {
  background-color: transparent;
  color: #ff3c00;
  border: 2px solid #ff3c00;
}

/* footer sponsors */

#sponsorCarousel {
  display: flex !important;
  align-items: center;
}

.sponsors {
  width: 100%;
  background-color: #1e1e37;
  height: 148px;
  
}

#sponsorCarousel .owl-carousel .owl-stage-outer {
  position: static !important;
}

#sponsorCarousel .owl-nav {
  position: absolute;
  top: 0;
  width: calc(100% - 180px);
  left: 0px;
  transform: translateY(-50%);
  pointer-events: none;
}

#sponsorCarousel .owl-prev,
#sponsorCarousel .owl-next {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 192px;
  height: 148px;
  color: white;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

#sponsorCarousel .owl-prev {
  left: -30px;
  transform: translateX(0);
  background: linear-gradient(
    to right,
    #1e1e37,
    rgba(30, 30, 55, 0.8),
    rgba(30, 30, 55, 0)
  );
}

#sponsorCarousel .owl-next {
  right: 100px;
  transform: translateX(0);
  background: linear-gradient(
    to left,
    #1e1e37,
    rgba(30, 30, 55, 0.8),
    rgba(30, 30, 55, 0)
  );
}

@media (max-width: 1449px) {
  #sponsorCarousel .owl-next {
    right: -100px;
  }
 
}


#sponsorCarousel .owl-prev svg,
#sponsorCarousel .owl-next svg {
  stroke: #faf5f0;
}

#sponsorCarousel .owl-prev.disabled,
#sponsorCarousel .owl-next.disabled {
  display: none;
}

.wrapper-sponsors {
  margin-right: 168px;
  margin-left: 168px;
  height: 148px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.wrapper-text-sponsors {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 26px;
  margin-bottom: 26px;
  margin-right: 24px;
}


@media (min-width: 1450px) {
  .wrapper-text-sponsors {
    padding-left: 164px;
  }
}

.wrapper-text-sponsors h3 {
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  height: 44px;
  width: 132px;
  margin-bottom: 8px !important;
}

.wrapper-text-sponsors p {
  font-family: "Haffer", sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  width: 132px;
  height: 44px;
}

.owl-carousel-sponsors .owl-item {
  height: 116px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-carousel-sponsors .owl-item > * {
  width: 88px;
  height: 116px;
  object-fit: cover;
  display: flex;
  align-items: center;
}

.owl-carousel-sponsors .owl-item img {
 width: 100%;
  
}

/** nav footer **/

#footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wrapper-nav-footer {
  background-color: #0f0f23;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 91px 168px 0;
}

.termos {
  display: flex;
  justify-content: space-between;
  margin-top: 73px;
  border-top: 1px solid #1e1e37;
  height: 35px;
  align-items: flex-end;
  margin-bottom: 17px;
}

.termos p,
.termos a {
  font-family: "Haffer", sans-serif;
  font-size: 12px !important;
  line-height: 20px;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none;
  color: #faf5f0;
}

.termos a img {
  margin-right: 8px;
}

.nav-footer {
  display: flex;
  justify-content: center;
}

.nav-footer h3 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  line-height: 34px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  width: 352px;
}

.newsletter .title-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter .title-newsletter > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

#form-newsletter {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#form-newsletter > div > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 8px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-wrapper label {
  font-family: "Haffer", sans-serif;
  line-height: 22px;
  font-weight: 400;
}

.input {
  width: 100%;
  height: 50px;
  background-color: #faf5f0;
  border: none;
  color: #0f0f23;
  padding: 14px 24px;
}

.input::placeholder {
  color: #d7d7dc;
  opacity: 1;
  font: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Haffer", sans-serif;
}

#form-newsletter .btn {
  width: 237px;
  height: 50px;
  color: #faf5f0;
  background-color: #ff3c00;
  border-radius: 0px;
  font-family: "Haffer", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

#form-newsletter .btn:hover {
  color: #ff3c00;
  background-color: transparent;
  border: 2px solid #ff3c00;
}

.nav-footer-right-side {
  display: flex;
  flex-direction: column;
  margin-left: 168px;
}

.wrapper-noticias-betano {
  display: flex;
}

.noticias {
  display: flex;
  flex-direction: column;
  width: 258px;

  gap: 16px;
}

.nav-footer ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-footer ul li a img {
  margin-right: 8px;
}

.nav-footer ul li a .arrow-icon {
  margin-right: 8px;
  transition: stroke 0.3s ease; /* Transição suave para a mudança de cor */
}

.nav-footer ul li a:hover .arrow-icon path {
  stroke: #ff3c00; /* Muda a cor da seta para #ff3c00 no hover */
}

.nav-footer a {
  display: flex;
  align-items: center;
  color: #faf5f0;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Haffer", sans-serif;
}

.nav-footer a:hover {
  color: #ff3c00;
}

.mais-betano {
  display: flex;
  flex-direction: column;
  width: 248px;
  margin-left: 24px;
  gap: 16px;
}

.wrapper-social-button {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-end;
}

.social-button {
  width: 50px !important;
  height: 50px;
  background-color: #ff3c00;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.social-button:hover {
  background-color: transparent;
  border: 2px solid #ff3c00;
}

.social-button img {
  display: flex;
  align-items: center;
}

/** Checkbox estilizado **/

.checkbox-wrapper .wpcf7-list-item {
  margin: 0 !important;
}

/* Remove native styles */
.checkbox-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Square box styling */
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}

/* Checkmark style when checked */
.checkbox-wrapper input[type="checkbox"]:checked {
  background-color: white; /* background stays white */
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid orange;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.checkbox-wrapper span {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-family: "Haffer", sans-serif;
  position: relative;
}

.checkbox-wrapper span.wpcf7-not-valid-tip {
  color: transparent; /* Hide text */
  position: relative;
  width: 10px;
  height: 0;
}

.checkbox-wrapper span.wpcf7-not-valid-tip::before {
  content: "*";
  color: red;
  position: absolute;
  right: 0;
  top: 0;
}


.checkbox-wrapper input[type="checkbox"]:checked + label::before {
  background-color: #ffffff;
}

.checkbox-wrapper .check-icon {
  display: none;
  position: absolute;
  left: 5px;
  height: 23px;
}

.checkbox-wrapper input[type="checkbox"]:checked + label .check-icon {
  display: block;
}

.alert-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e37;
  height: 68px;
}

.alert-footer p {
  font-family: "Haffer", sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  font-weight: 400;
  color: #fff;
  padding: 0 !important;
  margin: 0 !important;
}





@media (min-width: 1466px) {
  .tutoriais {
    align-items: center;
  }
}

/* Responsividade para  1465*/
@media (max-width: 1465px) {
  #postsCarousel .owl-stage-outer,
  #wrapper-tutoriais .owl-stage-outer {
    display: block;
  }
}

@media (max-width: 1400px) {
  #postsCarouselAlternate .owl-stage-outer {
    display: block;
  }
}

@media (max-width: 1399px) {
  #postsCarouselAlternate .owl-stage-outer {
    display: block;
  }
}


/* Responsividade para  1390*/
@media (max-width: 1390px) {
  .wrapper-content {
    margin-left: 32px;
    margin-right: 32px;
  }
}



@media (max-width:1400px) {
  #postsCarouselAlternate article {
    width: 315px;
  }
}


/* Responsividade para  1024*/

@media (max-width: 1110px) {
  .wrapper-header {
    gap: 40px;
  }

  .wrapper-content {
    margin-left: 16px;
    margin-right: 16px;
  }

  .posts {
    gap: 4px;
    width: 80%;
  }

  #postsCarousel article,
  #wrapper-tutoriais article {
    width: 315px;
  }

  .posts article {
    transform: scale(0.9);
    transform-origin: center;
    justify-content: flex-start;
  }

  .posts article img {
    transform: scale(0.95);
  }

  .post article h1 {
    margin-left: 5px;
  }

  .wrapper-crie-conta {
    padding: 32px 0 32px 40px;
    width: 100%;
  }

  .body-crie-conta > p {
    font-size: 16px;
  }

  .wrapper-img-crie-conta {
    margin-left: 20px;
  }

  .wrapper-tutoriais {
    gap: 14px;
  }

  .content-tutoriais {
    margin-left: 10px;
    padding: 16px;
  }

  .content-tutoriais > h2 {
    font-size: 32px;
    line-height: 34px;
  }

  .banners-promo {
    transform: scale(0.9);
    transform-origin: center;
  }

  #sponsorCarousel .owl-next {
    right: -100px;
    transform: translateX(0);
    background: linear-gradient(
      to left,
      #1e1e37,
      rgba(30, 30, 55, 0.8),
      rgba(30, 30, 55, 0)
    );
  }

  .card-img-wrapper {
    padding-bottom: 10px;
  }

  .noticias {
    margin-right: 50px;
  }
}

/* Responsividade mobile */
@media (max-width: 960px) {
  .tutoriais h1,
  h1 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0.8px;
    margin: 0;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: flex !important;
  }

  #customSlider .carousel-item::before {
    background: radial-gradient(
        circle at bottom left,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 0) 70%
      ),
      linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  }
  #header {
    padding-top: 24px;
    justify-content: flex-start;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0.3) 60%,
      rgba(255, 0, 0, 0) 100%
    );
  }

  .wrapper-header {
    gap: 18px;
    margin: 0px 0px 0px 16px;
  }

  #customSlider .carousel-caption {
    top: 63%;
    height: 285px;
  }

  .carousel-caption {
    left: 16px;
  }

  #customSlider .carousel-indicators {
    top: 555px;
    margin-left: 16px !important;
  }

  #customSlider .carousel-caption h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 40px;
    max-width: calc(100vw - 20px);
    height: 200px;
    margin: 0;
  }

  #menu-toggle {
    display: block;
  }

  #postsCarousel article, #postsCarouselAlternate article {
    width: 280px;
  }

  #wrapper-tutoriais article {
    width: 280px;
  }

  #postsCarousel h1, #postsCarouselAlternate h1 {
    font-size: 24px;
    line-height: 28px;
  }

  #postsCarousel p, #postsCarouselAlternate p {
    font-size: 14px;
    line-height: 22px;
  }

  .crie-conta {
    height: auto;
  }

  .wrapper-crie-conta {
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0px;
    height: 100%;
    margin: 0px;
    flex-direction: column;
  }

  #clube-betano-logo {
    width: 200px;
  }

  .body-crie-conta {
    margin-right: 0px;
    padding: 15px;
    flex-direction: column;
  }

  #aviso { 
    transform: rotate(90deg);
    height: 100px;
  }


  .abra-conta {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-top: 15px;

  }

  .wrapper-crie-conta h2 {
    margin: 0;
    font-size: 32px;
    line-height: 34px;
    font-weight: 500;
  }

  .wrapper-crie-conta p {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 24px;
  }

  .banners-promo {
    flex-direction: column;
    margin-top: 0px;
    align-items: center;
  }

  .banners-promo > article {
    width: 328px;
    height: 240px;
  }

  .tutoriais {
    width: 100%;
  }

  .wrapper-todos-tutoriais {
    justify-content: center;
    align-items: center;
    margin-top: 16px;
  }

  #title-youtube {
    font-size: 42px;
    margin-bottom: 24px;
  }

  #video-text {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
  }

  .owl-carousel .owl-video-wrapper {
    height: 235px;
  }
  .owl-carousel .item-video {
    height: 235px !important;
  }

  #nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .wrapper-artigos {
    margin: 152px 0px 0px 0px;
    padding: 0px 16px 0px 16px;
  }

  .wrapper-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .card-img-top {
    width: 120px !important;
    height: 210px !important;
  }

  .card .card-body {
    height: 210px;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    margin: 0px 0px;
    height: auto;
  }

  .card-text {
    font-size: 14px;
    line-height: 22px;
    margin: 0px;
  }

  .card-img-wrapper .badge {
    top: 130%;
  }

  .artigos {
    padding-bottom: 72px;
  }

  .menu-artigos {
    display: none;
  }

  .top-artigos h1 {
    font-size: 24px;
    line-height: 28px;
  }

  .top-artigos a {
    font-size: 16px;
    line-height: 22px;
  }

  .card {
    display: flex;
    flex-direction: row;
    height: 210px;
  }

  .owl-carousel-artigo-mobile + .owl-nav-and-dots {
    margin-bottom: 0px !important;
  }

  .wrapper-sponsors {
    margin: 0;
  }

  .wrapper-text-sponsors {
    padding-left: 16px;
  }

  #sponsorCarousel .owl-prev {
    left: -105px;
    background: none;
  }

  #sponsorCarousel .owl-next {
    right: -40px;
  }

  .border-horizontal {
    display: none;
  }

  .nav-footer {
    flex-direction: column;
  }

  .nav-footer-right-side {
    margin-top: 48px;
    margin-left: 16px;
  }

  .wrapper-nav-footer {
    padding: 91px 16px 0;
  }

  .newsletter {
    width: 328px;
  }

  .wrapper-social-button {
    justify-content: flex-start;
    margin-top: 48px;
  }

  .noticias {
    width: 156px;
  }

  .nav-footer h3 {
    font-size: 24px;
  }

  .input {
    width: 328px;
  }

  .checkbox-wrapper label {
    font-size: 14px;
  }

  .nav-footer p {
    font-size: 16px;
  }

  .termos {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 16px;
    height: auto;
    margin-bottom: 0;
  }
}


@media(max-width: 400px) {

  #sponsorCarousel .owl-next {
    right: -80px;
  }
}
 

/* mobile menu */

/* Botão hamburguer */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  background-color: #1e1e37;
  width: 100%;
  height: 600px;
  padding-top: 24px;
  background-image: url("../images/background-mobile.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.wrapper-logo-mobile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0px 0px 32px 16px;
}

.search-form-mobile {
  width: 312px;
  border: 1px solid #faf5f0;
  height: 50px;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 151px;
  margin-left: 24px;
}

.search-input-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  color: #faf5f0;
  width: 240px;
  height: 22px;
  overflow: hidden;
  opacity: 1;
  margin: 0;
  border: none !important;
}

.search-input-mobile:focus {
  outline: none;
}

.search-input-mobile::placeholder {
  color: #faf5f0;
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  opacity: 1;
}

.search-toggle-mobile {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 2;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
}

.mobile-menu-list li {
  padding: 16px 0px;
  border-bottom: 1px solid #1e1e37;
  width: 312px;
}

.mobile-menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-family: "MdNichrome-Regular", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.mobile-menu-list li:last-child {
  border-bottom: none;
}

.arrow-icon-mobile {
  width: 10px;
  height: 12px;
  stroke: #faf5f0;
  margin: 6px 9px;
}

.close-button {
  display: flex;
}

@media (min-width: 425px) {
  .mobile-menu {
    background-image: none;
  }
}

/* Tela de resposta de busca */
.site-content-search {
    background-color: #faf5f0 !important;
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;
}

.wrapper-content-search {
    margin: 64px 168px 0; /* Aumenta o margin-top para 64px */
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.wrapper-header-search {
    margin: 0 168px;
    max-width: 1110px;
    width: 100%;
    box-sizing: border-box;
}

.page-header {
    background-color: #ff3c00;
    height: 272px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.page-title {
    text-transform: uppercase;
    font-family: "MdNichrome";
    font-size: 56px;
    font-weight: 500;
    line-height: 64px;
    margin-left: 0;
    margin-bottom: 32px;
    width: 100%;
    max-width: 1110px;
    box-sizing: border-box;
}

.form-page-search {
    width: 100%;
    max-width: 916px;
    height: 56px;
    display: flex; 
    background-color: #faf5f0;
    margin-top: 80px; /* Aumenta o margin-top para 80px */
    gap: 24px;
}

.page-search-input {
    flex: 1;
    border: none; 
    padding: 0 16px; 
    font-size: 16px;
    background-color: #faf5f0;
    outline: none; 
    border: 1px solid #646469;
    color: #646469;
    font-family: "Haffer", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.page-search-input::placeholder {
    color: #646469; 
}

.button-page-search {
    font-family: "Haffer", sans-serif;
    font-weight: 600;
    background-color: #ff3c00;
    color: #faf5f0;
    font-size: 16px;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.1s ease;
    align-self: center;
}

.button-page-search:hover {
    background-color: transparent;
    color: #ff3c00;
    border: 2px solid #ff3c00;
}

#btn-form-search {
    width: 162px;
    height: 50px;
}

.search-results-count {
    font-family: "Haffer", sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #0f0f23;
    margin-bottom: 48px;
}

.articles-title {
    font-family: "MdNichrome", sans-serif;
    font-size: 32px;
    line-height: 34px;
    text-transform: uppercase;
    color: #0f0f23;
    margin-bottom: 24px;
}

/* Estilo para cada item de busca */
.custom-search-item {
    background-color: #faf5f0;
    margin-bottom: 24px;
    width: 100%;
    max-width: 1110px;
    height: 182px;
    box-sizing: border-box;
}

/* Wrapper para alinhar imagem e conteúdo */
.custom-search-wrapper {
    display: flex;
    align-items: stretch;
    gap: 26px;
    height: 100%;
}

/* Estilo da imagem */
.custom-search-image {
    position: relative;
    flex: 0 0 258px;
    height: 182px;
}

.custom-search-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

/* Estilo da categoria */
.custom-search-category {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: #EBEBEB;
    color: #FF3C00;
    padding: 4px 8px;
    font-family: "MdNichrome", sans-serif;
    font-weight: 500;
    font-size: 10px; 
    text-transform: uppercase;
    letter-spacing: 0.2px;
}


/* Estilo do conteúdo à direita */
.custom-search-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Estilo do cabeçalho */
.custom-search-header {
    margin: 0;
}

/* Estilo do título */
.custom-search-title {
    margin: 0;
}

.custom-search-title a {
    font-family: "MdNichrome", sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #0F0F23;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 34px;
}

/* Estilo do resumo */
.custom-search-summary {
    font-family: "Haffer", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #0f0f23;
    line-height: 22px;
    margin: 8px 0;
}

/* Remove margens extras do parágrafo do resumo */
.custom-search-summary p {
    margin: 0;
}

/* Wrapper para o botão "Leia Mais" */
.custom-search-read-more-wrapper {
    display: flex;
    justify-content: flex-start; 
}

/* Estilo do botão "Leia Mais" */
.custom-search-read-more {
    background-color: #ff3c00;
    color: #faf5f0;
    padding: 8px 16px;
    font-family: "Haffer", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 140px;
    height: 50px;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-search-read-more:hover {
    background-color: transparent;
    color: #ff3c00;
    border: 2px solid #ff3c00;
}

/* Estilo da paginação */
.pagination {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 32px 0 0 0;
    width: 100%;
    max-width: 1110px;
    box-sizing: border-box;
}

.pagination li {
    margin-right: 16px;
}

.pagination li a {
    font-family: "Haffer", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #646469;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.pagination li a:hover {
    color: #ff3c00;
    border-bottom-color: #ff3c00;
}

.pagination li.active a {
    color: #ff3c00;
    border-bottom: 2px solid #ff3c00;
}

/* Estilo para os links "Next" e "»" */
.pagination li a[href*="Next"],
.pagination li a[href*="»"] {
    font-weight: 400;
    padding: 4px 0;
}

/* Estilo da seção de patrocinadores */
.page-search-sponsors {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 152px;
    margin-bottom: 152px;
    gap:24px;
    box-sizing: border-box;
}

.page-search-sponsors img {
    width: 100%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    object-position: center;
}


@media (max-width:1250px) {
  .wrapper-content-search,
    .wrapper-header-search {
        margin: 64px 16px 0; 
        max-width: 992px; 
    }


    .custom-search-title a {
      font-size: 24px;
  }
}


@media (max-width: 1150px) {
  .page-search-sponsors {
    margin: 152px 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.page-search-sponsors img {
    width: 300px;
    height: 250px;
}
}


/* Media Queries para telas de 1024px ou menores */
@media (max-width: 1110px) {
   

    .page-title {
        margin-left: 0;
        padding-left: 16px;
        font-size: 48px;
        line-height: 56px;
    }

    .form-page-search {
        margin: 80px 16px 0;
    }

    .custom-search-title a {
      font-family: "MdNichrome", sans-serif;
      font-weight: 500;
      font-size: 26px;
      color: #0F0F23;
      text-decoration: none;
      text-transform: uppercase;
      line-height: 28px;
  }

  .custom-search-summary {
    font-family: "Haffer", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0f0f23;
    line-height: 18px;
    margin: 8px 0;
}

   

    .custom-search-item {
        max-width: 100%;
    }

    .pagination {
        max-width: 100%;
        padding: 0 16px;
    }
}


@media (max-width: 768px) {
  .page-header {
      height: 200px;
  }

  .page-title {
      font-size: 32px;
      line-height: 40px;
      padding-left: 16px;
      margin-bottom: 24px;
  }

  .form-page-search {
      margin: 48px 16px 0;
      height: 100%;
      width: 100%;
      gap: 16px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      
  }

  .page-search-input {
      font-size: 14px;
      padding: 16px;
      width: 328px;
      height: 50px;
  }

  #btn-form-search {
      width: 328px;
      height: 50px;
      font-size: 18px;
  }

  .wrapper-content-search {
      margin: 32px 16px 0;
      padding: 16px;
  }

  .search-results-count {
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 32px;
  }

  .articles-title {
      font-size: 24px;
      line-height: 28px;
      margin-bottom: 16px;
  }

  .custom-search-item {
      background-color: #faf5f0;
      margin-bottom: 16px;
      width: 100%;
      height: auto; 
      box-sizing: border-box;
  }

  .custom-search-wrapper {
      flex-direction: row; 
      gap: 12px; 
      align-items: flex-start; 
  }

  .custom-search-image {
      flex: 0 0 120px; 
      width:  112px;
      height: 226px; 
      position: relative;
  }

  .custom-search-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }

  .custom-search-category {
      position: absolute;
      bottom: 8px;
      left: 8px;
      padding: 4px 8px;
      font-size: 8px;
      text-transform: uppercase;
  }

  .custom-search-content {
      flex: 1; 
      padding: 0px; 
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 226px;
      gap: 6px; 
  }

  .custom-search-title a {
      font-family: "MdNichrome", sans-serif;
      font-weight: 500;
      font-size: 20px; 
      color: #0F0F23;
      text-decoration: none;
      text-transform: uppercase;
      line-height: 26px;
  }

  .custom-search-title a:hover {
      color: #ff3c00;
  }

  .custom-search-summary {
      font-family: "Haffer", sans-serif;
      font-weight: 400;
      font-size: 14px; /* Reduz o tamanho da fonte */
      color: #0f0f23;
      line-height: 22px;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  

  .pagination {
      padding: 0 16px;
      margin-top: 24px;
  }

  .pagination li {
      margin-right: 12px;
  }

  .pagination li a {
      font-size: 12px;
      padding: 2px 0;
  }

  .page-search-sponsors {
      margin: 80px 0px;
      gap: 16px;
  }

  .page-search-sponsors img {
    width: 300px;
    height: 250px;
    object-fit: fill;
  }
}



























/* PAGINA DA CATEGORIA */

/* PAGINA DA CATEGORIA */

/* Estilo geral da página */
.site-content {
  background-color: #faf5f0;
  padding: 64px 0;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}



/* Título da Categoria */
.page-title {
  font-family: "Haffer", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ff3c00;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}

#img-campo {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}

.banner-category {
  position: relative;
  width: 100%;
  height: 336px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.banner-category__wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.banner-category__content {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

@media (max-width: 1250px) {
  .banner-category__wrapper {
    padding-left: 16px;
  }
}

.banner-category__content h1 {
  font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  font-size: 56px;
  color: #faf5f0;
  line-height: 64px;
  height: 72px;
}

.banner-category__content h2 {
  font-family: "Haffer", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #faf5f0;
  line-height: 26px;
  height: 52px;
  width: 407px
}

/* Seção de 2 Posts Grandes */
.featured-posts {
  margin-bottom: 48px;
}

.featured-posts__wrapper {
  display: flex;
  gap: 32px;
}

.featured-post__item {
  flex: 1;
  margin-bottom: 126px;
}

.featured-post__image img {
  width: 100%;
  height: 336px;
  object-fit: cover;
}

.featured-post__content {
  display: flex;
  height: 252px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 24px;
}

.featured-post__title {
  font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #0f0f23;
  line-height: 40px;
  margin-bottom: 8px;
  display: flex;
  text-transform: uppercase;
}

.featured-post__title a {
  color: #0f0f23;
  text-decoration: none;
  align-content: center;
}

.featured-post__title a:hover {
  color: #ff3c00;
}

.featured-post__excerpt {
  font-family: "Haffer", sans-serif;
  font-size: 14px;
  color: #646469;
  line-height: 20px;
  margin-bottom: 24px;
}

/* Banner do Brasileirão */
.banner {
  margin-bottom: 112px;
}

.banner__wrapper {
  text-align: center;
}

.banner__wrapper img {
  width: 100%;
  max-width: 1110px;
  height: auto;
}

/* Seção de 6 Posts em Duas Colunas */
.grid-posts {
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
}

.grid-posts__wrapper {
  display: flex;
  gap: 24px; 
  margin-top: 122px;
}

.grid-posts__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px; 
}

.grid-posts__column .custom-search-item {
  overflow: hidden;
  max-width: 100%;
}

/* Ajustes específicos para os elementos do content-search.php dentro de grid-posts */
.grid-posts__column .custom-search-wrapper {
  display: flex;
  align-items: stretch;
  gap: 12px; 
}

.grid-posts__column .custom-search-image {
  position: relative;
  flex: 0 0 10px; 
}

.grid-posts__column .custom-search-image img {
  width: 156px;
  height: 177px;
  object-fit: cover;
  object-position: center;
}

.grid-posts__column .custom-search-category {
  position: absolute;
  bottom: 18px; 
  left: 6px;
  background-color: #EBEBEB;
  color: #FF3C00;
  padding: 3px 6px; 
  font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  font-size: 10px; 
  text-transform: uppercase;
  letter-spacing: 0.2px;

}

.grid-posts__column .custom-search-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 170px;
}

.grid-posts__column .custom-search-title {
  margin: 0;
  line-height: 22px;
}

.grid-posts__column .custom-search-title a {
  font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  font-size: 24px; 
  color: #0f0f23;
  text-decoration: none;
  text-transform: uppercase;
}

.grid-posts__column .custom-search-summary {
  font-family: "Haffer", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #0f0f23;
  line-height: 18px; 
  margin: 6px 0; 
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grid-posts__column .custom-search-summary p {
  margin: 0;
}

.grid-posts__column .custom-search-read-more-wrapper {
  display: flex;
  justify-content: flex-start;
}

.grid-posts__column .custom-search-read-more {
  background-color: #ff3c00;
  color: #faf5f0;
  padding: 6px 12px; /* Padding reduzido */
  font-family: "Haffer", sans-serif;
  font-weight: 600;
  font-size: 12px; /* Tamanho da fonte reduzido */
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: auto; /* Ajustado para ser mais compacto */
  height: 36px; /* Altura reduzida */
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-posts__column .custom-search-read-more:hover {
  background-color: transparent;
  color: #ff3c00;
  border: 2px solid #ff3c00;
}
.wrapper-see-more-nottices{
  display: flex;
  justify-content: center;
  margin-top: 62px;
  margin-bottom: 150px;
}

.see-more-notices {
  font-family: "Haffer", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  border: 2px solid #FF3C00;
  padding: 14px 98.5px;
  text-decoration: none;
  color: #FF3C00;
}

.see-more-notices:hover {
  box-shadow: inset 0 0 0 2px #FF3C00;
  transition: all 0.3s ease-in-out;
}


@media (max-width: 768px) {
  .see-more-notices{
    padding: 14px 80px;
  }
}

/* Botão "Leia Mais" (mantido para outras seções) */
.read-more {
  display: inline-block;
  font-family: "Haffer", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #faf5f0;
  background-color: #ff3c00;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #e03600;
}

/* Media Queries para telas menores */
@media (max-width: 1110px) {
 
  

  .page-title {
      font-size: 28px;
  }

}

@media (max-width: 768px) {

  .grid-posts__column .custom-search-wrapper {
    flex-direction: column;
    height: 390px;
}
  .site-content {
      padding: 32px 0;
  }

  .page-title {
      font-size: 24px;
  }

  .featured-post__content {
    height: auto;

  }

  .featured-post__title {
      font-size: 24px;
      line-height: 28px;
  }

  .featured-post__item {
    margin-bottom: 0px;
  }

  .grid-posts__column .custom-search-item {
    width: 156px;
    height: 397px;
  }

  .grid-posts__column .custom-search-title a {
      font-size: 18px;
      line-height: 20px;
  }

  .grid-posts__column .custom-search-summary {
      font-size: 12px;
      line-height: 16px;
  }

  .grid-posts__column .custom-search-read-more {
      font-size: 10px;
      padding: 4px 10px;
      height: 32px;
  }


  .banner-category__content h1 {
    font-family: "MdNichrome", sans-serif;
    font-size: 32px;
    line-height: 34px;
    height: 40px;
  }
  
  .banner-category__content h2 {
    font-size: 18px;
    line-height: 24px;
    height: 72px;
    width: 328px
  }

  .banner-category__wrapper {
    padding: 16px;
    margin: 0;
}
}


.owl-carousel-featured .featured-post__image img {
 
  object-fit: cover;
}



#featuredCarousel + .owl-nav-and-dots .owl-dot {
  background: #1E1E37; /* Laranja mais claro para os dots inativos */
}

#featuredCarousel + .owl-nav-and-dots .owl-dot.active {
  background: #ff3c00; /* Laranja mais escuro para o dot ativo */
}



.carousel-alternate-header {
  display: flex;
  align-items: center;
  margin-bottom: 27px;
  gap: 16px;
}

/* "LEIA TAMBÉM" */
.read-more-title {
  font-family: 'MDNichrome', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  text-transform: uppercase;
  color: #0F0F23;
  margin: 0;
}

/* "VEJA MAIS ARTIGOS" */
.see-more-link {
  font-family: 'MDNichrome', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  color: #FF3C00;
  text-decoration: none;
}

.see-more-link:hover {
  color: #E03600; /* Tom mais escuro de laranja ao passar o mouse */
}

/* Ajustes para mobile */
@media (max-width: 767px) {
  .carousel-alternate-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }

  .read-more-title {
      font-size: 24px;
      line-height: 28px;
  }

  .see-more-link {
      font-size: 14px;
      line-height: 20px;
  }
}














/* Estilo do artigo */
.entry-header {
  margin-bottom: 32px;
}



.entry-title {
  font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 64px;
  text-transform: uppercase;
  color: #0F0F23;
  margin-bottom: 16px;
}

.entry-meta {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy-link {
 display: flex;
}


.copy-link-button{
  background-color: #FF3C00;
  border: 2px solid #FF3C00;
  padding: 14px 32px;
  width: 161px;
  height: 50px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.copy-link-button p {
  font-family: "Haffer", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #faf5f0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.copy-link-button:hover {
 
  border-color: #FF3C00; 
  background: transparent; 
}

.copy-link-button:hover p {
  color: #FF3C00; 
}



.share-buttons{
  display: flex;
  gap: 16px;
}


.social-icon {
  width: 20px;
  height: 20px;
  stroke: #fff; 
  fill: #fff; 
  transition: all 0.3s ease; 
}

/* Hover */
.social-button:hover {
  border-color: #FF6200; 
  background: transparent; 
}

.social-button:hover .social-icon {
  stroke: #FF3C00; 
  fill: #FF3C00; 
}


.copy-link-button.copied p {
  font-size: 13px;
}


@media (max-width: 768px) {
  .entry-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.entry-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.entry-meta li {
  font-family: "Haffer", sans-serif;
  font-size: 14px;
  color: #646469;
  display: flex;
  align-items: center;
  gap: 8px;
}

.entry-meta li i {
  color: #FF3C00;
}

.entry-meta li a {
  color: #646469;
  text-decoration: none;
}

.entry-meta li a:hover {
  color: #FF3C00;
}

.entry-summary {
  margin-bottom: 32px;
}

.entry-summary p {
  font-family: "Haffer", sans-serif;
  font-weight: 400; 
  font-size: 18px; 
  line-height: 24px; 
  letter-spacing: 0%; 
  color: #0F0F23;
  margin: 0;
}

/* Estilo dos links no resumo */
.entry-summary .summary-link {
  font-family: "Haffer", sans-serif;
  color: #0F0F23; 
  text-decoration: underline; 
  font-weight: 700;
}


.entry-summary .summary-bold {
  font-weight: 700; 
  color: #0F0F23; 
  font-family: "Haffer", sans-serif; 
}

.entry-thumbnail {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.entry-content {
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #0F0F23 !important;
  width: 880px;
}

.entry-content p, 
.entry-content p strong, 
.entry-content a {
    margin-bottom: 16px;
    color: #0F0F23; 
    font-family: "Haffer", sans-serif;
    line-height: 22px;
}


.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  margin: 16px 0;
}




.entry-content h2,
.entry-content h2 strong,
.entry-content h3,
.entry-content h3 strong,
.entry-content h4,
.entry-content h4 strong {
  font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  color: #0F0F23;
  margin: 88px 0 16px;
  font-size: 24px;
  line-height: 28px;
}

.entry-content span {
  font-family: "Haffer", sans-serif;
  font-weight: 400;
  color: #0F0F23;
  margin-bottom: 16px;
}

.entry-content em {
  font-family: "Haffer", sans-serif;
  font-weight: 400;
  color: #0F0F23;
  margin-bottom: 16px;
}

.entry-content b {
  font-family: "Haffer", sans-serif;
  font-weight: 700;
  color: #0F0F23;
}

.entry-content li,
.entry-content ul{
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #0F0F23;
  margin-bottom: 16px;
}

.entry-content li strong,
.entry-content ul strong {
  font-family: "Haffer", sans-serif;
  font-weight: 700;
  color: #0F0F23;
}

.entry-tags {
  margin-top: 32px;
  font-family: "Haffer", sans-serif;
  font-size: 14px;
  color: #646469;
}

.entry-tags a {
  font-family: "Haffer", sans-serif;
  color: #0F0F23;
  text-decoration: none;

}

.entry-tags a:hover {
  text-decoration: underline;
}

.comments-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}

@media (max-width: 767px) {
  .entry-title {
      font-size: 28px;
      line-height: 36px;
  }

  .entry-meta li {
      font-size: 13px;
  }

  .entry-summary p {
      font-size: 16px; 
      line-height: 22px; 
  }

  .entry-content {
      font-size: 15px;
      line-height: 22px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: auto;
  }

  .entry-content h2 {
      font-size: 24px;
      line-height: 32px;
  }

  .entry-content h3 {
      font-size: 20px;
      line-height: 28px;
  }

  .entry-content h4 {
      font-size: 18px;
      line-height: 26px;
  }
}



.wrapper-content-article {
  margin: 168px 168px 0; 
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width:1250px) {
  .wrapper-content-article {
        margin: 168px 16px 0; 
        max-width: 992px; 
    }
}


@media (max-width: 768px) {
  .wrapper-content-article {
      margin-top: 104px;
      padding: 16px;
  }
}


.article-page { 
  background-color: #faf5f0 !important;
}


article.post {
  display: flex !important;
  justify-content: center !important;
}

.meta-info {
  display: flex;
  gap: 10px;
  align-items: center;
}


.category-tag {
  padding: 4px 8px;
  background-color: #FF3C00;
  color: #faf5f0;
  font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.author {
font-family: "MdNichrome", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #0F0F23;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}


.date {
  font-family: "MdNichrome", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: #1E1E37;
}

.entry-meta .wrapper-social-button {
  margin-top: 0;
 
}

.wrapper-meta-info{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wrapper-entry-content{
  display: flex;
  gap: 24px;
}

@media (max-width: 768px) {
  .wrapper-entry-content{
    flex-direction: column;
  }
  .entry-meta .wrapper-social-button {
    flex-direction: column;
  }
}


.banner-after-subtitle {
  margin-top: 42px;
  margin-bottom: 88px;
}















/* Cores definidas */
:root {
  --dark-blue: #1E1E37;
  --orange: #FF3C00;
  --cream: #FAF5F0;
}

/* Estilo para a seção de comentários */
.custom-comments-section {
  margin-top: 40px;
  background-color: var(--cream);
  padding: 20px;
}


@media  (max-width: 768px) {
  .custom-comments-section {
  padding: 0px;
  width: 328px;
  margin: 72px 0px 72px;
  }
  
}

/* Título principal do formulário de comentários */
.entry-content h3.comment-form-title {
  font-family: "MdNichrome", sans-serif;
  font-size: 32px;
  line-height: 34px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Container do formulário de comentário */
.comment-form-wrapper {
  margin-bottom: 54px;
}

/* Formulário de comentário */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--dark-blue);
  padding: 20px;
  border-radius: 0;
  color: white;
}

/* Grupos de campos do formulário */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

/* Labels dos campos */
.form-group label {
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #FAF5F0;
  margin-bottom: 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #D7D7DC; 
    font-family: "Haffer", sans-serif;
    font-size: 16px; 
    opacity: 0.7; 
}


/* Estilos dos inputs e textarea */
.form-group input,
.form-group textarea {
  font-family: "Haffer", sans-serif;
  padding: 12px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  background-color: #FAF5F0;
  color: #888;
}

/* Altura específica para o campo de comentário */
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Estilo do checkbox de consentimento */
.form-group.consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}

.form-group.consent input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-group.consent label {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin: 0;
}

/* Botão de enviar comentário */
.submit-comment-btn {
  background-color: var(--orange);
  font-family: "Haffer", sans-serif;
  color: #FAF5F0;
  border: none;
  padding: 14px 34px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 10px;
  letter-spacing: 0.1px;
}

@media (max-width: 768px) {
  .submit-comment-btn {
    width: 100%;
  }
}

.submit-comment-btn:hover {
  background-color: #e03600;
}

/* Título da seção de comentários existentes */
.comments-title {
  font-size: 32px !important;
  font-weight: 500 !important;
  line-height: 34px !important;
  text-transform: uppercase;
  margin: 0 0 20px !important;
}

/* Header da lista de comentários com opção de ordenação */
.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.select-comments {
  position: relative;
}



.select-comments .custom-select option {
  font-size: 14px; 
  color: #0F0F23; 
  padding: 10px; 
  line-height: 1.5; 
  width: 254px;
}

/* Seletor de ordenação */
.comments-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .comments-sort {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: flex-start;
  }


  .select-comments{
    width: 100%;
  }
  
}

.comments-sort label {
  font-size: 16px;
  font-family: "Haffer", sans-serif;
  color: #0F0F23;
  line-height: 22px;
  font-weight: 500;
  ;
}

.comments-sort select {
  font-family: "Haffer", sans-serif;
  padding: 13px 24px;
  border: 1px solid #646469;
  border-radius: 0;
  font-size: 16px;
  color: #646469;
  background-color: #FAF5F0;
  width: 254px;
  height: 50px;
}

/* Lista de comentários */
.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Linha separadora entre comentários */
.comments-list li {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

/* Informações do autor e data */
.comment-author-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.comment-author {
  font-family: "MdNichrome-Regular", sans-serif;
  font-weight: 400;
  color: var(--dark-blue);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

.comment-date {
  color: #999;
  font-size: 12px;
}

/* Conteúdo do comentário */
.comment-content {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

/* Botão de curtidas */

.comment-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Cor para o ícone de curtida (similar ao mostrado na imagem) */
.like-button {
  background-color: var(--orange);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.like-button i {
  margin:0;
}


.comment-likes {
  display: flex;
  align-items: center;
  background-color: var(--orange);
  color: white;
  width: fit-content;
  padding: 5px 10px;
}

.like-icon {
  margin-right: 5px;
  font-size: 14px;
}

.like-count {
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  margin: 0 !important;

}

/* Paginação */
.navigation.pagination {
  margin-top: 20px;
  text-align: center;
}

.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
  padding: 6px 10px;
  margin: 0 3px;
  color: var(--dark-blue);
}

.navigation.pagination .nav-links .current {
  background-color: var(--orange);
  color: white;
}

/* Estilo específico para o campo de autor do comentário */
#comment-author,
#comment-email {
  color: #646469;
}

/* Responsividade */
@media (max-width: 768px) {
  .comments-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  
  .comments-sort select {
    width: 100%;
  }
}

/* Estilo personalizado para a função de callback do comentário */
.comment-body {
  padding: 0;
}

/* Nome do autor do comentário e data */
.comment-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

/* Tag de data */
.comment-date-tag {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1E1E37;
}






/* Estilos para a seção de artigos relacionados */
.nav-articles {
  width: 258px;
  color: #0F0F23;
}

@media (max-width: 768px) {
  .nav-articles {
    width: auto;
  }
}

/* Título da seção */
.nav-articles-title {
  font-family: "MdNichrome-Regular", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 32px 0;
  position: relative;
  color: #0F0F23;
}



/* Container para os artigos */
.nav-articles-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

/* Estilo do item de artigo */
.related-article-item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  padding-bottom: 20px;
  border-bottom: 1px solid #D7D7DC;
}

.related-article-item:hover .related-article-title {
  text-decoration: underline;
}

/* Imagem em miniatura */
.related-article-thumbnail {
  width: 70px;
  height: 63px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Conteúdo do artigo */
.related-article-content {
  display: flex;
  justify-content: center;
  color: #0F0F23;
}

/* Título do artigo */
.related-article-title {
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
  color: #0F0F23;
}


