/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #111111;
  color: #e0d5c5;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TIPOGRAFIA
=========================== */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.4rem;
  color: #c8872a;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #c8872a;
  margin: 10px auto 0;
}

.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }

.section-sub {
  text-align: center;
  color: #b0a090;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ===========================
   BOTÕES
=========================== */
.btn-primary {
  display: inline-block;
  background: #c8872a;
  color: #fff;
  padding: 12px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #c8872a;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-radius: 2px;
}

.btn-primary:hover {
  background: transparent;
  color: #c8872a;
}

.btn-primary.full { width: 100%; text-align: center; }

.btn-link {
  color: #c8872a;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn-link:hover { opacity: 0.7; }

/* ===========================
   HEADER / NAV
=========================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid #2e2e2e;
  transition: box-shadow 0.3s;
}

#header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.8); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo a img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

#mainNav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}

#mainNav ul li a {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  color: #ffffff;
  padding: 8px 14px;
  transition: color 0.2s;
  display: block;
}

#mainNav ul li a:hover { color: #c8872a; }

.btn-nav {
  background: #c8872a !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.3s, color 0.3s !important;
}
.btn-nav:hover {
  background: #a06a1a !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #c8872a;
  transition: all 0.3s;
}

/* ===========================
   HERO SLIDER
=========================== */
.hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  margin-top: 90px;
  border: 12px solid #ffffff;
}

.slider { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1208;
}

/* Overlay escuro sobre o slide */
.slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}

/* Placeholder visual quando não há imagem */
.slide-img:not([style*="url"]) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #c8872a44;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 24px;
}

.slide-content h1 {
  font-size: clamp(1.8rem, 5vw, 4rem);
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 16px;
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #f0e8d8;
  margin-bottom: 28px;
  max-width: 600px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.btn-hero {
  display: inline-block;
  background: #c8872a;
  color: #fff;
  padding: 14px 38px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid #c8872a;
  transition: background 0.3s, color 0.3s;
}
.btn-hero:hover { background: transparent; color: #fff; border-color: #fff; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(200, 135, 42, 0.7);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 50%;
}
.slider-btn:hover { background: #c8872a; }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: 2px solid #c8872a;
  transition: background 0.3s;
}
.dot.active { background: #c8872a; }

/* ===========================
   EVENTO DESTAQUE
=========================== */
.evento-destaque {
  background: #0f0a05;
  padding: 70px 0;
  border-bottom: 1px solid #2a1f10;
}

.evento-destaque .container {
  padding-left: 0;
}

.evento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 52px;
  align-items: center;
  padding-left: 0;
}

.evento-texto h2 {
  font-size: 2.2rem;
  color: #c8872a;
  margin-bottom: 18px;
  line-height: 1.3;
  text-align: left;
}

.evento-texto h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}

.evento-texto p {
  font-size: 1.08rem;
  color: #b0a090;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: left;
}

.evento-texto p strong {
  color: #e0d5c5;
}

.evento-video {
  width: 100%;
  border: 4px solid #c8872a;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

.evento-video iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}

/* ===========================
   PREÇOS / INGRESSOS
=========================== */
.precos {
  background: #c8872a;
  padding: 44px 0;
}

.precos-titulo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.preco-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 18px 16px;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.preco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.preco-card.destaque {
  border: 2px solid #fff;
  background: rgba(0,0,0,0.5);
}

.preco-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.preco-card h3 small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.preco-valor {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.preco-valor span {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.preco-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 6px;
}

.preco-card .obs {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.btn-comprar {
  display: inline-block;
  margin-top: 12px;
  background: #fff;
  color: #c8872a;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 22px;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s;
}
.btn-comprar:hover {
  background: #000;
  color: #fff;
}

.precos-wpp {
  text-align: center;
  margin-top: 8px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.2s;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: scale(1.04);
}

/* ===========================
   GALERIA (mantida para referência)
=========================== */
.galeria {
  background: #111111;
  padding: 80px 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.galeria-item {
  background: #1a1208;
  border: 3px solid #ffffff;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.galeria-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200,135,42,0.2);
}

.galeria-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #1e1507;
}

.galeria-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.galeria-item:hover .galeria-img-wrapper img { transform: scale(1.05); }

/* Quando imagem não carrega */
.galeria-img-wrapper.no-img img { display: none; }
.galeria-img-wrapper .galeria-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #c8872a;
  font-size: 0.9rem;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  background: #1e1507;
  border: 2px dashed #c8872a44;
}
.galeria-img-wrapper.no-img .galeria-placeholder { display: flex; }
.galeria-placeholder { font-size: 2rem; }

/* Sobre e outros wrappers com placeholder */
.sobre-img-wrapper,
.ingresso-img-wrapper,
.noticia-img-wrapper {
  position: relative;
  overflow: hidden;
  background: #1e1507;
}
.sobre-img-wrapper.no-img img,
.ingresso-img-wrapper.no-img img,
.noticia-img-wrapper.no-img img { display: none; }

.sobre-img-wrapper .galeria-placeholder,
.ingresso-img-wrapper .galeria-placeholder,
.noticia-img-wrapper .galeria-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #c8872a;
  font-size: 0.9rem;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  border: 2px dashed #c8872a44;
}
.sobre-img-wrapper.no-img .galeria-placeholder,
.ingresso-img-wrapper.no-img .galeria-placeholder,
.noticia-img-wrapper.no-img .galeria-placeholder { display: flex; }

.galeria-info {
  padding: 16px 18px;
}
.galeria-info h4 {
  font-size: 1rem;
  color: #c8872a;
  margin-bottom: 6px;
}
.galeria-info p {
  font-size: 0.88rem;
  color: #b0a090;
}

/* ===========================
   SOBRE NÓS
=========================== */
.sobre {
  background: #0f0a05;
  padding: 80px 0;
  border-top: 1px solid #2a1f10;
  border-bottom: 1px solid #2a1f10;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.sobre-img-wrapper {
  height: 380px;
  border: 3px solid #2a1f10;
}

.sobre-img-wrapper img { height: 100%; }

.sobre-video-wrapper {
  width: 100%;
  border: 3px solid #c8872a;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

.sobre-video-wrapper iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}

.sobre-texto h3 {
  font-size: 1.8rem;
  color: #c8872a;
  margin-bottom: 20px;
}

.sobre-texto p {
  color: #b0a090;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.sobre-texto .btn-primary { margin-top: 12px; }

/* ===========================
   INGRESSOS
=========================== */
.ingressos {
  background: #111111;
  padding: 80px 0;
}

.ingressos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ingresso-card {
  background: #1a1208;
  border: 1px solid #2a1f10;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ingresso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200,135,42,0.2);
}

.ingresso-img-wrapper {
  width: 100%;
  height: 200px;
}
.ingresso-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.ingresso-info {
  padding: 20px;
}
.ingresso-info h4 {
  font-size: 1.1rem;
  color: #c8872a;
  margin-bottom: 4px;
}
.ingresso-data {
  font-size: 0.82rem;
  color: #c8872a;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}
.ingresso-info p { font-size: 0.88rem; color: #b0a090; margin-bottom: 16px; }
.ingresso-info .btn-primary { font-size: 0.85rem; padding: 8px 20px; }

/* ===========================
   NOTÍCIAS
=========================== */
.noticias {
  background: #0f0a05;
  padding: 80px 0;
  border-top: 1px solid #2a1f10;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.noticia-card {
  background: #1a1208;
  border: 1px solid #2a1f10;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.noticia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200,135,42,0.2);
}

.noticia-img-wrapper {
  width: 100%;
  height: 180px;
}
.noticia-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.noticia-info {
  padding: 20px;
}
.noticia-data {
  display: block;
  font-size: 0.8rem;
  color: #c8872a;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.noticia-info h4 {
  font-size: 1rem;
  color: #e0d5c5;
  margin-bottom: 10px;
  line-height: 1.4;
}
.noticia-info p { font-size: 0.88rem; color: #b0a090; margin-bottom: 14px; }

/* ===========================
   CONTATO
=========================== */
.contato {
  background: #111111;
  padding: 80px 0;
  border-top: 1px solid #2a1f10;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-info p {
  color: #b0a090;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.contato-bloco {
  background: #1a1208;
  border: 1px solid #2a1f10;
  border-left: 4px solid #c8872a;
  padding: 24px;
}
.contato-bloco h3 {
  font-size: 1.1rem;
  color: #c8872a;
  margin-bottom: 14px;
}
.contato-bloco p {
  font-size: 0.9rem;
  color: #b0a090;
  margin-bottom: 6px;
}

.contato-form { display: flex; flex-direction: column; gap: 16px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: #1a1208;
  border: 1px solid #2a1f10;
  border-radius: 2px;
  padding: 14px 16px;
  color: #e0d5c5;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #c8872a; }

.form-group textarea { resize: vertical; min-height: 120px; }

.lgpd-text {
  font-size: 0.78rem;
  color: #7a6e60;
  line-height: 1.5;
}

/* ===========================
   SEJA PATROCINADOR
=========================== */
.patrocinador {
  background: linear-gradient(135deg, #1a0e04 0%, #0f0a05 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #2a1f10;
  border-bottom: 1px solid #c8872a;
}

.patrocinador .section-sub { margin-bottom: 32px; }
.patrocinador .btn-primary { font-size: 1.1rem; padding: 14px 40px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #080503;
  padding: 48px 0 24px;
  text-align: center;
  border-top: 2px solid #c8872a;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: #c8872a;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 24px;
}
.footer-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b0a090;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #c8872a; }

.footer-copy {
  font-size: 0.82rem;
  color: #7a6e60;
  margin-bottom: 6px;
}
.footer-cnpj { font-size: 0.78rem; color: #5a5048; }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 900px) {
  .galeria-grid,
  .ingressos-grid,
  .noticias-grid,
  .precos-grid { grid-template-columns: repeat(2, 1fr); }

  .sobre-grid,
  .contato-grid,
  .evento-grid { grid-template-columns: 1fr; }

  .sobre-img-wrapper { height: 260px; }
}

@media (max-width: 700px) {
  .menu-toggle { display: flex; }

  #mainNav {
    display: none;
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: rgba(10, 7, 3, 0.98);
    padding: 24px;
    border-bottom: 2px solid #c8872a;
    z-index: 999;
  }
  #mainNav.open { display: block; }

  #mainNav ul {
    flex-direction: column;
    gap: 0;
  }
  #mainNav ul li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #2a1f10;
    font-size: 1rem;
  }

  .galeria-grid,
  .ingressos-grid,
  .noticias-grid,
  .precos-grid { grid-template-columns: 1fr; }

  .chegar-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 1.8rem; }

  .hero { height: 50vh; }
}
