:root {
  --light: #fff7ea;
  --light-soft: rgba(255,247,234,0.85);
  --light-muted: rgba(255,247,234,0.7);
  --light-border: rgba(255,247,234,0.35);
  --gold: #c89b5f;
  --black: #000;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TEXTO GLOBAL */
body, a, p, div, h1, h2, h3 {
  color: var(--light);
  font-family: "Montserrat", Arial, sans-serif;
}

body {
  background: var(--black);
}

/* ================= HEADER FIXO ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

/* CONTAINER HEADER */
.header-content {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

/* LOGO */
.logo img {
  height: 42px;
}

.logo-mobile {
  display: none;
}

/* MENU DESKTOP */
.nav-desktop a {
  margin: 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--light-soft);
}

.nav-desktop a:hover {
  color: var(--gold);
}

/* CTA */
.btn-primary {
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--light);
  margin: 5px 0;
}

/* MENU MOBILE */
.nav-mobile {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: rgba(0,0,0,0.98);
  padding: 24px;
  transition: left 0.35s ease;
  z-index: 120;
}

.header.menu-open .nav-mobile {
  left: 0;
}

.menu-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--light);
  cursor: pointer;
  margin-bottom: 40px;
}

.nav-mobile-links a {
  display: block;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--light-soft);
}

.nav-mobile-links a:hover {
  color: var(--gold);
}

/* ================= HERO ================= */
.hero-video-bg {
  min-height: 100vh;
  position: relative;
  padding-top: 72px;
  padding-bottom: 60px;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.65)
  );
}

/* CENTRO */
.hero-center {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 132px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* <<< GARANTE CENTRALIZAÇÃO */
  padding: 0 20px;
}

/* TEXTO HOME */
.hero-center-text {
  font-family: "Limelight", cursive;
  font-size: 36px;
  max-width: 760px;
  margin-bottom: 34px;
}

/* CTA CENTRAL */
.hero-center-btn {
  border: 1px solid var(--light-border);
  padding: 12px 30px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.hero-center-btn:hover {
  background: var(--light);
  color: var(--black);
}

/* ================= HORÁRIOS (CENTRALIZADO) ================= */
.horarios {
  max-width: 700px;
  margin: 0 auto;
  text-align: center; /* <<< ESSENCIAL */
}

.horarios-title {
  font-family: "Limelight", cursive;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.horarios-bloco {
  margin-bottom: 48px;
}

.horarios-dia {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.horarios-hora {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

/* ================= FOOTER FIXO ================= */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--light-border);
  text-align: center;
  z-index: 90;
}

.footer p {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--light-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1115px) {

  /* some menu desktop antes de quebrar */
  .nav-desktop {
    display: none;
  }

  /* ativa hamburger */
  .menu-toggle {
    display: block;
  }

  /* troca logo */
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    height: 34px;
  }

  /* respiro melhor */
  .header-content {
    padding: 0 24px;
  }
}

/* ajustes menores continuam em telas realmente pequenas */
@media (max-width: 900px) {
  .hero-center-text {
    font-size: 26px;
  }

  .horarios-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .horarios-dia {
    font-size: 20px;
  }

  .horarios-hora {
    font-size: 18px;
  }
}