/* ==================================================
   LAYOUT GLOBAL
================================================== */

.section{
  padding:40px 20px;
}

.section-center{
  text-align:center;
}

.section-white{
  background:#fff;
}

.section-green{
  background:linear-gradient(135deg,#0f5132,#198754);
  color:#fff;
}

.section-red{
  background:linear-gradient(135deg,#8b1111,#c61f1f);
  color:#fff;
}

/* ==================================================
   CONTAINER PADRÃO
================================================== */

.wrap{
    width:min(1480px, calc(100% - 56px));
    margin:0 auto;
    padding:0;
}
/* ==================================================
   ESPAÇAMENTO GLOBAL ENTRE BLOCOS
================================================== */

.hero-master{
  padding:35px 0 20px;
}

.main-container{
  padding-top:10px;
}

.content-grid{
  display:flex;
  flex-direction:column;
  gap:26px;
}

/* ==================================================
   PREMIAÇÃO
================================================== */

.premios-section{
  margin-top:10px;
}

/* ==================================================
   PRODUTOS
================================================== */

#comprar{
  margin-top:8px;
}

/* ==================================================
   ENQUETE
================================================== */

.enquete-callout{
  margin-top:14px;
  margin-bottom:18px;
}

/* ==================================================
   VIP
================================================== */

.vip-section{
  padding-top:10px;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:768px){

.section{
  padding:26px 14px;
}

.hero-master{
  padding:22px 0 14px;
}

.content-grid{
  gap:18px;
}

.enquete-callout{
  margin-top:10px;
  margin-bottom:12px;
}

}

/* ========================================
   PROGRAMAÇÃO PREMIUM
======================================== */

.programacao-premium {
  padding: 90px 0;
  background:
    linear-gradient(to bottom,
    #fff8ef,
    #fff3df);
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-mini-title {
  display: inline-block;
  background: #8b1111;
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header-center h2 {
  font-size: 38px;
  color: #7a0916;
  margin-bottom: 15px;
  font-weight: 900;
}

.section-header-center p {
  font-size: 18px;
  color: #555;
}

.programacao-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 45px;
  align-items: center;
}

.cartaz-oficial {
  width: 100%;
  border-radius: 28px;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.18);
}

.timeline-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 24px;
  border-radius: 24px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
  transition: .3s;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-item.destaque {
  background:
    linear-gradient(135deg,
    #8b1111,
    #b91c1c);
  color: white;
}

.hora {
  min-width: 75px;
  height: 75px;
  border-radius: 20px;
  background: #facc15;
  color: #7a0916;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.timeline-item p {
  line-height: 1.6;
  opacity: .92;
}

/* ========================================
   ATRAÇÕES PREMIUM
======================================== */

.atracoes-section {
  padding: 110px 0;
  background:
    linear-gradient(
      to bottom,
      #140404,
      #220606
    );
  position: relative;
  overflow: hidden;
}

.section-header-center.light h2,
.section-header-center.light p {
  color: white;
}

.atracoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.show-premium-card {
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 35px;

  overflow: hidden;

  backdrop-filter: blur(12px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.35);

  transition: .4s;
}

.show-premium-card:hover {
  transform:
    translateY(-12px)
    scale(1.01);
}

.show-image-area {
  height: 420px;
  display: flex;
  align-items: end;
  justify-content: center;
  background:
    radial-gradient(
      circle at center,
      rgba(255,196,0,0.18),
      transparent 70%
    );
  overflow: hidden;
}

.show-main-image {
  max-height: 100%;
  object-fit: contain;
}

.show-content {
  padding: 35px;
}

.show-badge {
  display: inline-block;
  padding: 10px 18px;
  background: #107a3b;
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.show-badge.red {
  background: #b91c1c;
}

.show-content h3 {
  color: white;
  font-size: 36px;
  margin-bottom: 18px;
  font-weight: 900;
}

.show-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

.show-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.show-tags span {
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.btn-show-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 16px;
  background: #107a3b;
  color: white;
  text-decoration: none;
  font-weight: 800;
  transition: .3s;
}

.btn-show-video:hover {
  transform: scale(1.05);
}

.btn-show-video.red {
  background: #dc2626;
}

/* ========================================
   GALERIA CINEMATOGRÁFICA
======================================== */

.galeria-cinema {
  padding: 120px 0;
  background:
    linear-gradient(
      to bottom,
      #fff8ef,
      #ffffff
    );
}

.estatisticas-evento {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin:
    60px 0 70px;
}

.stat-card {
  background: white;
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.stat-card h3 {
  font-size: 38px;
  color: #8b1111;
  margin-bottom: 12px;
  font-weight: 900;
}

.stat-card p {
  color: #666;
  line-height: 1.5;
}

.foto-premium{

    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:180px;
    background:#000;
    box-shadow:
    0 15px 35px rgba(0,0,0,.18);
    transition:.4s;
    height: 100%;
}


.foto-premium.grande{

    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
}

.foto-premium img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.foto-premium:hover img {
  transform: scale(1.08);
}

.overlay-foto{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:24px;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.25),
    transparent);

    color:#fff;
}

.overlay-foto h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 800;
}

.overlay-foto p {
  opacity: .9;
  line-height: 1.6;
}

.foto-premium.vertical{

    grid-column: span 3;

    grid-row: span 2;

    height: 380px;
}
.foto-premium.media{

    grid-column: span 4;
}

.foto-premium:hover{

    transform:
    translateY(-6px)
    scale(1.02);

    box-shadow:
    0 25px 50px rgba(0,0,0,.35);
}

.foto-premium:hover img{

    transform:scale(1.08);
}
/* =====================================================
   MELHORIAS FPSS 2027 — VERSÃO FINAL LIMPA
===================================================== */

/* ---- PROGRAMAÇÃO + ATRAÇÕES: 2 colunas lado a lado ---- */
.dual-section-wrap {
  background: linear-gradient(to bottom, #fdf6ee, #faebd7);
  padding: 36px 0;
}
.dual-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.dual-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dual-col__header { display: flex; flex-direction: column; gap: 6px; }
.dual-col__title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #1a0000;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.dual-programacao { display: flex; gap: 12px; align-items: flex-start; }
.mini-cartaz-wrap { flex-shrink: 0; }
.mini-cartaz { width: 80px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,.14); }

/* Timeline na coluna */
.dual-col .timeline-box { gap: 7px; flex: 1; display: flex; flex-direction: column; }
.dual-col .timeline-item {
  display: flex; gap: 10px; padding: 9px 12px;
  border-radius: 8px; background: #fff; border: 1px solid #ede0d0;
  align-items: center; box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.dual-col .timeline-item.destaque {
  background: linear-gradient(135deg,#8b1111,#b91c1c);
  border-color: transparent;
}
.dual-col .hora { min-width:40px; width:40px; height:40px; font-size:11px; border-radius:7px; flex-shrink:0; }
.dual-col .timeline-item h3 { font-size:12px; margin-bottom:1px; color:#1a0000; font-family:'Merriweather',Georgia,serif; }
.dual-col .timeline-item p  { font-size:10px; color:#666; line-height:1.3; opacity:1; margin:0; }
.dual-col .timeline-item.destaque h3,
.dual-col .timeline-item.destaque p { color:#fff !important; }

/* Atrações na coluna */
.dual-col .atracoes-grid { display:flex; flex-direction:column; gap:10px; }
.dual-col .show-premium-card {
  display: flex; flex-direction: row;
  border-radius: 10px; overflow: hidden;
  background: #fff; border: 1px solid #e8e0d8;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); min-height:120px;
}
.dual-col .show-image-area {
  width: 160px; min-width: 160px; height: 120px;
  background: #f5f0ea; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.dual-col .show-main-image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; max-height: none;
}
.dual-col .show-content {
  flex: 1; padding: 10px 12px; background: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.dual-col .show-badge { padding:2px 8px; font-size:8px; margin-bottom:4px; border-radius:3px; display:inline-block; }
.dual-col .show-content h3 { font-size:12px; color:#1a0000; font-family:'Merriweather',Georgia,serif; margin:0; }
.dual-col .show-content p  { font-size:10px; color:#666; line-height:1.3; margin:0; }
.dual-col .show-tags { gap:4px; margin:4px 0; flex-wrap:wrap; display:flex; }
.dual-col .show-tags span { padding:2px 7px; font-size:9px; background:#f5f0ea; color:#555; border:1px solid #e0d8cc; border-radius:999px; }
.dual-col .btn-show-video { padding:5px 10px; font-size:9px; border-radius:5px; align-self:flex-start; }

/* ---- GALERIA: 3 colunas, 1ª = 2 linhas ---- */
.galeria-cinema { background:#fdf6ee; padding:32px 0; }
.estatisticas-evento { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:16px 0 18px; }
.stat-card { padding:14px 12px; border-radius:10px; border:1px solid #e8e0d8; box-shadow:0 1px 6px rgba(0,0,0,.05); background:#fff; }
.stat-card h3 { font-size:1.1rem; margin-bottom:3px; }
.stat-card p  { font-size:11px; }

.galeria-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 140px 140px;
  gap: 8px;
  margin-top: 12px;
}
.galeria-grid-premium .foto-premium:nth-child(1) { grid-column:1/2; grid-row:1/3; height:100%; }
.galeria-grid-premium .foto-premium:nth-child(2) { grid-column:2/3; grid-row:1/2; }
.galeria-grid-premium .foto-premium:nth-child(3) { grid-column:3/4; grid-row:1/2; }
.galeria-grid-premium .foto-premium:nth-child(4) { grid-column:2/3; grid-row:2/3; }
.galeria-grid-premium .foto-premium:nth-child(5) { grid-column:3/4; grid-row:2/3; }
/* Desativa classes antigas de span */
.galeria-grid-premium .foto-premium.grande,
.galeria-grid-premium .foto-premium.vertical,
.galeria-grid-premium .foto-premium.media { grid-column:unset; grid-row:unset; }
.galeria-grid-premium .foto-premium { border-radius:10px; height:100%; }
.overlay-foto { padding:8px; }
.overlay-foto h3 { font-size:11px; margin:0; }
.overlay-foto p  { display:none; }

/* ---- LOCALIZAÇÃO: 3 colunas ---- */
.localizacao-premium { background:#fff; padding:28px 0; }
.local-grid-3col {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
  align-items: stretch;
}
.local-mapa-col { display:flex; flex-direction:column; }
.local-mapa-col .mapa-box {
  flex: 1; min-height:300px; border-radius:10px;
  border:1px solid #e8e0d8; overflow:hidden; position:relative;
  box-shadow:0 2px 8px rgba(0,0,0,.07);
}
.local-mapa-col .mapa-box iframe {
  position:absolute; top:0; left:0; width:100%; height:100%; border:none;
}
.local-info-col { display:flex; flex-direction:column; gap:7px; }
.local-info-col .local-card {
  display:flex; gap:9px; padding:10px 12px; border-radius:8px;
  background:#fdf6ee; border:1px solid #e8e0d8; align-items:flex-start;
}
.local-info-col .local-card span { font-size:16px; }
.local-info-col .local-card h3   { font-size:11px; color:#1a0000; font-family:'Merriweather',Georgia,serif; margin-bottom:1px; font-weight:800; }
.local-info-col .local-card p    { font-size:10px; color:#666; }
.local-info-col .btn-localizacao {
  display:flex; align-items:center; justify-content:center;
  height:36px; border-radius:7px; font-size:11px; font-weight:800;
  background:linear-gradient(135deg,#cc0000,#990000); color:#fff;
  text-decoration:none; margin-top:6px;
}
.local-extra-col { display:flex; flex-direction:column; gap:7px; }
.local-extra-card { background:#fdf6ee; border:1px solid #e8e0d8; border-radius:8px; padding:10px 12px; flex:1; }
.local-extra-card__icon { font-size:1.1rem; margin-bottom:4px; }
.local-extra-card h3 { font-family:'Merriweather',Georgia,serif; font-size:11px; font-weight:900; color:#1a0000; margin-bottom:3px; }
.local-extra-card p  { font-size:10px; color:#666; line-height:1.4; margin-bottom:5px; }
.local-extra-card__btn { display:inline-flex; align-items:center; padding:4px 10px; border-radius:5px; background:#107a3b; color:#fff; font-size:10px; font-weight:700; text-decoration:none; }

/* ---- PARCEIROS: 10 colunas, logos grandes ---- */
.parceiros-premium { background:#fff; padding:28px 0 36px; }
.parceiros-premium .section-header-center h2 { color:#1a0000; font-family:'Merriweather',Georgia,serif; }
.parceiros-premium .section-header-center p  { color:#666; }
.parceiros-grid { display:grid; grid-template-columns:repeat(8,1fr); gap:10px; margin-top:20px; }
.parceiro-card {
  height:90px; border-radius:10px; background:#ffffff;
  border:1px solid #e8e0d8; display:flex; align-items:center;
  justify-content:center; padding:8px; overflow:hidden;
  transition:box-shadow .2s,transform .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.parceiro-card:hover { box-shadow:0 6px 16px rgba(0,0,0,.10); transform:translateY(-2px); }
.parceiro-card img { width:100%; height:100%; object-fit:contain; display:block; }

/* ---- ENQUETE + WHATSAPP: 2 colunas ---- */
.enquete-vip-wrap {
  display:grid; grid-template-columns:1fr 1fr;
  gap:16px; padding:28px 0; background:#fff;
}
.cta-enquete-wrap {
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:10px; background:#fff;
  border:1.5px solid #e8e0d8; border-radius:12px; padding:24px 20px; text-align:center;
}
.vip-box {
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:10px; background:#fff;
  border:1.5px solid #e8e0d8; border-radius:12px; padding:24px 20px; text-align:center;
}
.vip-box h2 { font-family:'Merriweather',Georgia,serif; font-size:1rem; color:#1a0000; font-weight:900; margin:0; }
.vip-box p  { font-size:13px; color:#555; line-height:1.5; margin:0; }

/* ---- MOBILE ---- */
@media (max-width:900px) {
  .dual-section-grid           { grid-template-columns:1fr; }
  .local-grid-3col             { grid-template-columns:1fr; }
  .parceiros-grid              { grid-template-columns:repeat(4,1fr); }
  .enquete-vip-wrap            { grid-template-columns:1fr; }
  .dual-col .show-premium-card { flex-direction:column; }
  .dual-col .show-image-area   { width:100%; height:120px; min-width:100%; }
  .galeria-grid-premium        { grid-template-rows:120px 120px; }
}
@media (max-width:480px) {
  .parceiros-grid { grid-template-columns:repeat(4,1fr); }
  .galeria-grid-premium {
    grid-template-columns:1fr 1fr;
    grid-template-rows:100px 100px 100px;
  }
  .galeria-grid-premium .foto-premium:nth-child(1) { grid-column:1/3; grid-row:1/2; }
  .galeria-grid-premium .foto-premium:nth-child(2) { grid-column:1/2; grid-row:2/3; }
  .galeria-grid-premium .foto-premium:nth-child(3) { grid-column:2/3; grid-row:2/3; }
  .galeria-grid-premium .foto-premium:nth-child(4) { grid-column:1/2; grid-row:3/4; }
  .galeria-grid-premium .foto-premium:nth-child(5) { grid-column:2/3; grid-row:3/4; }
}

/* =====================================================
   CARD DE ESTATÍSTICA — sem cédula (removida a pedido)
===================================================== */
.stat-card {
  position: relative;
}
