:root {
  --bg: #f0ede5;
  --surface: #f8f5ed;
  --surface-strong: #ece6d8;
  --text: #25331d;
  --muted: #57634b;
  --olive: #304617;
  --olive-soft: #445c26;
  --gold: #e0cd69;
  --earth: #b28148;
  --indigo: #7d85c2;
  --line: rgba(37, 51, 29, 0.12);
  --shadow: 0 18px 44px rgba(38, 34, 18, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 205, 105, 0.22), transparent 24%),
    linear-gradient(180deg, #f4f1e8 0%, #ede7db 100%);
  font-family: "Montserrat", "Avenir Next", sans-serif;
}

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Announcement Bar ── */

.announcement-bar {
  background: linear-gradient(90deg, var(--olive), #1a2b0a);
  color: #f4efdf;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-bar__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.announcement-bar strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.announcement-bar__address {
  opacity: 0.75;
  font-size: 0.72rem;
}

/* ── Navbar ── */

.concept-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(240, 237, 229, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37, 51, 29, 0.08);
}

.concept-bar__inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.concept-bar__brand {
  display: flex;
  align-items: center;
}

.concept-bar__logo {
  height: 52px;
  width: auto;
}

.concept-bar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.concept-bar__nav a {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.concept-bar__nav a:hover {
  color: var(--text);
  background: rgba(48, 70, 23, 0.06);
}

.concept-bar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border-radius: 50% !important;
  color: var(--muted) !important;
  transition: color 0.2s, background 0.2s;
}

.concept-bar__social:hover {
  color: var(--olive) !important;
  background: rgba(48, 70, 23, 0.08) !important;
}

.concept-bar__social svg {
  width: 18px;
  height: 18px;
}

/* ── Hero ── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 68px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(224, 205, 105, 0.1), transparent 40%),
    radial-gradient(circle at top right, rgba(48, 70, 23, 0.08), transparent 34%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--olive);
  font-size: 0.72rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  display: block;
  color: var(--olive-soft);
}

.hero p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero__placeholder {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border-radius: 28px;
  border: 1px dashed rgba(48, 70, 23, 0.18);
  background:
    linear-gradient(180deg, rgba(224, 205, 105, 0.18), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(68, 92, 38, 0.06), rgba(255, 255, 255, 0.4));
}

.hero__placeholder span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__placeholder strong {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.05;
}

.hero__video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

/* ── Marquee ── */

.marquee {
  position: relative;
  margin-top: 48px;
  padding: 18px 0;
  background: linear-gradient(180deg, var(--olive), #1a2b0a);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}

.marquee__item {
  flex-shrink: 0;
  padding: 0 24px;
  color: rgba(244, 239, 223, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__sep {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin: auto 8px;
  border-radius: 50%;
  background: rgba(224, 205, 105, 0.6);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Buttons ── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.button:hover {
  opacity: 0.88;
}

.button--gold {
  color: #334111;
  background: linear-gradient(180deg, #f2e589 0%, var(--gold) 100%);
}

.button--olive {
  color: #f7f4ea;
  background: linear-gradient(180deg, var(--olive-soft) 0%, var(--olive) 100%);
}

.button--ghost {
  color: var(--olive);
  background: transparent;
  border: 1px solid rgba(48, 70, 23, 0.18);
}

/* ── Dividers ── */

.divider {
  height: 18px;
  background-size: 44px 18px;
}

.divider--green {
  background:
    linear-gradient(135deg, transparent 0 34%, #799c38 34% 50%, transparent 50% 100%) 0 0 / 22px 18px repeat-x,
    linear-gradient(225deg, transparent 0 34%, #385018 34% 50%, transparent 50% 100%) 11px 0 / 22px 18px repeat-x,
    linear-gradient(180deg, #d8d57e 0%, #88a944 100%);
}

.divider--earth {
  background:
    linear-gradient(135deg, transparent 0 34%, #8f5b2d 34% 50%, transparent 50% 100%) 0 0 / 22px 18px repeat-x,
    linear-gradient(225deg, transparent 0 34%, #d7ba7c 34% 50%, transparent 50% 100%) 11px 0 / 22px 18px repeat-x,
    linear-gradient(180deg, #4c2f17 0%, #bd8a4e 100%);
}

.divider--indigo {
  background:
    linear-gradient(135deg, transparent 0 34%, #8f98d5 34% 50%, transparent 50% 100%) 0 0 / 22px 18px repeat-x,
    linear-gradient(225deg, transparent 0 34%, #56609f 34% 50%, transparent 50% 100%) 11px 0 / 22px 18px repeat-x,
    linear-gradient(180deg, #b8c0e8 0%, #6f78b8 100%);
}

/* ── About (O Espaço) ── */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 74px 0;
}

.about h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.about h3 {
  margin: 18px 0;
  color: var(--olive-soft);
  font-size: 1.4rem;
  line-height: 1.2;
}

.about p {
  color: var(--muted);
  line-height: 1.8;
}

.about__copy {
  display: grid;
  gap: 18px;
}

.about__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

/* ── Planos ── */

.planos {
  padding: 74px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.planos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plano-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  text-align: center;
}

.plano-card--featured {
  background: linear-gradient(180deg, rgba(48, 70, 23, 0.04), rgba(224, 205, 105, 0.1));
  border-color: rgba(48, 70, 23, 0.22);
  transform: scale(1.03);
}

.plano-card__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plano-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.plano-card__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
}

.plano-card__value {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.plano-card__period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.plano-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
  text-align: left;
}

.plano-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.plano-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive-soft);
  font-weight: 800;
}

.plano-card .button {
  margin-top: auto;
  width: 100%;
}

/* ── Extras ── */

.extras {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(48, 70, 23, 0.03), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow);
}

.extras__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.extras__header h3 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}

.extras__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.extras__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.extras__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s;
}

.extras__card:hover {
  border-color: rgba(48, 70, 23, 0.28);
}

.extras__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.extras__label em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.extras__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--olive);
  letter-spacing: -0.02em;
}

.extras__price small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.extras__link {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 2px solid rgba(48, 70, 23, 0.2);
  transition: border-color 0.2s;
}

.extras__link:hover {
  border-color: var(--olive);
}

/* ── Programação Semanal ── */

.programacao {
  padding: 74px 0;
}

.programacao h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.schedule {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schedule__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.schedule__row:last-child {
  border-bottom: none;
}

.schedule__row:hover {
  background: rgba(48, 70, 23, 0.03);
}

.schedule__day {
  flex-shrink: 0;
  width: 48px;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.schedule__pill--morning {
  background: rgba(224, 205, 105, 0.22);
  color: #6a5d10;
}

.schedule__pill--evening {
  background: rgba(48, 70, 23, 0.1);
  color: var(--olive);
}

.schedule__pill--special {
  background: linear-gradient(135deg, rgba(125, 133, 194, 0.18), rgba(125, 133, 194, 0.08));
  color: #4a5290;
}

.schedule__pill small {
  font-weight: 500;
  opacity: 0.7;
  font-size: 0.68rem;
}

/* ── Instagram ── */

.instagram {
  padding: 74px 0;
}

.instagram__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.instagram__videos {
  display: flex;
  gap: 16px;
}

.instagram__embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.instagram__embed video {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.instagram__image {
  display: flex;
}

.instagram__image .hero__placeholder {
  flex: 1;
  min-height: 100%;
  border-radius: var(--radius-xl);
}

.instagram__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.instagram__follow {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ── Artistas ── */

.artistas {
  padding: 74px 0;
}

.artistas__intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Artistas Carousel ── */

.artistas-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.artistas-slide {
  display: none;
  grid-template-columns: 300px 1fr;
  align-items: stretch;
  min-height: 400px;
  animation: fadeSlide 0.45s ease;
}

.artistas-slide.is-active {
  display: grid;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.artistas-slide__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(48, 70, 23, 0.03), rgba(224, 205, 105, 0.06));
}

.artistas-slide__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--olive-soft), var(--olive));
  display: flex;
  align-items: center;
  justify-content: center;
}

.artistas-slide__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artistas-slide__avatar span {
  color: #f4efdf;
  font-size: 1.5rem;
  font-weight: 800;
}

.artistas-slide__name {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.artistas-slide__bio {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 260px;
}

.artistas-slide__gallery {
  padding: 20px;
  overflow: hidden;
}

.artistas-slide__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--olive-soft) transparent;
  padding-bottom: 8px;
  height: 100%;
}

.artistas-slide__img {
  flex: 0 0 260px;
  height: 100%;
  min-height: 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.artistas-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.artistas-slide__img:hover img {
  transform: scale(1.05);
}

/* Placeholder cards (until real images arrive) */
.artistas-slide__img--placeholder {
  background:
    linear-gradient(135deg, rgba(48, 70, 23, 0.08), rgba(224, 205, 105, 0.15)),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
  border: 1px dashed rgba(48, 70, 23, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.artistas-slide__img--placeholder::after {
  content: attr(data-initials);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(48, 70, 23, 0.15);
  letter-spacing: 0.06em;
}

/* Navigation */
.artistas-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.artistas-nav__prev,
.artistas-nav__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--olive);
}

.artistas-nav__prev:hover,
.artistas-nav__next:hover {
  background: var(--olive);
  color: #f6f4ec;
  border-color: var(--olive);
}

.artistas-nav__tabs {
  display: flex;
  gap: 8px;
}

.artistas-nav__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}

.artistas-nav__tab.is-active {
  background: rgba(48, 70, 23, 0.08);
  border-color: rgba(48, 70, 23, 0.18);
}

.artistas-nav__thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive-soft), var(--olive));
  color: #f4efdf;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.artistas-nav__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artistas-nav__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.artistas-nav__tab.is-active .artistas-nav__label {
  color: var(--olive);
}

.divider--earth-alt {
  height: 18px;
  background:
    linear-gradient(135deg, transparent 0 34%, #8f5b2d 34% 50%, transparent 50% 100%) 0 0 / 22px 18px repeat-x,
    linear-gradient(225deg, transparent 0 34%, #d7ba7c 34% 50%, transparent 50% 100%) 11px 0 / 22px 18px repeat-x,
    linear-gradient(180deg, #4c2f17 0%, #bd8a4e 100%);
}

/* ── Manifesto ── */

.manifesto {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(50, 70, 23, 0.96), rgba(35, 50, 20, 0.96)),
    linear-gradient(180deg, rgba(224, 205, 105, 0.18), transparent);
  color: #f4efdf;
}

.manifesto .eyebrow {
  color: #dfe8a8;
}

.manifesto h2 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.manifesto p {
  max-width: 760px;
  color: rgba(244, 239, 223, 0.84);
  font-size: 1.06rem;
  line-height: 1.8;
}

/* ── CTA / Contato ── */

.cta {
  padding: 74px 0;
}

.cta__box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(52, 77, 25, 0.06), rgba(255, 255, 255, 0.62)),
    linear-gradient(180deg, rgba(224, 205, 105, 0.08), rgba(255, 255, 255, 0.2));
  box-shadow: var(--shadow);
}

.cta__box h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cta__address {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta__actions .button {
  width: 100%;
  text-align: center;
}

/* ── Localização ── */

.localizacao {
  padding: 74px 0;
}

.localizacao__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.localizacao__info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.localizacao__info h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.localizacao__address {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.localizacao__map {
  min-height: 380px;
}

.localizacao__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Gallery Trigger ── */

.gallery-trigger {
  position: relative;
  cursor: pointer;
  display: block;
  height: 100%;
}

.gallery-trigger img {
  transition: transform 0.3s;
}

.gallery-trigger:hover img {
  transform: scale(1.02);
}

.gallery-trigger__badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s;
}

.gallery-trigger:hover .gallery-trigger__badge {
  background: rgba(0, 0, 0, 0.75);
}

/* ── Lightbox ── */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__prev {
  left: 20px;
}

.lightbox__next {
  right: 20px;
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ── Hamburger ── */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 40;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .hero__grid,
  .about,
  .cta__box,
  .planos__grid,
  .instagram__grid,
  .localizacao__inner {
    grid-template-columns: 1fr;
  }

  .localizacao__map {
    min-height: 300px;
  }

  .artistas-slide {
    grid-template-columns: 1fr;
  }

  .artistas-slide__info {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 20px;
  }

  .artistas-slide__img {
    flex: 0 0 220px;
    min-height: 260px;
  }

  .instagram__videos {
    justify-content: center;
  }

  .plano-card--featured {
    transform: none;
  }

  .extras__grid {
    grid-template-columns: 1fr;
  }

  .cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .shell,
  .concept-bar__inner {
    width: min(100% - 24px, 1160px);
  }

  .hamburger {
    display: flex;
  }

  .concept-bar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(240, 237, 229, 0.98);
    backdrop-filter: blur(14px);
    padding: 12px 16px;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(38, 34, 18, 0.1);
  }

  .concept-bar__nav.is-open {
    display: flex;
  }

  .concept-bar__nav a {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
    border-radius: 12px;
  }

  .concept-bar__social {
    width: 100% !important;
    height: auto !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    justify-content: center;
    gap: 8px;
  }

  .localizacao__info {
    padding: 28px 24px;
  }

  .localizacao {
    padding: 58px 0;
  }

  .concept-bar__inner {
    position: relative;
  }

  .hero__actions,
  .cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero__video {
    min-height: 280px;
  }

  .about,
  .planos,
  .programacao,
  .instagram,
  .cta {
    padding: 58px 0;
  }

  .announcement-bar__inner {
    flex-direction: column;
    gap: 4px;
  }

  .schedule__row {
    padding: 14px 20px;
  }

  .schedule__day {
    width: 40px;
    font-size: 0.74rem;
  }

  .instagram__videos {
    flex-direction: column;
    align-items: center;
  }

  .artistas-slide__img {
    flex: 0 0 180px;
    min-height: 220px;
  }

  .artistas-nav__label {
    display: none;
  }

  .artistas {
    padding: 58px 0;
  }
}
