﻿/* Glancyr Font */
@font-face {
  font-family: 'Glancyr';
  src: url('assets/fonts/Glancyr-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glancyr';
  src: url('assets/fonts/Glancyr-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glancyr';
  src: url('assets/fonts/Glancyr-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glancyr';
  src: url('assets/fonts/Glancyr-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #BCFF3B;
  --primary-glow: rgba(188, 255, 59, 0.4);
  --bg: #0a0a0b;
  --surface: #121214;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --font-main: 'Glancyr', sans-serif;
  --font-heading: 'Glancyr', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.center {
  text-align: center;
}

.bg-darker {
  background-color: var(--surface);
}

.mt-4 {
  margin-top: 2rem;
}

.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(188, 255, 59, 0.15), transparent 70%);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 34px;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(10px);
  padding: 5rem 1rem 1rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.1rem; 
}

.hero h1 {
  margin-bottom: 0;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
  background-color: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-lg {
  padding: 1rem 3rem;
  font-size: 1rem;
}

.programacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.programacao-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programacao-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 2px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

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

.map-column {
  text-align: center;
}

.map-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.map-container-programacao img {
  border-radius: 20px;
  border: 2px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.history-grid {
  display: flex;
  justify-content: center;
}

.history-text {
  max-width: 800px;
  text-align: center;
}

.history-photos-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.polaroid-card {
  background: #fff;
  padding: 1rem 1rem 3rem 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  transition: var(--transition);
  width: 280px;
  position: relative;
}

.polaroid-card:nth-child(even) {
  transform: rotate(2deg);
  margin-top: 2rem;
}

.polaroid-card:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 10;
}

.polaroid-card img {
  width: 100%;
  height: auto;
  filter: grayscale(20%);
}

.polaroid-card::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 35px;
  background-color: rgba(255, 240, 50, 0.8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  clip-path: polygon(0% 5%, 5% 0%, 95% 5%, 100% 0%, 100% 95%, 95% 100%, 5% 95%, 0% 100%);
  z-index: 1;
}

.small-container {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding-bottom: 1.5rem;
  max-height: 200px;
}

footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

@media (min-width: 900px) {
  .map-title {
    display: none;
  }

  .programacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;

    align-items: center;      
    justify-items: center;   
  }
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }

  .desktop-nav,
  .desktop-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    height: 90vh;
  }

  #header {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
  }

  .header-logo {
    height: 52px;
  }

  .history-photos-container {
    position: relative;
    height: 400px;
    margin: 2rem 0;
    display: block;
  }

  .polaroid-card {
    width: 150px;
    position: absolute;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    transition: var(--transition);
  }

  .polaroid-card:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-6deg);
    z-index: 1;
  }

  .polaroid-card:nth-child(2) {
    top: 20px;
    right: 0;
    transform: rotate(6deg);
    z-index: 2;
  }

  .polaroid-card:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    z-index: 3;
  }
}
.logo-link,
.mobile-menu-btn {
  position: relative;
}

.logo-link,
.mobile-menu-btn {
  position: relative;
  isolation: isolate;
}

.logo-link::before,
.mobile-menu-btn::before {
  content: '';
  position: absolute;
  inset: -6px; /* círculo menor */
  border-radius: 999px;

  background: rgba(10, 10, 11, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(188, 255, 59, 0.25);

  z-index: -1;
}

.reserva-call {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
   text-shadow: 0 0 10px rgba(188, 255, 59, 0.15);
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
