:root {
  --bg-color: #0a0a0a;
  --text-main: #e0e0e0;
  --text-muted: #888888;

  /* Palette Raízes */
  --color-mata: #004b23;
  --color-vida: #d2d804;
  --color-leveza: #3364bc;
  --color-nos: #ec7123;
  --color-alegria: #f7aa04;
  --color-paixao: #af1e1e;
  --color-noite: #332051;
  --color-raizes: #3f2117;

  /* Semantic Mappings */
  --accent-gold: var(--color-alegria);
  --accent-rust: var(--color-nos);

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: "Cantora One", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

/* Texture Overlay - Keeping subtle for depth */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Typography Utility */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Header */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
}

.logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.nav-links {
  display: none; /* Hidden on mobile by default, usually */
  list-style: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: 0.3s;
}

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

.moon-phase {
  font-size: 1.5rem;
  /* Glow effect */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
  z-index: 2;
  background: radial-gradient(
    circle at center,
    rgba(175, 30, 30, 0.1) 0%,
    rgba(10, 10, 10, 0) 70%
  );
}

.hero-bg-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle at center,
    rgba(181, 70, 40, 0.15) 0%,
    rgba(10, 10, 10, 1) 70%
  );
  z-index: -1;
  animation: pulseGradient 8s infinite alternate;
}

@keyframes pulseGradient {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-content {
  max-width: 800px;
}

.overline {
  font-size: 0.8rem;
  font-weight: 600;


.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.85;
  margin-bottom: 2rem;
  color: var(--text-main);
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  height: 80vh;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid var(--color-nos);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 120%;
  max-width: none;
  opacity: 0.8;
  filter: sepia(0.5) brightness(0.7);
  transform: translateX(-10%);
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.cta-button {
  display: inline-block;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.85rem;
}

.cta-button.primary {
  background-color: var(--color-nos);
  color: white;
  border: 1px solid var(--color-nos);
}

.cta-button.secondary {
  background-color: transparent;
  color: white;
  border: 1px solid var(--glass-border);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
  background-color: transparent;
  color: var(--color-nos);
}

.cta-button.secondary:hover {
  border-color: var(--color-vida);
  color: var(--color-vida);
}

/* Section General */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Agenda Cards */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.agenda-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 4px; /* Brutalist slight radius */
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.agenda-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.agenda-card.highlight {
  border-color: var(--accent-rust);
}

/* Bloco Section */
.bloco-section {
  background: linear-gradient(to right, rgba(181, 70, 40, 0.05), transparent);
  border-left: 1px solid var(--accent-rust);
}

.bloco-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bloco-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.bloco-details {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.detail-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.bloco-media .media-placeholder {
  width: 100%;
  height: 300px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* HERO BLOCO */
.hero-bloco {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Centered for impact */
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(175, 30, 30, 0.2) 0%,
    rgba(10, 10, 10, 1) 70%
  );
}

.hero-bloco h1 {
  font-size: 5rem;
  color: var(--color-alegria);
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(247, 170, 4, 0.3);
}

.countdown-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  padding: 1rem 2rem;
  border: 1px solid var(--accent-rust);
  border-radius: 8px;
}

.countdown-unit .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-main);
}

.countdown-unit .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* MENU PAGE */
.page-menu main {
  padding-top: 120px; /* Clear fixed header */
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: var(--color-vida);
}

.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-leveza);
  color: var(--color-leveza);
  background: rgba(51, 100, 188, 0.1);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
}

.menu-card {
  background: #121212;
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-mata);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.style-tag {
  background: #222;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.menu-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.menu-card .details {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.menu-card .price {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-main);
  margin-top: 1.5rem;
}

/* FORM STYLE */
.mock-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.mock-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  color: white;
  border-radius: 4px;
}

.mock-form button {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .bloco-content {
    grid-template-columns: 1fr;
  }
}

.day {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--glass-border);
  position: absolute;
  top: -10px;
  right: 10px;
  opacity: 0.3;
}

.event-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.event-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--text-muted);
  border-radius: 20px;
  opacity: 0.8;
}

/* Taplist */
.tap-list {
  list-style: none;
}

.tap-item {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--glass-border);
  transition: 0.2s;
}

.tap-item:hover {
  padding-left: 1rem;
  border-color: var(--accent-gold);
}

.tap-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-rust);
  margin-right: 2rem;
  width: 40px;
}

.tap-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.beer-name {
  font-size: 1.4rem;
  font-weight: 600;
}

.beer-style {
  color: var(--text-muted);
  font-weight: 300;
}

.tap-status {
  width: 10px;
  height: 10px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
}

.tap-status.full {
  background-color: #4cd964;
  box-shadow: 0 0 10px #4cd964;
}

/* Manifesto */
.manifesto-section {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 10, 1) 50%,
    rgba(20, 20, 20, 1) 100%
  );
}

.manifesto-text p {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-main);
}

/* Footer */
footer {
  padding: 4rem 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

.col h4 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.col p {
  color: var(--text-muted);
  line-height: 1.6;
}

.colophon {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  opacity: 0.3;
  letter-spacing: 0.2em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .manifesto-text p {
    font-size: 1.8rem;
  }
}
/* NARRATIVE PAGE STYLES */
.content-narrative {
  padding-top: 151px;
  max-width: 900px;
  margin: 0 auto;
}

.story-hero {
  text-align: center;
  margin-bottom: 5rem;
}

.story-hero h1 {
  font-size: 4rem;
  line-height: 1;
  color: var(--color-nos);
}

.story-block {
  margin-bottom: 6rem;
}

.story-block h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-alegria);
}

.story-block p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  line-height: 1.8;
}

.story-block.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quote-card {
  background: var(--glass-bg);
  border: 1px solid var(--color-nos);
  padding: 3rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--color-alegria);
  position: relative;
  border-radius: 4px;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  opacity: 0.2;
  color: var(--color-nos);
}

@media (max-width: 768px) {
  .story-block.split {
    grid-template-columns: 1fr;
  }
  .story-hero h1 {
    font-size: 2.5rem;
  }
}
