/* ============================================
   LAYOUT BASE
   ============================================ */
.home-main {
  padding-bottom: var(--spacing-lg);
}

/* ============================================
   HERO SLIDER - NOTÍCIAS EM DESTAQUE
   ============================================ */
.hero-slider-section {
  width: 100%;
  margin-bottom: var(--spacing-sm);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-slider {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .hero-slider {
    height: 600px;
  }
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.hero-slider__slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333 0%, #111 100%);
}

.hero-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-slider__content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: var(--spacing-xl);
  text-align: center;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-slider__content {
    padding: var(--spacing-xxl);
  }
}

.hero-slider__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.hero-slider__resumo {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: white;
  margin: 5px 0 20px;
}

@media (max-width: 768px) {
  .hero-slider__content {
    bottom: 5px;
  }

  .hero-slider__title {
    margin-bottom: 20px;
  }

  .hero-slider__resumo {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-slider__title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-slider__title {
    font-size: 2.3rem;
  }
}

.hero-slider__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.hero-slider__btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 68, 0, 0.4);
  color: #fff;
}

.hero-slider__btn svg {
  transition: transform var(--transition-fast);
}

.hero-slider__btn:hover svg {
  transform: translateX(4px);
}

/* Navegação do Slider */
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  opacity: 0.8;
}

.hero-slider__nav:hover {
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.hero-slider__nav--prev {
  left: var(--spacing-md);
}

.hero-slider__nav--next {
  right: var(--spacing-md);
}

@media (max-width: 639px) {
  .hero-slider__nav {
    width: 40px;
    height: 40px;
  }

  .hero-slider__nav--prev {
    left: var(--spacing-xs);
  }

  .hero-slider__nav--next {
    right: var(--spacing-xs);
  }
}

/* Indicadores (Dots) */
.hero-slider__dots {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  border: 2px solid white;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.hero-slider__dot:hover,
.hero-slider__dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ============================================
   CARROSSEL DE ARTISTAS EM DESTAQUE
   ============================================ */
.artists-carousel-section {
  padding: var(--spacing-md) 0;
  background: var(--color-bg-alt);
}

.artists-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-md);
  max-width: calc(var(--container-width) + 80px);
  margin: 0 auto;
}

.artists-carousel {
  flex: 1;
  overflow: hidden;
  padding-top: 10px;
}

.artists-carousel__track {
  display: flex;
  gap: var(--spacing-md);
  transition: transform 0.4s ease;
}

.artists-carousel__item {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
}

@media (min-width: 768px) {
  .artists-carousel__item {
    width: 140px;
  }
}

.artists-carousel__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.artists-carousel__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 var(--spacing-xs) 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 3px solid white;
}

@media (min-width: 768px) {
  .artists-carousel__photo {
    width: 110px;
    height: 110px;
  }
}

.artists-carousel__item:hover .artists-carousel__photo {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  border-color: var(--color-primary);
}

.artists-carousel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artists-carousel__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-bg) 0%,
    var(--color-border) 100%
  );
  color: var(--color-text-muted);
}

.artists-carousel__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.artists-carousel__item:hover .artists-carousel__name {
  color: var(--color-primary);
}

.artists-carousel__genre {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Navegação do Carrossel */
.artists-carousel__nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  color: var(--color-text);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.artists-carousel__nav:hover {
  background: var(--color-primary);
  color: white;
}

.artists-carousel__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 639px) {
  .artists-carousel__nav {
    width: 36px;
    height: 36px;
  }
}

/* AINDA DA BASE */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-border-light);
}

.section-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.section-title svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.btn-view-all:hover {
  background-color: rgba(216, 68, 0, 0.08);
  color: var(--color-primary-dark);
}

/* ============================================
   SEÇÃO: NOTÍCIAS EM DESTAQUE (GRID ESTILO GOSPELMUSIC)
   ============================================ */
.featured-news-section {
  margin-bottom: var(--spacing-sm);
}

.featured-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 768px) {
  .featured-news-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }

  .featured-news-card--main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .featured-news-card:not(.featured-news-card--main):nth-child(2) {
    grid-column: 2 / 6; /* Antes 2 */
    grid-row: 1;
  }

  .featured-news-card:not(.featured-news-card--main):nth-child(n + 3) {
    grid-column: 2 / 6; /* Antes auto */
  }
}

@media (min-width: 1024px) {
  .featured-news-grid {
    grid-template-columns: repeat(2, 1fr) repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    margin-top: 10px;
  }

  .featured-news-card--main {
    grid-column: 1 / 4; /* Antes 1 / 3 */
    grid-row: 1 / 3;
  }

  .featured-news-card:not(.featured-news-card--main) {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-news-card:not(.featured-news-card--main):nth-child(2) {
    grid-column: 4 / 6; /* Antes 2 */
    grid-row: 1;
  }

  .featured-news-card:not(.featured-news-card--main):nth-child(n + 3) {
    grid-column: 4 / 6; /* Antes auto */
  }
}

.featured-news-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.featured-news-card--main {
  min-height: 300px;
}

@media (min-width: 768px) {
  .featured-news-card--main {
    min-height: 400px;
  }
}

.featured-news-card__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  text-decoration: none;
  color: white;
}

.featured-news-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.featured-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-news-card:hover .featured-news-card__image img {
  transform: scale(1.05);
}

.featured-news-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #444 0%, #222 100%);
}

.featured-news-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
  );
  z-index: 1;
}

.featured-news-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  z-index: 2;
}

.featured-news-card--main .featured-news-card__content {
  padding: var(--spacing-lg);
}

.featured-news-card__date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.featured-news-card__title {
  font-family: var(--font-heading);
  font-size: 1.275rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-news-card--main .featured-news-card__title {
  font-size: 1.375rem;
  -webkit-line-clamp: 4;
}

@media (min-width: 768px) {
  .featured-news-card--main .featured-news-card__title {
    font-size: 1.75rem;
  }
}

.featured-news-card__excerpt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 8px 0 0 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-news-card:hover .featured-news-card__title {
  color: var(--color-primary-light);
}

/* ============================================
   SEÇÃO: EVENTOS (GRID COM IMAGEM DE FUNDO)
   ============================================ */
.events-section {
  padding: var(--spacing-sm) 0;
  margin-bottom: var(--spacing-sm);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 640px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.event-card:hover a {
  color: #fff;
}

.event-card__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  text-decoration: none;
  color: white;
}

.event-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.08);
}

.event-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
}

.event-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.event-card__content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.event-card__date-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 60px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  text-align: center;
}

.event-card__day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-card__month {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.event-card__info {
  margin-top: auto;
  margin-left: 70px;
}

.event-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.event-card__artist {
  font-size: 0.875rem;
  color: var(--color-primary-light);
  font-weight: 500;
  margin: 0 0 4px 0;
}

.event-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.event-card__location svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.event-card__price {
  position: absolute;
  /*top: var(--spacing-md);*/
  bottom: 22px;
  right: var(--spacing-md);
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ============================================
   SEÇÃO: ARTISTAS EM DESTAQUE
   ============================================ */
.artists-section {
  margin-bottom: var(--spacing-xxl);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

@media (min-width: 640px) {
  .artists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .artists-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: var(--spacing-lg);
  }
}

.artist-card {
  text-align: center;
}

.artist-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.artist-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 var(--spacing-xs) 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

@media (min-width: 640px) {
  .artist-card__photo {
    width: 100px;
    height: 100px;
  }
}

.artist-card:hover .artist-card__photo {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.artist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border));
  color: var(--color-text-muted);
}

.artist-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.artist-card:hover .artist-card__name {
  color: var(--color-primary);
}

.artist-card__genre {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================
   SEÇÃO: VÍDEOS EM DESTAQUE
   ============================================ */
.videos-section {
  background: var(--color-bg-black);
  padding: var(--spacing-xl) 0;
  margin-bottom: var(--spacing-lg);
}

.videos-section .section-title {
  color: var(--color-text-white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-md);
}

@media (min-width: 640px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.video-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.video-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-card__thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0;
}

.video-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.video-card:hover .video-card__thumbnail img {
  transform: scale(1.05);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: var(--transition-fast);
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__info {
  padding: var(--spacing-sm);
  background: var(--color-bg-alt);
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card__artist {
  font-size: 0.8125rem;
  color: var(--color-primary);
  margin: 4px 0 0 0;
}

/* ============================================
   SEÇÃO: ARTIGOS
   ============================================ */
.articles-section {
  margin-bottom: var(--spacing-xl);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-lg);
}

@media (min-width: 640px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.article-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.article-card:hover {
  box-shadow: var(--shadow-md);
}

.article-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.article-card:hover .article-card__image img {
  transform: scale(1.05);
}

.article-card__link .article-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  text-decoration: none;
}
.article-card__link .article-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f0ff, #ede9fe);
  color: #8a8988;
  font-size: 3rem;
}

.article-card__content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.article-card__category {
  background: rgba(216, 68, 0, 0.1);
  color: var(--color-primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

.article-card:hover .article-card__title {
  color: var(--color-primary);
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}

/* ============================================
   SEÇÃO: WIDGETS
   ============================================ */
.widgets-section {
  padding: var(--spacing-md) 0;
  background: var(--color-bg-alt);
}

.widgets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .widgets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .widgets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.widget {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.widget__header {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-light);
}

.widget__title {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.widget__title svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.widget__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.widget__item {
  border-bottom: 1px solid var(--color-border-light);
}

.widget__item:last-child {
  border-bottom: none;
}

.widget__link {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  transition: var(--transition-fast);
}

.widget__link:hover {
  background: var(--color-bg-alt);
}

.widget__thumb {
  flex-shrink: 0;
}

.widget__thumb--square {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.widget__thumb--square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-bg-alt) 0%,
    var(--color-border-light) 100%
  );
  color: var(--color-text-muted);
}

.widget__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(216, 68, 0, 0.1) 0%,
    rgba(216, 68, 0, 0.05) 100%
  );
  border-radius: 50%;
  color: var(--color-primary);
}

.widget__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.widget__item-title {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.widget__link:hover .widget__item-title {
  color: var(--color-primary);
}

.widget__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.widget__separator {
  color: var(--color-border);
}

.widget__author {
  font-style: italic;
}

.widget__album,
.widget__artist,
.widget__year {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget__empty {
  padding: var(--spacing-lg);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.widget__footer {
  padding: var(--spacing-sm) var(--spacing-md);
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
}

.widget__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.widget__btn:hover {
  background: var(--color-primary);
  color: white;
}

.widget__btn svg {
  transition: transform var(--transition-fast);
}

.widget__btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider-section,
.artists-carousel-section,
.featured-news-section,
.events-section,
.artists-section,
.videos-section,
.articles-section,
.widgets-section {
  animation: fadeInUp 0.6s ease-out;
}
