/* ========== FONTES - CAMINHO CORRIGIDO (SAINDO DA PASTA CSS) ========== */
@font-face {
  font-family: 'Montserrat';
  src: url('../fontes/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fontes/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fontes/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* ========== RESET E CONFIGURAÇÕES GERAIS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cor-preto: #000000;
  --cor-branco: #FFFFFF;
  --cor-borda: #FFFFFF;
  --fonte-principal: 'Montserrat', sans-serif;
  --header-offset: 118px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cor-preto);
  color: var(--cor-branco);
  font-family: var(--fonte-principal);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-offset);
}
@media (max-width: 768px) {
  :root {
    --header-offset: 86px;
  }
  body {
    padding-top: var(--header-offset);
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== CABEÇALHO - AJUSTADO CONFORME SUAS IMAGENS ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  transition: all 0.4s ease;
}

header.rolou {
  background-color: #000000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 86px;
  width: auto;
  transition: height 0.4s ease;
}
header.rolou .logo img {
  height: 72px;
}

/* Menu Desktop */
nav.desktop {
  display: flex;
  gap: 2.8rem;
}

nav.desktop a {
  color: var(--cor-branco);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

nav.desktop a.menu-ativo {
  border-bottom: 1px solid var(--cor-branco);
}

nav.desktop a:hover {
  border-bottom: 1px solid var(--cor-branco);
}

nav.desktop a:focus-visible,
#menuMobile a:focus-visible,
#botaoMenu:focus-visible {
  outline: 2px solid var(--cor-branco);
  outline-offset: 4px;
}

/* ========== SEÇÃO HOME ========== */
#home {
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--header-offset));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  #home {
    min-height: calc(100svh - var(--header-offset));
  }
}

.fundo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fundo-video video,
.fundo-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
  z-index: 2;
}

.fundo-video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 60%, #000000 100%);
  z-index: 3;
}

/* Botão YouTube no rodapé do vídeo */
.botao-rodape-video {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    width: min(100% - 2rem, 420px);
}

.botao-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 1px solid var(--cor-branco);
    border-radius: 999px;
    background-color: transparent;
    color: var(--cor-branco);
    padding: 0.72rem 1.45rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.2px;
    transition: all 0.28s ease;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.botao-youtube:hover {
    background-color: var(--cor-branco);
    color: var(--cor-preto);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .botao-rodape-video {
        bottom: 6rem;
        width: auto;
        max-width: calc(100% - 2rem);
    }
    .botao-youtube {
        padding: 0.58rem 1.05rem;
        font-size: 0.82rem;
        gap: 0.42rem;
        letter-spacing: 0;
        box-shadow: 0 10px 24px rgba(0,0,0,0.16);
    }
}

/* Faixa carrossel texto */
.faixa-carrossel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 0;
  overflow: hidden;
  z-index: 10;
}

.texto-rolante {
  white-space: nowrap;
  display: inline-block;
  animation: rolarInfinito 35s linear infinite;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes rolarInfinito {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SEÇÃO BIOGRAFIA ========== */
#biografia {
  background-color: var(--cor-preto);
  padding: 5rem 0;
  overflow: hidden;
}

.container-biografia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.texto-biografia h2 {
  text-align: left;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--cor-branco);
}

.texto-biografia p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cor-branco);
  opacity: 0.92;
  margin-bottom: 1.2rem;
  text-align: left;
}

.imagem-biografia {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-biografia img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* Responsivo Biografia */
@media (max-width: 992px) {
  .container-biografia {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .texto-biografia h2 {
    text-align: center;
    font-size: 2.8rem;
  }
  .texto-biografia p {
    text-align: center;
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .texto-rolante {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .texto-biografia h2 {
    font-size: 2.2rem;
  }
  .texto-biografia p {
    font-size: 1rem;
  }
}

/* ========== SEÇÃO AGENDA - VERSÃO OTIMIZADA ========== */
#agenda {
  background-color: var(--cor-preto);
  padding: 4rem 0 5rem;
  width: 100%;
}

.titulo-agenda {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--cor-branco);
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}

.linha-titulo {
  width: 80px;
  height: 1px;
  background-color: var(--cor-branco);
  margin: 0 auto 3rem;
}

.carrossel-agenda {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  position: relative;
}

.seta-navegacao {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--cor-branco);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.seta-navegacao:hover:not(:disabled) {
  background-color: var(--cor-branco);
  color: var(--cor-preto);
}

.cards-agenda-wrapper {
  width: 100%;
  overflow: hidden;
}

.cards-agenda {
  --cards-visiveis: 4;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.card-evento {
  flex: 0 0 calc((100% - (1.5rem * (var(--cards-visiveis) - 1))) / var(--cards-visiveis));
  border: 1px solid var(--cor-borda);
  border-radius: 4px;
  padding: 2rem 1.2rem;
  text-align: center;
  background-color: transparent;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.data-evento {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.cidade-evento {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.local-evento {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.botao-ingresso {
  border: 1px solid var(--cor-branco);
  background-color: transparent;
  color: var(--cor-branco);
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.botao-ingresso:hover {
  background-color: var(--cor-branco);
  color: var(--cor-preto);
}

.indicadores-pagina {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.ponto {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.ponto.ativo,
.ponto:hover {
  background-color: var(--cor-branco);
}

/* ========== RESPONSIVO - AJUSTE PRINCIPAL ========== */
@media (max-width: 992px) {
  .cards-agenda {
    --cards-visiveis: 2;
    gap: 1rem;
  }
  .card-evento {
    padding: 1.8rem 1rem;
  }
}

@media (max-width: 768px) {
  #agenda {
    padding: 3rem 0 4rem;
  }
  .titulo-agenda {
    font-size: 2.2rem !important;
  }
  .carrossel-agenda {
    gap: 0.75rem;
  }
  .cards-agenda {
    --cards-visiveis: 1;
  }
  .card-evento {
    padding: 1.5rem 1rem;
  }
  .cidade-evento {
    font-size: 1.1rem;
  }
  .local-evento {
    font-size: 0.9rem;
  }
  .seta-navegacao {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .titulo-agenda {
    font-size: 1.9rem !important;
  }
  .carrossel-agenda {
    gap: 0.5rem;
  }
  .seta-navegacao {
    width: 38px;
    height: 38px;
  }
}

/* ========== REDES SOCIAIS (GERAL) ========== */
.redes-sociais {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.redes-sociais a {
  font-size: 26px;
  color: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.icone-palco img {
  width: 26px !important;
  height: auto !important;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
  display: block;
}

.redes-sociais a:hover,
.icone-palco img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ========== PÁGINA DE INGRESSOS ========== */
#pagina-ingressos {
  background-color: var(--cor-preto);
  padding: 6rem 0;
  color: var(--cor-branco);
}

#pagina-ingressos h2 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: var(--cor-branco);
}

#pagina-ingressos .linha-titulo {
  width: 80px;
  height: 1px;
  background-color: var(--cor-branco);
  margin: 0 auto 4rem;
}

.card-ingresso-destaque {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  margin: 4rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.imagem-evento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-evento {
  padding: 2rem;
}

.info-evento h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--cor-branco);
}

.data-local {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.descricao {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tabela-valores {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.lote-ingresso {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 1.1rem;
}

.preco {
  font-weight: 700;
  color: #f8d32b;
}

.btn-comprar {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  border: 1px solid var(--cor-branco);
  background-color: transparent;
  color: var(--cor-branco);
  transition: all 0.3s;
  display: inline-block;
}
.btn-comprar:hover {
  background-color: var(--cor-branco);
  color: var(--cor-preto);
}

.formulario-compra {
  background-color: #111;
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.formulario-compra h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.campos-linha {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.campo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.campo label {
  font-size: 0.95rem;
  opacity: 0.8;
}

.campo input,
.campo select {
  padding: 0.8rem 1rem;
  background-color: #222;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
}

.pagamento {
  margin: 2rem 0;
}

.pagamento h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.opcoes-pagamento {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.opcao {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  border: 1px solid #444;
  border-radius: 4px;
  transition: all 0.3s;
}

.opcao:hover {
  border-color: #fff;
}

.btn-finalizar {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  background-color: #f8d32b;
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-finalizar:hover {
  background-color: #fff;
  color: #000;
}

.regras-compra {
  background-color: #111;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #f8d32b;
}

.regras-compra h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.regras-compra ul {
  list-style: none;
  line-height: 2;
  opacity: 0.85;
}

@media (max-width: 992px) {
  .card-ingresso-destaque {
    grid-template-columns: 1fr;
  }
  .campos-linha {
    flex-direction: column;
  }
  .opcoes-pagamento {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  #pagina-ingressos {
    padding: 3.5rem 0;
  }

  #pagina-ingressos h2 {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
  }

  .card-ingresso-destaque {
    margin: 2rem 0;
    gap: 0;
  }

  .info-evento,
  .formulario-compra,
  .regras-compra {
    padding: 1.5rem;
  }

  .info-evento h3 {
    font-size: 1.7rem;
  }

  .data-local,
  .descricao,
  .lote-ingresso {
    font-size: 1rem;
  }

  .lote-ingresso {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

/* ========== PÁGINA DE GALERIA ========== */
#pagina-galeria {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.09), transparent 35%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
}

.galeria-hero {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.galeria-kicker {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.galeria-hero h1 {
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.galeria-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.video-destaque-galeria {
  margin: 0 0 3rem;
}

.palco-video {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.14);
  background-color: #050505;
}

/* Troque entre .palco-video--contido e .palco-video--cinematic no HTML */
.palco-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.palco-video--contido video {
  object-fit: contain;
  transform: scale(0.92);
}

.palco-video--cinematic video {
  object-fit: cover;
  transform: scale(1);
}

.camada-video {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 30%);
}

.palco-video--contido .camada-video {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.16) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 30%);
}

.palco-video--cinematic .camada-video {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.24) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 30%);
}

.conteudo-video-galeria {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 3rem;
}

.video-tag {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
}

.conteudo-video-galeria h2 {
  font-size: 2.6rem;
  line-height: 1.04;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.conteudo-video-galeria p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.grade-galeria {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.item-galeria {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background-color: #111;
  cursor: pointer;
  min-height: 320px;
  padding: 0;
  color: var(--cor-branco);
}

.item-galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.item-galeria::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.item-galeria:hover img,
.item-galeria:focus-visible img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

.item-galeria:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.destaque-horizontal {
  grid-column: span 8;
  min-height: 420px;
}

.destaque-vertical {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 420px;
}

.info-galeria {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}

.info-galeria strong {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-galeria span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
}

.lightbox-galeria {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: rgba(0,0,0,0.38);
  backdrop-filter: blur(22px) saturate(0.8);
  -webkit-backdrop-filter: blur(22px) saturate(0.8);
  z-index: 12000;
}

.lightbox-galeria.aberto {
  display: flex;
}

/* Troque entre .lightbox-galeria--contida e .lightbox-galeria--editorial no HTML */
.conteudo-lightbox {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: center;
  gap: 1.25rem;
  background: rgba(8,8,8,0.56);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.figura-lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1.25rem 0 1.25rem 1.25rem;
}

.conteudo-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 88vh;
}

.lightbox-galeria--contida .conteudo-lightbox img {
  object-fit: contain;
  max-width: 100%;
  max-height: 88vh;
}

.lightbox-galeria--editorial .conteudo-lightbox {
  width: min(1500px, 100%);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 320px);
}

.lightbox-galeria--editorial .figura-lightbox {
  padding: 0;
  min-height: 78vh;
  background-color: rgba(255,255,255,0.02);
}

.lightbox-galeria--editorial .conteudo-lightbox img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: 78vh;
  object-fit: cover;
}

.lightbox-galeria--editorial .texto-lightbox {
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.texto-lightbox {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.texto-lightbox h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.texto-lightbox p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.fechar-lightbox {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.55);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .galeria-hero h1 {
    font-size: 2.8rem;
  }

  .palco-video {
    min-height: 320px;
  }

  .conteudo-video-galeria {
    padding: 2rem;
  }

  .conteudo-video-galeria h2 {
    font-size: 2.1rem;
  }

  .item-galeria,
  .destaque-horizontal,
  .destaque-vertical {
    grid-column: span 6;
    grid-row: auto;
    min-height: 300px;
  }

  .conteudo-lightbox {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .figura-lightbox {
    padding: 1rem 1rem 0;
  }

  .conteudo-lightbox img {
    max-height: 62vh;
  }

  .lightbox-galeria--editorial .conteudo-lightbox {
    width: min(1200px, 100%);
    grid-template-columns: 1fr;
  }

  .lightbox-galeria--editorial .figura-lightbox {
    min-height: auto;
    padding: 1rem 1rem 0;
  }

  .lightbox-galeria--editorial .conteudo-lightbox img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 62vh;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  #pagina-galeria {
    padding: 3.5rem 0 4rem;
  }

  .galeria-hero h1 {
    font-size: 2.2rem;
  }

  .galeria-intro {
    font-size: 0.98rem;
  }

  .video-destaque-galeria {
    margin-bottom: 2rem;
  }

  .palco-video {
    min-height: 260px;
  }

  .camada-video {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.82) 100%);
  }

  .conteudo-video-galeria {
    max-width: none;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
  }

  .conteudo-video-galeria h2 {
    font-size: 1.6rem;
  }

  .grade-galeria {
    grid-template-columns: 1fr;
  }

  .item-galeria,
  .destaque-horizontal,
  .destaque-vertical {
    grid-column: auto;
    min-height: 260px;
  }

  .lightbox-galeria {
    padding: 1rem;
  }

  .figura-lightbox {
    padding: 0.75rem 0.75rem 0;
  }

  .texto-lightbox {
    padding: 1.25rem;
  }

  .texto-lightbox h2 {
    font-size: 1.35rem;
  }
}

/* ========== RODAPÉ - MODELO NEGRA LI ========== */
footer {
    background-color: #000000;
    padding: 3rem 0 2rem;
    border-top: 1px solid #222;
    margin-top: 3rem;
    color: #ffffff;
}

/* CONTAINER DAS COLUNAS */
.rodape-colunas {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* CADA COLUNA */
.coluna-rodape {
    flex: 1;
    min-width: 140px;
}

.coluna-rodape h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.coluna-rodape p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

/* ÍCONES EM QUADRADOS (IGUAL NO EXEMPLO) */
.redes-sociais-quadro {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.redes-sociais-quadro a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.redes-sociais-quadro a img {
    width: 18px;
    height: auto;
    /* Deixa ícones PRETOS dentro da caixa branca */
    filter: brightness(0) invert(0);
}

.redes-sociais-quadro a:hover {
    background-color: #ccc;
    transform: translateY(-3px);
}

/* LINHA DOS DIREITOS AUTORAIS */
.linha-direitos {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-bottom: 1rem;
}

.linha-direitos p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}

/* LINHA DESENVOLVIDO POR */
.linha-desenvolvido {
    text-align: center;
}

.linha-desenvolvido p {
    font-size: 0.85rem;
    opacity: 0.5;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-dev {
    height: 20px;
    width: auto;
    opacity: 0.8;
}

/* RESPONSIVO (PARA CELULAR) */
@media (max-width: 768px) {
    .rodape-colunas {
        flex-direction: column;
        text-align: center;
    }
    .coluna-rodape {
        width: 100%;
    }
    .redes-sociais-quadro {
        justify-content: center;
    }
    .linha-desenvolvido p {
        flex-direction: column;
    }
}

/* ===== SEÇÃO NOTÍCIAS - ESTILO NEGRA LI ===== */
.secao-noticias {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

.titulo-secao {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.linha-titulo {
  width: 70px;
  height: 2px;
  background-color: #ffffff;
  margin: 0 auto 50px auto;
  opacity: 0.8;
}

/* ESTRUTURA DO CARROSSEL */
.carrossel-noticias {
  position: relative;
  width: 100%;
  min-height: 560px;
}

.item-noticia {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.item-noticia.ativo {
  display: grid;
  opacity: 1;
  position: relative;
}

/* IMAGEM */
.imagem-noticia img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* CONTEÚDO TEXTO */
.conteudo-noticia h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 25px 0;
  letter-spacing: -0.5px;
}

.conteudo-noticia p {
  font-size: 17px;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 35px 0;
  max-width: 42ch;
}

.botao-noticia {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
}

.botao-noticia:hover {
  background-color: transparent;
  color: #ffffff;
}

/* BOTÕES DE NAVEGAÇÃO ESQUERDA/DIREITA */
.btn-anterior, .btn-proximo {
  position: absolute;
  bottom: 30px;
  left: 0;
  background-color: #ffffff;
  color: #000000;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.btn-proximo {
  left: 55px;
}

.btn-anterior:hover, .btn-proximo:hover {
  background-color: #cccccc;
}

/* INDICADORES (BOLINHAS LADO DIREITO) */
.indicadores {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.indicador {
  width: 12px;
  height: 12px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.indicador.ativo {
  background-color: #ffffff;
  opacity: 1;
}

/* RESPONSIVO - CELULAR E TABLET */
@media (max-width: 992px) {
  .carrossel-noticias {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .item-noticia {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .conteudo-noticia h3 {
    font-size: 32px;
  }

  .conteudo-noticia p {
    font-size: 15px;
  }

  .indicadores {
    display: none;
  }

  .btn-anterior, .btn-proximo {
    top: auto;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .secao-noticias {
    padding: 3.5rem 0;
  }

  .titulo-secao {
    font-size: 2rem;
  }

  .carrossel-noticias {
    display: grid;
    gap: 2rem;
    padding-bottom: 0;
  }

  .item-noticia,
  .item-noticia.ativo {
    display: grid !important;
    position: relative;
    opacity: 1;
    gap: 1.5rem;
  }

  .conteudo-noticia {
    padding: 0;
  }

  .conteudo-noticia h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .conteudo-noticia p {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
    max-width: none;
  }

  .btn-anterior,
  .btn-proximo,
  .indicadores {
    display: none !important;
  }
}
/* ========== MENU MOBILE - CÓDIGO CORRIGIDO ========== */

/* Botão do menu sanduíche */
#botaoMenu {
    display: none;
    background: transparent !important;
    border: none !important;
    font-size: 1.8rem !important;
    color: var(--cor-branco) !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
    z-index: 10000 !important;
}

/* Container do menu que abre */
#menuMobile {
    display: none;
    background-color: var(--cor-preto) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2) !important;
    padding: 0 !important;
}

/* Links dentro do menu */
#menuMobile a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    color: var(--cor-branco) !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #222 !important;
    font-size: 1.1rem !important;
    transition: background 0.2s ease !important;
}

#menuMobile a:hover {
    background-color: #111 !important;
}

#menuMobile a.menu-ativo {
    background-color: #111 !important;
    border-bottom-color: var(--cor-branco) !important;
}

/* Classe que o JavaScript usa para ABRIR o menu */
#menuMobile.aberto {
    display: block !important;
}

/* Regra para aparecer só no celular/tablet */
@media (max-width: 992px) {
    nav.desktop {
        display: none !important; /* Esconde menu normal */
    }
    #botaoMenu {
        display: block !important; /* Mostra o botão sanduíche */
    }
    header .container {
        justify-content: space-between !important;
    }
}

@media (max-width: 768px) {

    .logo img {
        height: 62px;
    }

    header.rolou .logo img {
        height: 56px;
    }

    header {
        padding: 0.75rem 0;
    }

    #menuMobile a {
        font-size: 1rem !important;
    }
}
