:root {
  --red: #c41e2a;
  --red-dark: #9a1520;
  --gold: #f5b800;
  --gold-soft: #ffd54f;
  --purple: #2d1548;
  --purple-deep: #1a0c2e;
  --teal: #0d9488;
  --cream: #fff8ef;
  --text: #1c1210;
  --text-soft: #5c4a42;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --r: 16px;
  --r-lg: 24px;
  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 12, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: var(--purple-deep);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(245, 184, 0, 0.55);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 12, 46, 0.5) 0%,
    rgba(26, 12, 46, 0.65) 40%,
    rgba(26, 12, 46, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, 100% - 2rem);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  line-height: 0.95;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  max-width: 720px;
}

.meta-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(8px);
}

.meta-card dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  margin: 0 0 0.25rem;
}

.meta-card dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-dark {
  background: linear-gradient(165deg, var(--purple-deep), var(--purple));
  color: #fff;
}

.section-light {
  background: var(--cream);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.03em;
  color: inherit;
}

.section-dark .section-title h2 {
  color: #fff;
}

.section-title p {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--text-soft);
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.75);
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--gold);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.about-copy p strong {
  color: var(--red);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 1;
}

@media (min-width: 640px) {
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* Galeria — blocos */
.gallery-block {
  margin-bottom: 2.5rem;
}

.gallery-block:last-child {
  margin-bottom: 0;
}

.gallery-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--gold);
}

/* Programação */
.schedule-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .schedule-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.schedule-day {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.schedule-day-head {
  background: var(--red);
  padding: 1rem 1.15rem;
  border-bottom: 3px solid var(--gold);
}

.schedule-day-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.schedule-day-head span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}

.schedule-list li {
  padding: 0.75rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-list li:last-child {
  border-bottom: 0;
}

.schedule-hora {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}

.schedule-titulo {
  font-weight: 600;
  font-size: 0.95rem;
}

.schedule-local,
.schedule-atracao {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

.schedule-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.5rem;
}

/* Cardápio */
.menu-days {
  display: grid;
  gap: 1.5rem;
}

.menu-day {
  background: #fff;
  color: var(--text);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--gold);
}

.menu-day-head {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-day-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.menu-day-head span {
  background: var(--gold);
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.menu-refeicao {
  padding: 1.25rem 1.25rem 0.5rem;
  border-bottom: 1px solid #eee;
}

.menu-refeicao:last-child {
  border-bottom: 0;
  padding-bottom: 1.25rem;
}

.menu-refeicao h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red);
  letter-spacing: 0.03em;
}

.menu-secao {
  margin-bottom: 1rem;
}

.menu-secao h5 {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.menu-secao ul {
  margin: 0;
  padding-left: 1.1rem;
}

.menu-secao li {
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
  color: var(--text);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--r-lg);
  margin: 0 auto;
  max-width: 900px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  opacity: 0.92;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-row .btn-primary {
  background: #fff;
  color: var(--red-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-row .btn-outline {
  border-color: #fff;
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--purple-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.site-footer a {
  color: var(--gold-soft);
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Anchor offset */
:target {
  scroll-margin-top: 5rem;
}

@media (max-width: 599px) {
  .nav-cta .btn-outline {
    display: none;
  }

  .hero {
    padding-top: 5rem;
  }
}
