:root {
  --primary: "#1867C0";
  --secondary: "#5CBBF6";
  --grey: #666;
  --light-grey: #e9e9e9;
  --white: #fff;
  --black: #333;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #1867C0 #fff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb {
  background-color: #1867C0;
  border-radius: 10px;
  border: 3px solid #fff;
}

.linkDestaqueGrande {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;

  transition: all 300ms ease-in-out;
}

.linkDestaqueGrande:hover {
  text-decoration: underline;
  color: var(--black) !important;
}

/* ============================================ */

.campo-pesquisa {
  padding: 5px;
  width: 150px;
  height: 40px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.4);

  transition: all 600ms ease-in-out;
}

.campo-pesquisa input {
  width: 100%;
  font-size: 14px;
  color: #fff;
  border: none;
  outline: none;
  background-color: transparent;
}

.campo-pesquisa input:focus {
  color: var(--black);
}

.campo-pesquisa-active {
  width: 250px !important;
  background-color: #fff;
  color: var(--black);
}

/* Mobile */
@media (max-width: 600px) {
  .campo-pesquisa-active {
    width: 130px !important;
  }
}

/*
FORMATAÇÕES DA ÁREA NA INTEGRA DA HOME
*/
.na-integra-home {
  position: relative;
  background-color: var(--light-grey);
  width: 100vw;
  padding: 50px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-49.5vw + 50%);
}

/*
FORMATAÇÕES DO CARROSSEL DE VÍDEOS DA HOME
*/
.videos-home {
  position: relative;
  background-color: var(--light-grey);
  width: 100vw;
  padding: 50px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-49.5vw + 50%);
}

.carousel-video .v-slide-group__prev,
.carousel-video .v-slide-group__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-video .v-slide-group__prev:hover,
.carousel-video .v-slide-group__next:hover {
  color: var(--black);
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.carousel-video .v-slide-group__prev {
  left: 10px;
}

.carousel-video .v-slide-group__next {
  right: 10px;
}

/*
FORMATAÇÕES DO CARROSSEL DE DESTAQUES DO CADERNO
*/
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

/* ============================================ */

.x-logo {
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1153%) hue-rotate(190deg) brightness(100%) contrast(93%);
  transition: all 300ms ease-in-out;
}

.x-logo-white {
  filter: brightness(0) saturate(100%) invert(99%) sepia(6%) saturate(759%) hue-rotate(277deg) brightness(117%) contrast(100%);
  transition: all 300ms ease-in-out;
}

.x-logo-black {
  filter: brightness(0) saturate(100%) invert(0%) sepia(26%) saturate(4699%) hue-rotate(44deg) brightness(101%) contrast(99%);
  transition: all 300ms ease-in-out;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.italico {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.link-caderno-topo {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
}

.titulo-mais-noticias {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 900;
}

/*
FORMATAÇÕES DA PAGINACAO
*/
.paginacao-item {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

/*
FORMATAÇÕES DO POST GRANDE
*/
.post-grande {
  display: flex;
}

.post-grande.home {
  flex-direction: column;
}

.post-grande.caderno {
  flex-direction: row;
}

/*
FORMATAÇÕES ÁREA DE CADERNOS
*/
.barra-caderno-titulo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.barra-caderno-titulo .titulo {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}

/*
FORMATAÇÃO DA BARRA DE COMPARTILHAMENTO
*/
.socialbar-noticia {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
}

.socialbar-noticia .facebook,
.socialbar-noticia .whatsapp,
.socialbar-noticia .xtweeter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 300ms ease-in-out;

  background-color: var(--light-grey);

  padding: 10px 0 10px 0;
}

.socialbar-noticia .facebook {
  color: #3b5998;
}

.socialbar-noticia .facebook:hover {
  background-color: #3b5998;
  color: #fff;
}

.socialbar-noticia .whatsapp {
  color: #25d366;
}

.socialbar-noticia .whatsapp:hover {
  background-color: #25d366;
  color: #fff;
}

.socialbar-noticia .xtweeter {
  color: #fff;
  border: 4px solid transparent;
}

.socialbar-noticia .xtweeter:hover {
  background-color: #000;
}

.socialbar-noticia .xtweeter:hover .x-logo-black {
  filter: brightness(0) saturate(100%) invert(99%) sepia(6%) saturate(759%) hue-rotate(277deg) brightness(117%) contrast(100%);
}

/*
FORMATAÇÃO DE NOTÍCIAS
*/
.titulo-noticia {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 16px;
}

.bigode-noticia {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 16px;
}

.data-noticia {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.texto-noticia {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  margin-bottom: 16px;
  color: inherit;
}

.texto-noticia a {
  color: var(--primary) !important;
  text-decoration: underline;
  font-weight: 700;
}

.texto-noticia a:hover {
  color: var(--primary) !important;
}

.imgnoticia img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.imageme,
.imagemd {
  width: 350px;
  margin-bottom: 10px;
  cursor: pointer;
  margin: 10px;

  background-size: cover;
  background-position: center top;
}

.imageme {
  float: left;
  margin-left: 0;
}

.imagemd {
  float: right;
  margin-right: 0;
}

.imgnoticia .divImg {
  transition: all 300ms ease-in-out;
}

.imageme:hover .divImg,
.imagemd:hover .divImg {
  opacity: 0.7;
}

.imgnoticia .legenda,
.imgnoticia .credito {
  color: var(--grey);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: normal;
}

.imgnoticia .credito {
  color: var(--secondary);
  text-align: right;
}

.legenda-modal {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: var(--grey);
}


/*
SNACKBAR MOVIMENT
*/
.bouncy-slide-x-transition-enter-active,
.bouncy-slide-x-transition-leave-active,
.bouncy-slide-x-transition-move,
.bouncy-slide-x-reverse-transition-enter-active,
.bouncy-slide-x-reverse-transition-leave-active,
.bouncy-slide-x-reverse-transition-move {
  transition: transform, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bouncy-slide-x-transition-enter-from,
.bouncy-slide-x-transition-leave-to {
  opacity: 0;
  transform: translateX(-30%);
}

.bouncy-slide-x-reverse-transition-enter-from,
.bouncy-slide-x-reverse-transition-leave-to {
  opacity: 0;
  transform: translateX(30%);
}