/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

.javascript-required {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #111;
    text-align: center;

    padding: 30px;
}

.javascript-required > div {
    max-width: 500px;
}

.javascript-required h1 {
    margin-bottom: 10px;
}

.javascript-required p {
    color: #666;
}


body {
  color: var(--body-color);
  background: var(--body-bg);
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif /*var(--font-primary)*/;
}

.pages-section h1{
  font-size: 24px;
}

.pages-section h2{
  font-size: 20px;
}

.pages-section h3{
  font-size: 18px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#main {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# ADS Divs
--------------------------------------------------------------*/
.ads-left,
.ads-center{
  width: 100%;
  max-width: 800px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ads-left {
  max-height: 170px;
}

.ads-center {
  margin: auto;
  max-height: 100px;
}

.ads-left-footer{
  width: 100%;
  max-width: 350px;
  margin: 20px auto;
  padding: 10px;
  background: transparent;
  overflow: hidden;
  transition: all .3s ease;
}

.ads-left-footer img, .ads-center img, .ads-left img{
  width: 100%;
  height: auto;
  display: block;
}

/*--------------------------------------------------------------
Promo-Card Link section
--------------------------------------------------------------*/
.promo-card {
  position: relative;
  background: linear-gradient(135deg, #e8f5e9 0%, transparent 60%, transparent 100%);
  border: 1px solid #3fbb43;
  border-radius: 20px;
  padding: 2rem 2rem 2rem 2.25rem;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Círculos decorativos de fundo */
.promo-card::before,
.promo-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.promo-card::before {
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.35);
  top: -80px; right: 240px;
}
.promo-card::after {
  width: 180px; height: 180px;
  background: rgba(129,199,132,0.18);
  bottom: -60px; left: -40px;
}

/* ── Badge ── */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.promo-badge-dot {
  width: 20px; height: 20px;
  background: #3fbb43;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.7); }
}

/* ── Título ── */
.promo-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #1b3a1c;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

/* ── Descrição ── */
.promo-desc {
  font-size: 0.875rem;
  color: #4a6b4b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

/* ── Botão ── */
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3fbb43;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(46,125,50,0.35);
}
.promo-btn:hover {
  background: #227e28;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.45);
}
.promo-btn svg { transition: transform 0.2s; }
.promo-btn:hover svg { transform: translateX(3px); }

/* ── Coluna da imagem ── */
.promo-img-col {
  position: relative;
  z-index: 1;
}

/* Cartão da imagem com efeito de moldura */
.promo-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  aspect-ratio: 4/3;
}
.promo-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.promo-img-card:hover img { transform: scale(1.04); }

/* Chip de visualizações ao vivo */
.promo-viewers-chip {
  position: absolute;
  bottom: 14px; right: -8px;
  background: var(--f-default-color-primary);
  border-radius: 12px;
  padding: 20px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
}
.viewers-live-dot {
  width: 7px; height: 7px;
  background: #69f0ae;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .promo-card { padding: 1.5rem; border-radius: 16px; }
  .promo-rating-chip { right: 0; }
  .promo-desc { max-width: 100%; }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}

@media (max-width: 991.98px) {
  section {
    overflow: hidden;
  }
}

.section-title {
  margin-bottom: 45px;
}

.section-title .section-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(17, 71, 65, 0.12);
  position: relative;
}

.section-title::before,
.section-title::after {
  display: none;
}

.section-title-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.section-title .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--f-default-color-secondary);
}

.section-title h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--f-default-color-tertiary);
  letter-spacing: -0.3px;
}

.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--f-default-color-tertiary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s ease;
}

.section-link:hover {
  color: var(--f-default-color-secondary);
}

.section-link .arrow {
  transition: transform .2s ease;
}

.section-link:hover .arrow {
  transform: translateX(4px);
}

.section-title .section-title-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 2px;
  background: var(--f-default-color-secondary);
  opacity: 0.6;
  border-radius: 2px;
}

.sidebar-title {
  margin-bottom: 30px;
  padding: 8px 16px;
  position: relative;
  border: 1px solid rgba(17, 71, 65, 0.12);
  background: var(--f-default-color-tertiary);

}

.sidebar-title h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: var(--f-default-color-quaternary);
  letter-spacing: -0.3px;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--f-default-color-secondary);
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 10px;
  z-index: 99999;
  background: var(--f-default-color-tertiary);
  border: 1px solid var(--f-default-color-tertiary);
  border-bottom: none;
  width: 45px;
  height: 45px;
  border-radius: 7px;
  transition: all 0.4s;
  color: var(--f-default-color-secondary);
}

.scroll-top i {
  font-size: 24px;
  line-height: 0;
}

.scroll-top:hover {
  transition: 0.3s ease-in-out;
  color: var(--f-default-color-secondary);
  box-shadow: inset 0px 0px 20px var(--f-default-color-secondary);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
BTN Styles
--------------------------------------------------------------*/
.btn-more{
  border: 1px solid var(--f-default-color-tertiary);
  padding: 10px 20px;
  color: var(--f-default-color-tertiary);
  font-weight: 600;
  transition: 0.4s ease-in-out;
  border-radius: var(--btn-b-radius);
}

.btn-more:hover{
  transition: 0.3s ease-in-out;
  background: var(--f-default-color-tertiary);
  color: var(--f-default-color-secondary);
  box-shadow: inset 0px 0px 30px var(--f-default-color-tertiary);
}

.primary-btn{
  border: 1px solid var(--f-default-color-tertiary);
  padding: 15px 25px;
  background: var(--f-default-color-tertiary);
  color: var(--f-default-color-secondary);
  font-weight: 600;
  transition: 0.4s ease-in-out;
  border-radius: var(--btn-b-radius);
}

.primary-btn:hover{
  transition: 0.3s ease-in-out;
  color: var(--f-default-color-secondary);
  box-shadow: inset 0px 0px 20px var(--f-default-color-secondary);
}


/*--------------------------------------------------------------
# Page title
--------------------------------------------------------------*/
/* Form Input Fieldds */
.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--f-default-color-tertiary);
}

.btn:active,
.btn:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: var(--topbar-bg);
  font-size: 14px;
  transition: all 0.5s;
  padding: 0.75rem 0;
}

@media(max-width: 767px){
  .topbar{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.topbar a:hover {
  color: var(--color-secondary);
}

.topbar .social-links a {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  text-align: center;
  display: inline-block;
  background-color: rgba(var(--color-white-rgb), 0.2);
  border-radius: 50%;
  color: var(--color-white);
  line-height: 30px;
  text-decoration: none;
}

.topbar .social-links a:hover {
  color: var(--f-default-color-secondary);
}


.topbar .social-links span {
  padding-right: 15px;
  color: var(--color-white);
  border-right: 2px solid var(--f-default-color-secondary);
}

.topbar .btn-publicity{
  border: 1px solid var(--f-default-color-secondary);
  border-radius: var(--img-b-radius);
  padding: 5px 20px;
  color: var(--f-default-color-quaternary);
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.topbar .btn-publicity:hover{
  transition: 0.3s ease-in-out;
  color: var(--f-default-color-secondary);
  box-shadow: inset 0px 0px 10px var(--f-default-color-secondary);
}


.balao {
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer overlay */
.balao-inner {
  position: relative;
  z-index: 1;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--f-default-color-mix);
  margin-bottom: 22px;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--f-default-color-mix);
  animation: pulsar 2s ease-in-out infinite;
}

.frase {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--f-default-color-mix);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.frase .aspas {
  font-size: 56px;
  line-height: 0.6;
  vertical-align: -0.25em;
  color: var(--f-default-color-tertiary);
  font-style: normal;
  font-family: 'Playfair Display', Georgia, serif;
  margin-right: 4px;
  opacity: 0.7;
}

.divisor-autor {
  display: flex;
  align-items: center;
  gap: 5px;
}

.divisor {
  width: 52px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--f-default-color-tertiary), transparent);
}

.autor {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--f-default-color-mix);
  letter-spacing: 0.06em;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
  background: var(--header-bg);
  /* border-bottom: 1px solid rgba(var(--f-default-color-rgb-tertiary), 0.2); */
    box-shadow: 0px 10px 15px rgba(115, 115, 115, 0.1);
}

.header h1.logo a {
  font-size: 30px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: var(--f-default-color-tertiary);
}

.header img.logo {
  max-height: 35px;
}

.header h1.logo span {
  color: var(--f-default-color-secondary);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.sticked-header-offset {
  margin-top: 70px;
}

.search-btn-area .lupe-icon{
  color: var(--nav-color);
}

/*Area de pesquisa*/
.app-default-modal {
  background: rgb(var(--f-default-color-rgb-tertiary), 0.8);
  backdrop-filter: blur(16px);
}

.app-default-modal .modal-content {
  border: none;
  background-color: var(--f-default-color-tertiary);
  border: 1px solid rgb(var(--f-default-color-rgb-secondary), 0.5);;
}

.app-default-modal .modal-header{
  border: none;
  border-bottom: 1px solid var(--f-default-color-secondary);
}

.app-default-modal .btn-close-modal{
  color: var(--f-default-color-secondary);
  background: transparent;
  border: 1px solid var(--f-default-color-secondary);
  outline: none;
  padding: 7px 10px;
  border-radius: 10px;
}

.app-default-modal .modal-content h5{
  color: var(--f-default-color-secondary);
}

.search-form-wrap {
  padding: 10px;
}

.search-form-wrap .search-form {
  position: relative;
  height: 45px;
  border: 1px solid rgba(var(--f-default-color-rgb-secondary), 0.1);
  border-radius: var(--img-b-radius);
}

.search-form-wrap .search-form .form-control {
  width: 100%;
  height: 100%;
  border-color: transparent;
  padding-left: 40px;
  padding-right: 40px;
  background: transparent;
  color: var(--f-default-color-secondary);
}

.search-form-wrap .search-form .form-control:active,
.search-form-wrap .search-form .form-control:focus {
  outline: none;
  box-shadow: 0 5px 20px 1px rgba(var(--f-default-color-rgb-secondary), 0.2);
}

.search-form-wrap .search-form .icon {
  position: absolute;
  right: 0;
  top: 0px;
  opacity: 0.5;
  left: 0;
  background: transparent;
  width: 40px;
  height: 100%;
  border-radius: 0.375rem;
  color: var(--f-default-color-secondary);
}

.search-form-wrap .search-form .btn {
  position: absolute;
  top: 2px;
  right: 4px;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 30px;
}

.search-form-wrap .search-form .btn:active,
.search-form-wrap .search-form .btn:focus {
  outline: none;
  box-shadow: none;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--nav-color);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--f-default-color-secondary);
  }

}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279.98px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--header-bg);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--nav-color);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--f-default-color-secondary);
  }

  .mobile-nav-show {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 999;
    margin-right: 10px;
    transition: 0.5s ease-in;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .header .mobile-nav-show {
    background-color: #f0f8ff;
    padding: 5px;
    border: 1px solid var(--nav-color);
    border-radius: 0.375rem;
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 32px;
    transition: 0.3s ease-in;
  }

  .mobile-nav-active .header .navbar {
    right: 0;
  }

  .mobile-nav-active .header .navbar::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 90;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }

  .search-btn-area {
    margin-left: auto !important;
  }

}

/*--------------------------------------------------------------
Main-posts Section
--------------------------------------------------------------*/
.main-posts .blog-item {
  position: relative;
  border-radius: var(--post-img-b-radius);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.main-posts .blog-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(var(--f-default-color-rgb-secondary), 0.9) -10%,
    rgba(0, 0, 0, 0.8) 20%,
    rgba(0, 0, 0, 0.01) 100%
  );
}

.main-posts .blog-item:hover img {
  transform: scale(1.05);
}

.main-posts .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}

.main-posts .blog-item-main-2 img{
  aspect-ratio: 26/9;
}

.main-posts .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem;
  z-index: 2;
  transition: background 0.3s ease-in-out;
}

.main-posts .blog-item .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-white);
}

.main-posts .blog-item .post-meta .date,
.main-posts .blog-item .post-meta .category {
  display: flex;
  align-items: center;
}

.main-posts .blog-item .post-meta .category{
  background: var(--category-badge-bg);
  color: var(--category-badge-color);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 5px;
}

.main-posts .blog-item .post-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

.main-posts .blog-item .post-title a {
  color: var(--color-white);
  text-decoration: none;
}

.main-posts .blog-item p{
  font-weight: 200;
  font-size: 0.875rem;
  color: var(--color-white);
}


/*--------------------------------------------------------------
Featured Categories
--------------------------------------------------------------*/
/* =========================================================
   FEATURED CATEGORY
   ========================================================= */

.featured-category {
    width: 100%;
    height: 90px;
    max-height: 90px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* O Swiper também fica limitado */
.featured-category-slider {
    width: 100%;
    height: 90px;
    max-height: 90px;
    overflow: hidden;
}

.featured-category-slider .swiper-wrapper {
    height: 90px;
    align-items: stretch;
}

.featured-category-slider .swiper-slide {
    width: 180px;
    height: 90px;
}

/* =========================================================
   CARD
   ========================================================= */

.featured-category-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 90px;

    overflow: hidden;

    border-radius: 10px;

    color: #fff;
    text-decoration: none;

    background: #222;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

    isolation: isolate;
}

/* =========================================================
   IMAGE
   ========================================================= */

.featured-category-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -2;

    transition: transform 0.4s ease;
}

.featured-category-card:hover img {
    transform: scale(1.08);
}

/* =========================================================
   OVERLAY
   ========================================================= */

.featured-category-overlay {
    position: absolute;
    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.65)
        );

    transition: background 0.3s ease;
}

.featured-category-card:hover .featured-category-overlay {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        );
}

/* =========================================================
   CATEGORY NAME
   ========================================================= */

.featured-category-name {
    display: block;

    max-width: 90%;

    padding: 0 10px;

    color: #fff;

    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;

    text-align: center;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   1, 2 OU 3 CATEGORIAS
   ========================================================= */

/*
 * Quando há poucas categorias, elas ocupam a faixa
 * sem deixar espaços exagerados.
 */

.featured-category-static {
    width: 100%;
    display: flex;
    gap: 12px;
}

.featured-category-static .swiper-slide {
    flex: 1 1 0;
    width: auto;
}

/* =========================================================
   4+ CATEGORIAS
   ========================================================= */

.featured-category-slider:not(:has(.featured-category-static))
.swiper-slide {
    width: 180px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .featured-category,
    .featured-category-slider,
    .featured-category-slider .swiper-wrapper {
        height: 76px;
        max-height: 76px;
    }

    .featured-category-slider .swiper-slide,
    .featured-category-card {
        height: 76px;
    }

    .featured-category-slider .swiper-slide {
        width: 145px;
    }

    .featured-category-name {
        font-size: 0.82rem;
    }

    .featured-category-static .swiper-slide {
        min-width: 0;
    }
}


/*--------------------------------------------------------------
Recents-posts Section
--------------------------------------------------------------*/
.recents-section .recents-posts img{
  border-radius: var(--img-b-radius);
}

.recents-section .recents-posts .blog-card {
  border-radius: var(--img-b-radius);  
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.recents-section .recents-posts .blog-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--img-b-radius);
}

.recents-section .recents-posts .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recents-section .recents-posts .blog-image .category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--category-badge-bg);
  color: var(--category-badge-color);
  padding: 7px 14px;
  border-radius: var(--badge-b-radius);
  box-shadow: 0 0 30px var(--f-default-color-tertiary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.recents-section .recents-posts .blog-image:hover img {
  transform: scale(1.05);
}

.recents-section .recents-posts .blog-content {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .recents-section .recents-posts .blog-content {
    padding: 25px;
  }
}

.recents-section .recents-posts h2, .recents-section .recents-posts h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 768px) {
  .recents-section .recents-posts h3 {
    font-size: 16px;
  }
}

.recents-section .recents-posts h3 a {
  color: var(--color-links);  
  border-radius: var(--img-b-radius);
  transition: color 0.3s ease;
}

.recents-section .recents-posts span.publish-date{
  color: var(--f-default-color-tertiary);
}

.home-last-category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.home-last-category .post-item {
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-last-category .post-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
  border-radius: var(--img-b-radius);
}

.home-last-category .post-item h3 {
  font-size: 1rem;
}

.home-last-category .publish-date{
  font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 768px) {
  .home-last-category {
      grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
Recents section sidebar
--------------------------------------------------------------*/
/*Social Links ==============*/
.recents-section-sidebar .sidebar-social-list {
  margin-bottom: 10px;
}

.recents-section-sidebar .social-btn{
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: var(--btn-social-b-radius);
}

.recents-section-sidebar .bi-facebook {
  background-color: #0077b5;
  color: white;
}

.recents-section-sidebar .bi-facebook:hover {
  background-color: #005983;
}

.recents-section-sidebar .bi-titok {
  background-color: #333;
  color: white;
}

.recents-section-sidebar .bi-titok:hover {
  background-color: #1b1b1b;
}

.recents-section-sidebar .bi-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
}

.recents-section-sidebar .bi-instagram:hover {
  filter: brightness(0.9);
}

/*Categories ==============*/
.recents-section-sidebar .categories-box{
  margin-bottom: 15px;
}

.recents-section-sidebar .categories-box ul li {
  padding: 0.8rem 0.4rem;
  border-bottom: 1px solid
  color-mix(in srgb, var(--f-default-color-tertiary), transparent 70%);
}

.recents-section-sidebar .categories-box ul li:first-child{
  padding-top: 0;
}

.recents-section-sidebar .categories-box ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.recents-section-sidebar .categories-box ul a {
  transition: 0.3s;
  font-size: 15px;
}

.recents-section-sidebar .categories-box ul a span {
  padding-left: 5px;
  color: var(--f-default-color-primary);
  font-size: 13px;
  font-weight: 600;
}

/*Recents posts ==============*/
.recents-section-sidebar .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--f-default-color-tertiary), transparent 70%);
}

.recents-section-sidebar .tab-post:first-child {
  padding-top: 0;
}

.recents-section-sidebar .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.recents-section-sidebar .tab-post img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recents-section-sidebar .tab-post .post-content {
  padding-left: 10px;
}

.recents-section-sidebar .tab-post .post-title {
  font-size: 0.9375rem;
  line-height: 1.4;
}

.sidebar-post .post-category {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  margin-bottom: 8px;
}

/*--------------------------------------------------------------
Publicities section
--------------------------------------------------------------*/
.slider {
  background-color: transparent;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--color-black), transparent 10%); 
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--f-default-color-secondary);
}

.slider .swiper-wrapper {
  height: auto !important;
}

.slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider .generic-pub-link-slide {
  height: 120px;
  border-radius: var(--slider-b-radius);
}

.slider .af-pub-link-slide {
  height: 250px;
  border-radius: var(--slider-b-radius);
}

.slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--color-black), transparent 50%);
  border-radius: var(--slider-b-radius);
}

.slider .swiper-button-prev:after,
.slider .swiper-button-next:after {
  font-size: 20px;
  color: color-mix(in srgb, var(--color-white), transparent 50%);
}

.slider .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  height: 100%;
  margin: auto;
  max-width: 80%;
  position: relative;
}

.slider .content h3,
.slider .content p{
  color: var(--color-white);
}

a.af-action-btn{
  background: var(--f-default-color-tertiary);
  color: var(--f-default-color-secondary);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 7px;
}

a.af-action-btn:hover{
  background: rgba(var(--f-default-color-rgb-tertiary), 0.8);
  color: var(--f-default-color-secondary);
  transition: transform 0.3s ease-in-out;
  box-shadow: inset 0 0 7px rgba(var(--f-default-color-rgb-secondary), 0.8);
}

.slider .content h3 {
  font-size: 16px;
  font-weight: 600;
}

.slider .content p {
  font-size: 14px;
}

/*Day frase*/
blockquote.blockquote {
  position: relative;
  margin: 3rem 0 0 0;
  padding: 2rem 3rem;
  background: var(--body-bg);
  border-radius: 12px;
  border: 1px solid rgba(var(--color-white-rgb), 0.2);
}

blockquote.blockquote::before {
  content: ' " ';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: fontAwesome;
  width: 70px;
  height: 70px;
  font-size: 5rem;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  color: color-mix(in srgb, var(--f-default-color-secondary), transparent 0%);
  background: var(--body-bg);
  border-top: 2px solid var(--f-default-color-primary);
}

blockquote.blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--f-default-color-tertiary);
  margin: 20px 0;
  position: relative;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  overflow: hidden;
  font-size: 16px;
  color: rgba(var(--f-default-color-rgb-tertiary), 0.7);
  margin-top: 40px;
  background: var(--footer-bg);
}

.footer .footer-content {
  padding: 60px 0;
  border-top: 1px solid rgba(var(--f-default-color-rgb-tertiary), 0.2);
}

.footer-logo {
    display: block;
    max-width: 180px;
    height: auto;
}

.footer .footer-heading {
  color: var(--f-default-color-tertiary);
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.footer .footer-site-name {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
}

.footer .social-links a {
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  color: var(--f-default-color-secondary);
  background-color: var(--f-default-color-tertiary);
  border-radius: 50%;
  line-height: 40px;
}

.footer .social-links a:hover {
  transition: 0.3s ease-in-out;
  background-color: rgba(var(--f-default-color-rgb-tertiary), 0.9);
  color: var(--f-default-color-secondary);
  box-shadow: inset 0px 0px 10px var(--f-default-color-secondary);
}

/*Footer category list ==============*/

.footer .footer-category-list li a {
  display: block;
  font-size: 14px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}


/*Footer legal ==============*/
.footer .footer-legal {
  background: transparent;
  padding: 20px 0 20px 0;
  border-top: 1px solid rgba(var(--color-black-rgb), 0.09);
  background: var(--footer-legal-bg);
}

.footer .copyright {
  text-align: center;
  color: var(--f-default-color-tertiary);
}

.footer .copyright strong {
  font-weight: 600;
}

/*------------------------------------------------------------------
[ Wrap Picture ]*/
 .size-w-1 {
  width: 100px;
}

.size-w-2 {
  width: calc(100% - 118px);
}

.f1-s-5 {
  font-size: 18px;
}

.wrap-pic-s, .wrap-pic-max-s,
.wrap-pic-w, .wrap-pic-max-w,
.wrap-pic-h, .wrap-pic-max-h {display: block;}

.wrap-pic-w > img {width: 100%;}
.wrap-pic-max-w > img {max-width: 100%;}

.wrap-pic-h > img {height: 100%;}
.wrap-pic-max-h > img {max-height: 100%;}

.wrap-pic-s > img {width: 100%; height: 100%;}
.wrap-pic-max-s > img {max-width: 100%; max-height: 100%;}



/*--------------------------------------------------------------
Single post title Section
--------------------------------------------------------------*/
.single-post-title {
    background-color: transparent;
    padding: 0;
}

.single-post-title .img-legend-area {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round 0);
    color: #ffffff;
}

.single-post-title .img-legend-area img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    overflow: hidden;
}

.single-post-title .img-legend-area:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.single-post-title .img-legend-area .content {
    position: relative;
    z-index: 3;
}

.single-post-title .category-badge{
    background: var(--category-badge-bg);
    color: var(--category-badge-color);
    padding: 7px 14px;
    border-radius: var(--badge-b-radius);
    display: inline;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-post-title h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 20px 0;
}

.single-post-title ul.single-post-title-list{
    margin: 0;
    padding: 0;
}

.single-post-title ul.single-post-title-list li{
    display: inline-block;
    margin-right: 10px;
}

.single-post-title ul.single-post-title-list li:last-child{
    margin-right: 0;
}

.single-post-title ul.single-post-title-list li:last-child span{
    display: none;
    pointer-events: none;
}

/*--------------------------------------------------------------
Single Post Content Section
--------------------------------------------------------------*/
.single-post-content .single-post-social ul li{
    display: inline-block;
}

.single-post-content .single-post-text .content-secondary-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.single-post-content .single-post-text .content-secondary-image.right-aligned {
    float: right;
    max-width: 450px;
    margin: 0rem 0 1rem 1rem;
}

@media (max-width: 768px) {
    .single-post-content .single-post-text .content-secondary-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
    }
}

.single-post-content .single-post-text .content-secondary-image img {
    width: 100%;
    height: auto;
}

.single-post-content .single-post-text .content-secondary-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    --social-color: #6c757d;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    min-height: 46px;
    padding: 10px 16px;

    border: 1px solid var(--social-color);
    border-radius: 8px;

    background-color: #fff;
    color: var(--social-color);

    font-size: 15px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.social-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.social-btn-text {
    text-transform: capitalize;
}

/* Hover */
.social-btn:hover {
    background-color: var(--social-color);
    border-color: var(--social-color);
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Foco para acessibilidade */
.social-btn:focus-visible {
    outline: 3px solid color-mix(
        in srgb,
        var(--social-color) 30%,
        transparent
    );
    outline-offset: 2px;
}

/* Ícone ligeiramente maior no hover */
.social-btn:hover .social-btn-icon {
    transform: scale(1.08);
}

.social-btn-icon {
    transition: transform 0.2s ease;
}

/* Desktop: pode apresentar os botões lado a lado */
@media (min-width: 768px) {
    .social-share-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/*--------------------------------------------------------------
Contact Page
--------------------------------------------------------------*/  
.contact-section .contact-info-list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 55px;
  padding-top: 5px;
  min-height: 40px;
}

.contact-section .contact-info-list li i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 40px;
  background: var(--f-default-color-tertiary);
  color: var(--f-default-color-secondary);
  border: 1px solid var(--f-default-color-tertiary);
  line-height: 40px;
  border-radius: 50%;
}


.contact-section .form-wrapper .input-group .input-group-text {
  color: var(--f-default-color-secondary);
  background-color: var(--f-default-color-tertiary);
  border-color: color-mix(in srgb, var(--f-default-color-tertiary), transparent 15%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contact-section .form-wrapper .input-group .form-control {
  color: #777777;
  background-color: transparent;
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, #777777, transparent 85%);
  padding: 12px 15px;
}

.contact-section .form-wrapper .input-group .form-control:focus {
  border-color: var(--f-default-color-tertiary);
}

.contact-section .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--f-default-color-tertiary), transparent 70%);
}

.contact-section .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contact-section .form-wrapper textarea.form-control {
  min-height: 160px;
}

/*--------------------------------------------------------------
Post Search Title Section
--------------------------------------------------------------*/  
.post-search-title .content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.post-search-title .content p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .post-search-title .content h3 {
    font-size: 2rem;
    }

    .post-search-title .content p {
    font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .post-search-title .content h3 {
    font-size: 1.75rem;
    }
}