:root {
  --black: #0b0b0e;
  --black-soft: #111118;
  --surface: rgba(255,255,255,0.06);
  --gold: #c9a24d;
  --gold-soft: rgba(201,162,77,0.25);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.7);
  --radius: 22px;
  --transition: 0.35s ease;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #0f0f14, var(--black));
  color: var(--text);
  overflow-x: hidden;
}

/* =======================
   SCROLL PROGRESS
======================= */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #f2d48b);
  z-index: 2000;
}

/* =======================
   NAVBAR
======================= */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11,11,14,0.82);
  backdrop-filter: blur(16px);
  z-index: 1000;
}

.nav img {
  height: 40px;
}

.nav nav {
  display: flex;
  gap: 22px;
}

.nav nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* MENU BUTTON */
.menu-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.menu-btn:hover {
  background: var(--gold-soft);
}

/* BURGER */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

/* =======================
   LANGUAGE DROPDOWN
======================= */
.lang-dropdown {
  position: relative;
}

#langToggle,
#langToggleMobile {
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  z-index: 2000;
}

.lang-menu.open {
  display: block;
}

.lang-menu button {
  background: none;
  border: none;
  color: white;
  padding: 10px 18px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}

.lang-menu button:hover {
  background: rgba(255,255,255,.08);
}

/* HEADER DO DROPDOWN DE IDIOMA */
.lang-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  color: var(--text-muted);
}

.lang-menu-header button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* =======================
   HERO
======================= */
.hero {
  height: 100vh;
  position: relative;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.9)
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 600;
}

.hero-content p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-muted);
}

/* =======================
   SECTIONS
======================= */
.section {
  padding: 120px 24px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 22px;
}

.section p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =======================
   HOURS
======================= */
.hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 120px 32px;
  max-width: 1000px;
  margin: auto;
}

.hour-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.hour-card h3 {
  font-size: 22px;
}

.hour-card p {
  color: var(--text-muted);
}

.hour-card span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--gold);
}

/* =======================
   GALLERY
======================= */
.gallery-section {
  padding: 120px 32px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.gallery-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* =======================
   VIDEOS
======================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.video-grid video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* =======================
   FLOATING BUTTONS
======================= */
.fab.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
}

#toTop {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  border: none;
  display: none;
  cursor: pointer;
}

/* =======================
   REVEAL
======================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* =======================
   MOBILE MENU
======================= */
#mobileMenu {
  position: fixed;
  inset: 0;
  background: #0b0b0e;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  z-index: 1500;
}

#mobileMenu.active {
  display: flex;
}

#mobileMenu a {
  color: white;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
}

/* BOTÃO FECHAR MENU */
.close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* IDIOMA NO MOBILE */
.mobile-lang {
  margin-bottom: 32px;
  position: relative;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
  .nav {
    padding: 14px 18px;
  }

  .nav nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section h2 {
    font-size: 30px;
  }

  .gallery-grid img,
  .video-grid video {
    height: 200px;
  }
}
/* =================================================
   EVENT HERO – AJUSTE FINAL (SEM CORTE VERTICAL)
================================================= */

.event-hero {
  position: relative;
  width: 100%;
  height: 62vh;        /* ↓ menor altura = menos corte topo/base */
  max-height: 680px;
  overflow: hidden;
}

/* vídeo */
.event-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%; /* ↓ mostra mais topo e base */
  transform: scale(1.01);      /* zoom mínimo, só para preencher */
  background: transparent;
}

/* overlay */
.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.6)
  );
  pointer-events: none;
  z-index: 1;
}

/* conteúdo */
.event-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.event-content h2 {
  font-size: 46px;
  font-weight: 600;
}

.event-content p {
  margin-top: 6px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* botão assistir */
#playEvent {
  margin-top: 22px;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: var(--gold);
  color: #000;
  transition: var(--transition);
}

#playEvent:hover {
  background: #e0c06a;
}

/* botão fechar */
.close-event {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
}

/* esconder controles nativos */
.event-hero video::-webkit-media-controls,
.event-hero video::-webkit-media-controls-panel,
.event-hero video::-webkit-media-controls-play-button,
.event-hero video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.event-hero video {
  outline: none;
}


/* =======================
   FOOTER PRO
======================= */
.footer {
  margin-top: 140px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
}

/* BRAND */
.footer-brand img {
  width: 140px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* TITLES */
.footer h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--gold);
}

/* LINKS */
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact i {
  color: var(--gold);
}

/* SOCIAL */
.footer-social .social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold-soft);
  color: var(--gold);
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* =======================
   MOBILE
======================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .footer-links a,
  .footer-contact a {
    justify-content: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }

  .footer-brand img {
    margin: 0 auto 18px;
  }
}


/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .event-hero {
    height: 52vh;
  }

  .event-hero video {
    object-position: center 45%;
    transform: scale(1.005);
  }

  .event-content h2 {
    font-size: 30px;
  }

  .event-content p {
    font-size: 14px;
  }
}


/* FOOTER LAYOUT */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: start;
}

/* BLOCO LEGAL À DIREITA */
.footer-legal {
  display: flex;
  justify-content: flex-end; /* empurra para a direita */
  align-items: center;
}

/* LINK DO LIVRO */
.livro-reclamacoes {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}

.livro-reclamacoes img {
  height: 20px;
  width: auto;
}

.livro-reclamacoes:hover {
  opacity: 1;
}

/* MOBILE: centraliza tudo */
@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
  }

  .livro-reclamacoes img {
    height: 20px;
  }
}
