
/* =========================================================
   SUPER MOSTRA DE PALHAÇARIA – TEMA VISUAL OFICIAL
   Arquivo CSS de identidade visual
   ========================================================= */

   /* =========================
   FONTES SUPER MOSTRA
========================= */

@font-face {
  font-family: 'Cratense';
  src: url('../fonts/Cratense.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvantGarde';
  src: url('../fonts/ITCAvantGardeStd-Bk.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MavenProBlack';
  src: url('../fonts/Maven Pro Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'MavenProMedium';
  src: url('../fonts/Maven Pro Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'MyriadProBold';
  src: url('../fonts/MyriadPro-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Troika';
  src: url('../fonts/troika.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Texto base do site */
body {
  font-family: 'MavenProMedium', 'Inter', sans-serif;
}

/* Títulos grandes / identidade do festival */
h1, h2 {
  font-family: 'Troika', 'AvantGarde', sans-serif;
  letter-spacing: 0.5px;
}

/* Subtítulos */
h3, h4 {
  font-family: 'AvantGarde', 'MavenProBlack', sans-serif;
}

/* Cards de espetáculo */
.festival-info h4 {
  font-family: 'Troika', sans-serif;
}

/* Meta informações (data, grupo, classificação) */
.festival-info p,
.meta {
  font-family: 'MavenProMedium', sans-serif;
}

/* Botões */
.btn {
  font-family: 'MyriadProBold', 'MavenProBlack', sans-serif;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Destaques artísticos, frases ou chamadas especiais */
.destaque, .hero-content h1 span {
  font-family: 'Cratense', 'Troika', cursive;
}

/* --------------------
   VARIÁVEIS DE CORES
-------------------- */

:root {
  --vermelho-fundo: #E53935;
  --vermelho-destaque: #F04A3A;

  --amarelo-festival: #FFC72C;
  --amarelo-claro: #FFE07A;

  --azul-petroleo: #0E5C6D;
  --azul-claro: #2FA4B8;

  --verde-folha: #0FB9A8;
  --rosa-detalhe: #F25C9A;

  --preto-festival: #111111;
  --branco: #FFFFFF;
}

/* --------------------
   BASE
-------------------- */

body {
  font-family: "Inter", sans-serif;
  color: var(--preto-festival);
  background-color: var(--branco);
}

p, li, span {
  color: var(--preto-festival);
}

h1, h2, h3, h4, h5 {
  color: var(--azul-petroleo);
  font-weight: 800;
}

/* --------------------
   HERO / TOPO
-------------------- */

.hero-area {
  background: radial-gradient(circle at top, var(--vermelho-destaque), var(--vermelho-fundo));
  color: var(--branco);
}

.hero-area h1,
.hero-area p {
  color: var(--branco);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.25);
}

/* --------------------
   NAVBAR
-------------------- */

.navbar-area {
  background: var(--amarelo-festival);
}

.navbar-nav .nav-item a {
  color: var(--preto-festival);
  font-weight: 700;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: var(--azul-petroleo);
}

/* --------------------
   BOTÕES
-------------------- */

.btn, button, a.btn {
  background-color: var(--amarelo-festival);
  color: var(--preto-festival);
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 26px;
  transition: 0.3s ease;
}

.btn:hover, a.btn:hover {
  background-color: var(--azul-petroleo);
  color: var(--branco);
}

/* --------------------
   SECTIONS
-------------------- */

.section:nth-of-type(even) {
  background-color: var(--amarelo-claro);
}

.section:nth-of-type(odd) {
  background-color: var(--branco);
}

.section-title h2 {
  color: var(--azul-petroleo);
}

.section-title h3 {
  color: var(--vermelho-destaque);
}

/* --------------------
   CARDS DE ESPETÁCULOS
-------------------- */

.festival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.festival-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: var(--branco);
  align-items: flex-start;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.festival-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.festival-info h4 {
  color: var(--azul-petroleo);
}

.festival-info p {
  color: var(--preto-festival);
}

/* --------------------
   CALL TO ACTION
-------------------- */

.call-action {
  background: radial-gradient(circle at top, var(--vermelho-destaque), var(--vermelho-fundo));
  color: var(--branco);
}

.call-action h2,
.call-action p {
  color: var(--branco);
}

/* --------------------
   FOOTER
-------------------- */

.footer {
  background: var(--azul-petroleo);
  color: var(--branco);
}

.footer h3 {
  color: var(--amarelo-festival);
}

.footer a:hover {
  color: var(--rosa-detalhe);
}

/* --------------------
   RESPONSIVO
-------------------- */

@media (max-width: 900px) {
  .festival-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   CORREÇÃO DE CONTRASTE – ESPETÁCULOS
======================================== */

/* Card */
.festival-item {
  background: #ffffff !important;
}

/* Todos os textos dentro do card */
.festival-item *,
.festival-info,
.festival-info h4,
.festival-info p,
.festival-info span,
.festival-info strong {
  color: #111111 !important;
}

/* Nome do espetáculo */
.festival-info h4 {
  color: #0E5C6D !important; /* azul da paleta */
  font-weight: 800;
}

/* Informações (grupo, data, classificação) */
.festival-info .grupo,
.festival-info .meta {
  color: #333333 !important;
  font-weight: 600;
}

/* Sinopse */
.festival-info .sinopse {
  color: #222222 !important;
  line-height: 1.45;
}

/* Botão */
.festival-info .btn {
  background-color: #FFC72C !important;
  color: #111111 !important;
}

.festival-info .btn:hover {
  background-color: #0E5C6D !important;
  color: #ffffff !important;
}

/* ========================================
   SELos, BADGES E ETIQUETAS – SUPERMOSTRA
======================================== */

.festival-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

/* 🎟️ GRATUITO */
.badge-gratuito {
  background: #0FB9A8;
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* 📅 DATA */
.badge-data {
  background: #FFC72C;
  color: #111;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
}

/* 🔞 CLASSIFICAÇÃO */
.badge-classificacao {
  background: #E53935;
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ♿ ACESSIBILIDADE */
.badge-acess {
  background: #2FA4B8;
  color: #fff;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Organização */
.festival-info h4 {
  margin-top: 4px;
}

.festival-info .grupo {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.festival-info .sinopse {
  font-size: 0.85rem;
  margin-top: 6px;
}

/* Botão */
.festival-info .btn {
  margin-top: 10px;
  border-radius: 20px;
}
/* ========================================
   CLASSIFICAÇÃO INDICATIVA – PADRÃO VISUAL
======================================== */

.badge-classificacao {
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
  letter-spacing: 0.3px;
}

/* LIVRE = VERDE */
.class-livre {
  background: #2ECC71;
}

/* 10 ANOS = AZUL */
.class-10 {
  background: #3498DB;
}

/* 12 ANOS = LARANJA */
.class-12 {
  background: #F39C12;
}

/* 14 ANOS = VERMELHO */
.class-14 {
  background: #E74C3C;
}

/* ========================================
   VARIAÇÃO AZUL – SEGUNDA CALL TO ACTION
======================================== */

.call-action.alt {
  background: radial-gradient(circle at top left, #0f2a44, #071826 65%);
  border-top: 2px solid rgba(255, 199, 44, 0.25);
  border-bottom: 2px solid rgba(255, 199, 44, 0.25);
}

.call-action.alt .card-custom {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 34px rgba(0,0,0,0.75);
}

.call-action.alt h3 {
  color: #7cc7ff; /* azul claro de destaque */
}

.call-action.alt .meta {
  color: #cfe8ff;
}

.call-action.alt .festival-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(124,199,255,0.15);
}

.call-action.alt .festival-item:hover {
  box-shadow: 0 14px 38px rgba(0,0,0,0.85);
  transform: translateY(-4px);
}

/* ========================================
   CALENDÁRIO COLORIDO – INSCRIÇÕES ABERTAS
======================================== */

.calendario-colorido {
  background: #F4E41B;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* caixinha central */
.calendario-box {
  background: transparent;
  padding: 30px 20px;
}

/* subtítulo */
.calendario-colorido h3 {
  color: #14A6A1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* título principal */
.calendario-colorido h2 {
  color: #3F4AA1;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* barra gráfica inspirada no layout */
.calendario-barra {
  width: 180px;
  height: 10px;
  background: linear-gradient(90deg, #14A6A1, #E53935);
  border-radius: 20px;
  margin: 0 auto 18px;
}

/* texto */
.calendario-colorido .meta {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 600;
}

/* responsivo */
@media (max-width: 768px) {
  .calendario-colorido h2 {
    font-size: 34px;
  }
}

/* ========================================
   FIX CONTRASTE – CALENDÁRIO COLORIDO
======================================== */

.calendario-colorido,
.calendario-colorido * {
  color: #1E1E1E !important;
}

.calendario-colorido h3 {
  color: #14A6A1 !important;
}

.calendario-colorido h2 {
  color: #3F4AA1 !important;
}

.calendario-colorido .meta {
  color: #1E1E1E !important;
}

/* ========================================
   SCROLL TOP – PALETA SUPER MOSTRA
======================================== */

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  background: #3F4AA1; /* azul do cartaz */
  color: #F4E41B; /* amarelo do cartaz */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.6);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  background: #E53935; /* vermelho do cartaz */
  color: #fff;
  transform: translateY(0) scale(1.08);
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ========================================
   REDES – LISTA
======================================== */

footer.footer ul.redes-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* links */
footer.footer ul.redes-footer li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

/* ícones LineIcons */
footer.footer ul.redes-footer li a i.lni,
footer.footer ul.redes-footer li a i.lni-instagram {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 26px;
  transition: all 0.3s ease;
}

/* texto @ */
footer.footer ul.redes-footer li a span {
  color: #3F4AA1 !important; /* azul da paleta */
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

/* hover */
footer.footer ul.redes-footer li a:hover i {
  color: #E53935 !important;
  -webkit-text-fill-color: #E53935 !important;
  transform: scale(1.15) rotate(-6deg);
}

footer.footer ul.redes-footer li a:hover span {
  color: #ffffff !important;
}

/* =========================================================
   FOOTER SUPER MOSTRA – VERSÃO FINAL LIMPA
========================================================= */

footer.footer {
  background: linear-gradient(135deg, #3F4AA1, #14A6A1);
  color: #ffffff;
}

/* espaçamento */
footer.footer .footer-top {
  padding: 80px 0;
}

/* textos */
footer.footer p,
footer.footer .meta {
  color: #f2f6ff !important;
  font-size: 15px;
  line-height: 1.6;
}

/* títulos */
footer.footer h5 {
  color: #F4E41B !important;
  font-weight: 900;
  margin-bottom: 12px;
}

/* ================= REDES ================= */

footer.footer ul.redes-footer {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer.footer ul.redes-footer li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  font-weight: 800;
}

/* ÍCONE INSTAGRAM */
footer.footer ul.redes-footer li a i,
footer.footer ul.redes-footer li a i.lni,
footer.footer ul.redes-footer li a i.lni-instagram {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 26px;
  transition: all 0.3s ease;
}

/* TEXTO @ */
footer.footer ul.redes-footer li a span {
  color: #F4E41B !important;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

/* HOVER */
footer.footer ul.redes-footer li a:hover i {
  color: #E53935 !important;
  -webkit-text-fill-color: #E53935 !important;
  transform: scale(1.15) rotate(-6deg);
}

footer.footer ul.redes-footer li a:hover span {
  color: #ffffff !important;
}

/* =========================================================
   HEADER – PALETA SUPER MOSTRA
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: linear-gradient(135deg, #3F4AA1, #14A6A1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* leve textura de vidro */
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 40%);
  pointer-events: none;
}

/* espaçamento */
.header .nav-inner {
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

/* links */
.header .nav-link {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-left: 14px;
  position: relative;
}

/* efeito sublinhado */
.header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #F4E41B;
  border-radius: 3px;
  transition: width .25s ease;
}

.header .nav-link:hover::after {
  width: 100%;
}

.header .nav-link:hover {
  color: #F4E41B !important;
}

/* botão ficha técnica */
.header .nav-ficha {
  background: #F4E41B;
  color: #1b1b1b !important;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 900;
  margin-left: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.header .nav-ficha:hover {
  background: #ffffff;
  color: #3F4AA1 !important;
}

/* botão mobile */
.navbar-toggler {
  border: none;
  z-index: 3;
}

.toggler-icon {
  width: 26px;
  height: 3px;
  background: #ffffff;
  display: block;
  margin: 5px 0;
  border-radius: 2px;
}

/* menu mobile */
@media (max-width: 991px) {

  .navbar-collapse {
    background: linear-gradient(180deg, #3F4AA1, #14A6A1);
    padding: 20px;
    border-radius: 18px;
    margin-top: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }

  .header .nav-link {
    display: block;
    margin: 12px 0;
    font-size: 20px;
  }

  .header .nav-ficha {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
  }
}

/* =========================================================
   FIX HEADER NO SCROLL – REMOVE FUNDO BRANCO DO TEMPLATE
========================================================= */

.header.sticky,
.header.scroll-header,
.header.navbar-fixed,
.header.sticky-active,
.header.scrolled {
  background: linear-gradient(135deg, #3F4AA1, #14A6A1) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35) !important;
}

.header.sticky .nav-link,
.header.scroll-header .nav-link,
.header.navbar-fixed .nav-link,
.header.sticky-active .nav-link,
.header.scrolled .nav-link {
  color: #ffffff !important;
}

.header.sticky .nav-link:hover,
.header.scroll-header .nav-link:hover,
.header.navbar-fixed .nav-link:hover,
.header.sticky-active .nav-link:hover,
.header.scrolled .nav-link:hover {
  color: #F4E41B !important;
}

/* garante que o botão ficha não fique branco */
.header.sticky .nav-ficha,
.header.scroll-header .nav-ficha,
.header.navbar-fixed .nav-ficha,
.header.sticky-active .nav-ficha,
.header.scrolled .nav-ficha {
  background: #F4E41B !important;
  color: #1b1b1b !important;
}
