.espetaculos-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background-image: url('/img/fundo-sobre.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay vermelho */
.espetaculos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(140, 0, 0, 0.75);
  z-index: 1;
}

/* Conteúdo */
.espetaculos-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* Título */
.titulo-espetaculos {
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* Texto */
.texto-espetaculos {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f1f1f1;
}

.mostra-danca {
  background: #FAFAFA;
  padding: 80px 0;
}

/* Título */
.titulo-mostra {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 15px;
}

/* Texto */
.texto-mostra {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Cards */
.card-mostra {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.card-mostra img {
  width: 100%;             
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

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

.espetaculo-ano {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

/* Linhas vermelhas */
.espetaculo-ano::before,
.espetaculo-ano::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #8B0000; 
}

.espetaculo-ano::before {
  top: 0;
}

.espetaculo-ano::after {
  bottom: 0;
}

/* Título */
.titulo-espetaculo {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 15px;
}

/* Texto */
.texto-espetaculo {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Cards */
.card-espetaculo {
  overflow: hidden;
  border-radius: 6px;
}

.card-espetaculo img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

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

/* Responsivo */
@media (max-width: 576px) {
  .espetaculos-section {
    padding: 70px 0;
  }

  .titulo-espetaculos {
    font-size: 1.7rem;
  }

  .texto-espetaculos {
    font-size: 0.95rem;
  }

    .mostra-danca {
    padding: 60px 0;
  }

  .titulo-mostra {
    font-size: 1.7rem;
  }

  .texto-mostra {
    font-size: 0.95rem;
  }

  .card-mostra img {
    height: auto;
    object-fit: contain;
  }

    .espetaculo-ano {
    padding: 60px 0;
  }

  .titulo-espetaculo {
    font-size: 1.7rem;
  }

  .texto-espetaculo {
    font-size: 0.95rem;
  }

  .card-espetaculo img {
    height: auto;
    object-fit: contain;
  }
}
