@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --index-color-white: #fff;
  --index-color-black: #000;
  --index-color-primary-text: #333;
  --index-color-secondary-text: #495057;
  --index-color-heading-text: #343a40;
  --index-color-link: inherit;
  --index-color-link-hover: #e60000;
  --index-color-plus-red: #ff0000;
  --index-color-plus-purple: #541084;
  --index-color-plus-purple-dark: #3e0c62;
  --index-color-plus-gold: #b08d57;
  --index-color-plus-blue-dark: #0a2342;
  --index-color-bg-light: #f8f9fa;
  --index-color-bg-medium: #e9ecef;
  --index-color-placeholder-text: #6c757d;
  --index-font-family-base: "Rubik", Arial, sans-serif;
  --index-font-size-base: 16px;
  --index-font-size-title: 1.15rem;
  --index-font-weight-bold: 700;
  --index-line-height-base: 1.6;
  --index-line-height-heading: 1.2;
  --index-padding-xs: 5px;
  --index-padding-sm: 8px;
  --index-padding-md: 10px;
  --index-padding-lg: 12px;
  --index-padding-xl: 15px;
  --index-padding-xxl: 20px;
}

body {
  margin: 0;
  font-family: var(--index-font-family-base);
  line-height: var(--index-line-height-base);
  background-color: var(--index-color-white);
  color: var(--index-color-primary-text);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body.loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: var(--index-color-link);
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: var(--index-font-weight-bold);
  line-height: var(--index-line-height-heading);
}

.site-header {
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 2px solid #ff0000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.header-content-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.header-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  user-select: none;
}

.header-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.header-slideshow img.active {
  opacity: 1;
  z-index: 1;
}

.header-slideshow .desktop-banner {
  display: block;
}
.header-slideshow .mobile-banner {
  display: none;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--index-color-white);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
  font-size: 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.slide-nav:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.slide-nav.prev {
  left: 15px;
}

.slide-nav.next {
  right: 15px;
}

.slide-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slide-indicator-item {
  width: 25px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slide-indicator-item:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.slide-indicator-item.active {
  background-color: rgba(255, 255, 255, 1);
  transform: scaleY(1.2);
}

.site-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.site-logo {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.site-logo:hover {
  transform: scale(1.05);
}

.site-nav {
  color: var(--index-color-white);
  position: relative;
  z-index: 1;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.site-nav ul li {
  display: inline;
  margin: 0 20px; /* Aumentado de 0 10px */
}

.site-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem; /* Aumentado de 0.9rem */
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.site-nav ul li a:hover {
  color: #ff0000;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
  transform: translateY(-2px);
}

.site-content {
}

.site-footer-credits {
  text-align: center;
  padding: 15px;
  background: #3e0c62;
  color: #fff;
}

.drops-section {
  background-color: #f8f9fa;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.drops-section:last-of-type {
  border-bottom: none;
}

.drops-section > .container > h2,
.programas-section > .container > h2 {
  text-align: center;
  font-size: 2rem;
  color: #343a40;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 10px;
}

.drops-section > .container {
  padding-left: 15px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.drops-item-thumbnail img,
.drops-item-thumbnail-featured img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.drops-item-thumbnail a:hover img,
.drops-item-thumbnail-featured a:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.drops-item-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.25;
}

.drops-item-title a {
  text-decoration: none;
  color: #212529;
  transition: color 0.3s ease;
}

.drops-item-title a:hover {
  color: #e60000;
}

.drops-item-excerpt {
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 15px;
  line-height: 1.65;
}

.read-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  background-image: linear-gradient(to right, #ff0000 0%, #d10000 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-image 0.4s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.25);
}

.read-more:hover {
  background-image: linear-gradient(to right, #d10000 0%, #b80000 100%);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(204, 0, 0, 0.35);
}

.read-more::after {
  content: " \279C";
  font-size: 1.1em;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.read-more:hover::after {
  transform: translateX(3px);
}

.drops-featured-layout {
  margin-bottom: 10px;
}

.drops-featured-item {
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.35s ease;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
}
.drops-featured-item:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.drops-featured-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #6a0dad;
  transition: height 0.3s ease;
  z-index: 3;
}

.drops-featured-item:hover::after {
  height: 5px;
}

.drops-item-thumbnail-featured {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  display: block;
  min-height: 300px;
}

.drops-item-thumbnail-featured a {
  display: block;
  position: relative;
  height: 100%;
}

.drops-item-thumbnail-featured img {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.drops-featured-item:hover .drops-item-thumbnail-featured img {
  transform: scale(1.05);
}

.drops-item-thumbnail-featured > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 30%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 0 0 16px 16px;
  z-index: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.drops-item-content-over-image,
.drops-grid-item-content-over-image,
.programa-item-content-over-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.drops-item-categories-tags,
.programa-item-categories-tags {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.drops-grid-item-content-over-image .drops-item-categories-tags {
  margin-bottom: 8px;
  gap: 8px;
}

.category-tag {
  background-color: rgba(255, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin-right: 5px;
}
.drops-item-categories-tags .category-tag {
  margin-right: 5px;
}
.drops-grid-item-content-over-image .category-tag {
  margin-right: 5px;
}

.category-tag:hover {
  background-color: rgba(255, 0, 0, 1);
}

.category-tag.acf-tag {
}
.category-tag.acf-tag:hover {
}

.category-tag.cartola-tag {
  background-color: #6a0dad;
}
.category-tag.cartola-tag:hover {
  background-color: #500784;
}

.category-tag.bigode-tag {
  display: none;
}

.drops-item-title-featured {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.25;
}
.drops-item-title-featured a {
  color: #fff;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.drops-item-title-featured a:hover {
  color: #ffdddd;
}

.drops-item-bigode-content,
.programa-item-bigode-content {
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.drops-item-bigode-content {
  font-size: 1.1rem;
  max-width: 95%;
  line-height: 1.6;
}

.drops-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.drops-featured-grid-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.drops-featured-grid-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.drops-featured-grid-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.drops-featured-grid-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #6a0dad;
  transition: height 0.3s ease;
  z-index: 3;
}

.drops-featured-grid-item:hover::after {
  height: 5px;
}

.drops-featured-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.drops-featured-grid-item:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.thumbnail-placeholder-grid,
.programa-item-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: 12px;
}
.thumbnail-placeholder-grid {
  background-color: #e9ecef;
  color: #6c757d;
}
.thumbnail-placeholder-grid::before {
  content: "Imagem não disponível";
}

.drops-grid-item-content-over-image {
  padding: 12px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 0 0 12px 12px;
  min-height: 50%;
}

.drops-grid-item-content-over-image .drops-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  line-height: 1.25;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.drops-grid-item-content-over-image .drops-item-title a {
  color: #fff;
  text-decoration: none;
}
.drops-grid-item-content-over-image .drops-item-title a:hover {
  color: #ffdddd;
}

.programas-section {
  padding: 10px 0;
  background-color: #e9ecef;
  position: relative;
}

.programas-section > .container {
  padding-left: 15px;
}

.programas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.programa-item {
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: #0a2342;
  display: flex;
  flex-direction: column;
}

.programa-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.programa-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #b08d57;
  transition: height 0.3s ease;
  z-index: 3;
}

.programa-item:hover::after {
  height: 5px;
}

.programa-item-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #ffffff;
}

.programa-item .programa-item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, opacity 0.5s ease-in-out;
}

.programa-item img.lazy-load {
  opacity: 0.7;
}

.programa-item img.lazy-loaded {
  opacity: 1;
}

.programa-item:hover img {
  transform: scale(1.08);
}

.programa-item-thumbnail-placeholder {
  background-color: #0a2342;
  color: #b08d57;
  position: absolute;
  top: 0;
  left: 0;
}
.programa-item-thumbnail-placeholder::before {
  content: "Imagem Indisponível";
}

.programa-item-content-over-image {
  background: linear-gradient(
    to top,
    rgba(10, 35, 66, 0.9) 0%,
    rgba(10, 35, 66, 0.7) 40%,
    rgba(10, 35, 66, 0.1) 80%,
    rgba(10, 35, 66, 0) 100%
  );
  border-radius: 0 0 12px 12px;
  min-height: 60%;
}

.programa-item-categories-tags .category-tag {
  background-color: #0a2342;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #b08d57;
  margin-right: 0;
}
.programa-item-categories-tags .category-tag:hover {
  background-color: #b08d57;
  color: #0a2342;
}

.programa-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.programa-item-bigode-content {
  font-size: 0.95rem;
  line-height: 1.5;
}

.mapa-plusnews-section {
  padding: 20px 0;
  background-color: #541084;
}

.mapa-plusnews-header h2 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.mapa-plusnews-content-wrapper {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: stretch;
}

.mapa-column {
  flex: 0 0 calc(50% - 7.5px);
  position: relative;
}

.mapa-column svg {
  border-radius: 12px;
}

.plusnews-column-top {
  flex: 0 0 calc(50% - 7.5px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.plusnews-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.plusnews-item {
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plusnews-column-top .plusnews-item {
}

.plusnews-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: height 0.3s ease;
  z-index: 3;
}

.plusnews-item:hover::after {
  height: 5px;
}

.plusnews-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.plusnews-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plusnews-item-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.plusnews-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.plusnews-item:hover .plusnews-item-thumbnail img {
  transform: scale(1.05);
}

.plusnews-item-thumbnail-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  border-radius: 8px;
}
.plusnews-item-thumbnail-placeholder::before {
  content: "Imagem";
  font-size: 0.9rem;
}

.plusnews-item-content-over-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  min-height: 60%;
  border-radius: 0 0 8px 8px;
}

.plusnews-item-categories-tags {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.plusnews-item-categories-tags .category-tag {
}
.plusnews-item-categories-tags .category-tag.cartola-tag {
}
.plusnews-item-categories-tags .category-tag.news-category-tag {
  background-color: rgba(255, 0, 0, 0.7);
}
.plusnews-item-categories-tags .category-tag.news-category-tag:hover {
  background-color: rgba(255, 0, 0, 1);
}

.plusnews-item-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 5px 0;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.plusnews-column-top .plusnews-item-title {
  font-size: 1.1rem;
  -webkit-line-clamp: 2;
}

.plusnews-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.plusnews-grid-bottom .plusnews-item {
  aspect-ratio: 16 / 10;
}
.plusnews-grid-bottom .plusnews-item .plusnews-item-title {
  font-size: 1rem;
  -webkit-line-clamp: 2;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.plusnews-item-bigode-content {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #e0e0e0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.plusnews-item-thumbnail-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}
.plusnews-item-thumbnail-placeholder::before {
  content: "Imagem";
  font-size: 0.9rem;
}

.plusnews-item-content {
  padding: 10px 12px;
}

.plusnews-column-top .plusnews-item-title {
  font-size: 1.1rem;
  -webkit-line-clamp: 3;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  .drops-featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
  .programas-grid {
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .drops-featured-item {
    margin-bottom: 15px;
  }
  .drops-featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .mapa-plusnews-content-wrapper {
    flex-direction: column;
  }
  .mapa-column,
  .plusnews-column-top {
    width: 100%;
    flex-basis: auto;
  }
  .plusnews-column-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .plusnews-grid-bottom {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-content-wrapper {
    gap: 15px;
  }
  .header-slideshow .desktop-banner {
    display: none;
  }
  .header-slideshow .mobile-banner {
    display: block;
  }
  .site-logo {
    height: 35px;
  }
  .site-nav ul li a {
    font-size: 1rem; /* Ajustado para manter proporção em telas menores */
  }
  .drops-section > .container > h2,
  .programas-section > .container > h2 {
    font-size: 1.8rem;
  }
  .drops-item-title-featured {
    font-size: 1.6rem;
  }
  .drops-featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 15px;
  }
  .drops-grid-item-content-over-image .drops-item-title,
  .programa-item-title {
    font-size: 1.2rem;
  }
  .drops-grid-item-content-over-image .drops-item-title {
    font-size: 1.1rem;
  }
  .drops-section > .container,
  .programas-section > .container {
    padding-left: 15px;
  }

  .programas-grid {
    grid-template-columns: 1fr;
  }

  .mapa-plusnews-header h2 {
    font-size: 1.8rem;
  }
  .plusnews-column-top {
    grid-template-columns: 1fr;
  }
  .plusnews-grid-bottom {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .plusnews-item-title {
    font-size: 0.9rem;
  }
  .plusnews-column-top .plusnews-item-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px;
  }
  .site-nav ul {
    text-align: center;
  }
  .site-nav ul li {
    margin: 0 10px; /* Ajustado para telas muito pequenas */
  }
  .site-nav ul li a {
    font-size: 0.9rem; /* Ajustado para manter proporção em telas menores */
    letter-spacing: 0.5px;
  }
  .drops-section > .container > h2,
  .programas-section > .container > h2 {
    font-size: 1.6rem;
  }
  .drops-item-title-featured {
    font-size: 1.4rem;
  }
  .drops-featured-grid {
    grid-template-columns: 1fr;
  }
  .mapa-plusnews-header h2 {
    font-size: 1.6rem;
  }
  .plusnews-grid-bottom {
    grid-template-columns: 1fr;
  }
}
