:root {
  --ink: #080c0f;
  --charcoal: #11171d;
  --deep-green: #12382e;
  --emerald: #1d6b55;
  --gold: #d4af37;
  --gold-dark: #9f7421;
  --bronze: #a67628;
  --ivory: #f8f3e7;
  --cream: #fffaf0;
  --paper: #eee6d6;
  --muted: #68717a;
  --line: rgba(8, 12, 15, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 12, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: 6.4rem;
}

h2 {
  font-size: 3.65rem;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 56px;
  color: var(--ivory);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 12, 15, 0.9);
  color: var(--ivory);
  box-shadow: 0 10px 30px rgba(8, 12, 15, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.78);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 0.74rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 8px;
  background: rgba(8, 12, 15, 0.26);
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(8, 12, 15, 0.98) 0%, rgba(8, 12, 15, 0.92) 34%, rgba(18, 56, 46, 0.62) 62%, rgba(8, 12, 15, 0.28) 100%),
    url("assets/hero-consultor-multitalentos.jpg") center right/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(8, 12, 15, 0.9), rgba(8, 12, 15, 0.06) 48%),
    linear-gradient(120deg, rgba(212, 175, 55, 0.18), transparent 38%),
    linear-gradient(280deg, rgba(212, 175, 55, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(8, 12, 15, 0.72), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 26px;
  align-items: start;
  padding: 156px 0 142px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-statement {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 1.38rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(248, 243, 231, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), #f1d273 48%, var(--gold-dark));
  color: #15120a;
}

.button.secondary {
  border-color: rgba(159, 116, 33, 0.42);
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(212, 175, 55, 0.78);
  background: rgba(212, 175, 55, 0.12);
  color: var(--deep-green);
}

.hero .button.secondary,
.dark-section .button.secondary {
  border-color: rgba(248, 243, 231, 0.42);
  background: transparent;
  color: var(--ivory);
}

.hero .button.secondary:hover,
.dark-section .button.secondary:hover {
  border-color: rgba(212, 175, 55, 0.78);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.hero-authority {
  width: min(100%, 560px);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(8, 12, 15, 0.64), rgba(8, 12, 15, 0.18));
  color: var(--ivory);
  backdrop-filter: blur(10px);
}

.hero-authority span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-authority strong {
  display: block;
  color: var(--ivory);
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(8, 12, 15, 0.78);
  backdrop-filter: blur(12px);
}

.hero-strip span {
  padding: 18px 40px;
  border-right: 1px solid rgba(212, 175, 55, 0.16);
  color: rgba(248, 243, 231, 0.84);
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.intro {
  background:
    linear-gradient(90deg, rgba(248, 243, 231, 0.96), rgba(238, 230, 214, 0.96)),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.08), rgba(18, 56, 46, 0.08));
}

.intro-grid,
.profile-grid,
.contact-grid,
.channels-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 78px;
  align-items: start;
}

.section-heading.compact {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading > p:not(.eyebrow),
.intro-text p,
.split-copy p,
.profile-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-text p,
.profile-copy p {
  margin: 0 0 18px;
}

.services {
  background: var(--ivory);
}

.search-map {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.12), transparent 36%),
    var(--paper);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.search-grid a {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(159, 116, 33, 0.2);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(248, 243, 231, 0.68)),
    var(--ivory);
  box-shadow: 0 18px 52px rgba(8, 12, 15, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.search-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(159, 116, 33, 0.62);
  box-shadow: 0 24px 70px rgba(8, 12, 15, 0.12);
}

.search-grid span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-grid strong,
.search-grid small {
  display: block;
}

.search-grid strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.search-grid small {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
}

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

.service-card {
  min-height: 292px;
  border: 1px solid rgba(8, 12, 15, 0.12);
  border-radius: 8px;
  padding: 26px;
  background: #fffaf0;
  box-shadow: 0 1px 0 rgba(8, 12, 15, 0.04);
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--gold-dark);
  font-weight: 800;
}

.split {
  background: var(--paper);
}

.split.reverse {
  background: var(--ivory);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.visual-panel {
  min-height: 520px;
  display: flex;
  align-items: end;
  border-radius: 8px;
  overflow: hidden;
  padding: 28px;
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.visual-panel.talks {
  background:
    linear-gradient(to top, rgba(8, 12, 15, 0.9), rgba(18, 56, 46, 0.12)),
    url("assets/palestras.jpg") center/cover;
}

.visual-panel.music {
  background:
    linear-gradient(to top, rgba(8, 12, 15, 0.9), rgba(18, 56, 46, 0.12)),
    url("assets/musica.jpg") center/cover;
}

.visual-panel span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.visual-panel strong {
  display: block;
  max-width: 430px;
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.55rem;
  line-height: 1.08;
}

.split-copy p {
  margin: 22px 0 24px;
}

.music-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 24px;
}

.music-links a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(159, 116, 33, 0.28);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(248, 243, 231, 0.02)),
    rgba(255, 250, 240, 0.64);
  color: var(--ink);
  font-weight: 800;
}

.music-links a:hover {
  border-color: rgba(159, 116, 33, 0.72);
  color: var(--deep-green);
}

.music-links a.featured-catalog {
  border-color: rgba(159, 116, 33, 0.72);
  background: linear-gradient(135deg, var(--gold), #f1d273 50%, var(--gold-dark));
  color: #15120a;
  box-shadow: 0 18px 38px rgba(95, 65, 18, 0.18);
}

.music-links a.featured-catalog:hover {
  color: #15120a;
}

.music-links span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  color: var(--emerald);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.card-link {
  margin-top: 20px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.music-project-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
  margin-top: 72px;
  padding: 34px;
  border: 1px solid rgba(159, 116, 33, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(18, 56, 46, 0.04)),
    #fffaf0;
  box-shadow: var(--shadow);
}

.general-project-panel {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(18, 56, 46, 0.05)),
    #fffaf0;
}

.music-project-panel h3 {
  max-width: 420px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1.06;
}

.music-project-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.music-project-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  box-shadow: none;
}

.full-field {
  grid-column: 1 / -1;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(212, 175, 55, 0.15), transparent 26%),
    linear-gradient(280deg, rgba(166, 118, 40, 0.18), transparent 34%),
    linear-gradient(120deg, rgba(18, 56, 46, 0.42), transparent 46%),
    linear-gradient(180deg, #050709, #11171d 56%, #080c0f);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--ivory);
}

.dark-section .section-heading > p:not(.eyebrow) {
  color: rgba(248, 243, 231, 0.72);
}

.dark-section .section-heading h2 {
  max-width: 620px;
}

.media-list {
  display: grid;
  gap: 14px;
}

.media-list a {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 22px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(248, 243, 231, 0.08), rgba(248, 243, 231, 0.02)),
    rgba(8, 12, 15, 0.38);
  color: var(--ivory);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.media-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.78);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(248, 243, 231, 0.04)),
    rgba(8, 12, 15, 0.58);
}

.media-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-list strong,
.media-list small {
  display: block;
}

.media-list strong {
  margin-top: -8px;
  color: var(--ivory);
  font-size: 1.22rem;
  line-height: 1.15;
}

.media-list small {
  max-width: 470px;
  margin-top: -12px;
  color: rgba(248, 243, 231, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.profile {
  background:
    linear-gradient(90deg, rgba(8, 12, 15, 0.04), transparent),
    var(--paper);
}

.profile-grid {
  align-items: center;
}

.profile-copy {
  max-width: 650px;
}

.profile-copy .eyebrow {
  margin-bottom: 22px;
}

.profile-copy h2 {
  max-width: 620px;
  font-size: 3.45rem;
  line-height: 1.12;
}

.profile-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 28px;
  line-height: 1.82;
}

.profile-signature {
  overflow: hidden;
  border: 1px solid rgba(8, 12, 15, 0.12);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.profile-signature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.profile-signature p {
  margin: 0;
  padding: 28px;
  color: var(--charcoal);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.58;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.tags span {
  border: 1px solid rgba(8, 12, 15, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--ivory);
  color: var(--deep-green);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(8, 12, 15, 0.04);
}

.contact {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.12), transparent 42%),
    #e6dcc8;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  display: inline-flex;
  width: fit-content;
  border-bottom: 2px solid var(--gold-dark);
  color: var(--deep-green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(8, 12, 15, 0.1);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 12, 15, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fffaf0;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(212, 175, 55, 0.2);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--deep-green);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0;
  background: var(--ink);
  color: rgba(248, 243, 231, 0.72);
}

.footer-stack {
  display: grid;
  gap: 18px;
}

.affiliate-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background: rgba(248, 243, 231, 0.035);
  color: rgba(248, 243, 231, 0.78);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.affiliate-callout:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
  color: var(--cream);
}

.affiliate-callout span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-callout strong {
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.topic-main {
  background: var(--paper);
}

.topic-hero {
  padding: 150px 0 86px;
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.14), transparent 36%),
    linear-gradient(180deg, #080c0f, #11171d);
  color: var(--ivory);
}

.topic-hero .eyebrow {
  margin-bottom: 18px;
}

.topic-hero h1 {
  max-width: 920px;
  font-size: 5.1rem;
}

.topic-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(248, 243, 231, 0.78);
  font-size: 1.15rem;
}

.topic-section {
  padding: 82px 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.topic-panel {
  border: 1px solid rgba(159, 116, 33, 0.2);
  border-radius: 8px;
  padding: 30px;
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.topic-panel h2 {
  font-size: 2.8rem;
  line-height: 1.08;
}

.topic-panel p,
.topic-list li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.topic-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  border-left: 3px solid var(--gold-dark);
  padding-left: 16px;
}

.topic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.topic-actions .button.secondary {
  border-color: rgba(8, 12, 15, 0.18);
  color: var(--ink);
}

.topic-actions .button.secondary:hover {
  border-color: rgba(159, 116, 33, 0.62);
  color: var(--deep-green);
}

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

.topic-related a {
  border: 1px solid rgba(159, 116, 33, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: var(--ivory);
  color: var(--deep-green);
  font-weight: 800;
}

.event-hero {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(8, 12, 15, 0.98), rgba(17, 23, 29, 0.95)),
    url("assets/banana-rock-palco.jpg") center/cover;
}

.event-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.event-hero-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background: rgba(8, 12, 15, 0.72);
  box-shadow: var(--shadow);
}

.event-hero-card img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-hero-card figcaption {
  padding: 14px 16px;
  color: rgba(248, 243, 231, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.event-kpis article {
  min-height: 172px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(159, 116, 33, 0.22);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(18, 56, 46, 0.04)),
    var(--cream);
  box-shadow: 0 18px 52px rgba(8, 12, 15, 0.06);
}

.event-kpis span {
  color: var(--gold-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.event-kpis strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.38;
}

.event-dark-band {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.12), transparent 40%),
    var(--ink);
  color: var(--ivory);
}

.event-dark-panel {
  background: rgba(248, 243, 231, 0.06);
  border-color: rgba(212, 175, 55, 0.28);
}

.event-dark-panel p:not(.eyebrow),
.event-dark-panel h2 {
  color: var(--ivory);
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.band-grid span {
  min-height: 54px;
  display: grid;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(248, 243, 231, 0.08);
  color: rgba(248, 243, 231, 0.9);
  font-weight: 800;
}

.event-gallery {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.event-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(159, 116, 33, 0.2);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.event-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.event-gallery p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.media-hero {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(8, 12, 15, 0.96), rgba(17, 23, 29, 0.96)),
    url("assets/banana-rock-palco.jpg") center/cover;
}

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

.photo-card,
.video-card {
  overflow: hidden;
  border: 1px solid rgba(159, 116, 33, 0.22);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 18px 52px rgba(8, 12, 15, 0.08);
}

.photo-card {
  margin: 0;
}

.photo-card img,
.video-card img {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.photo-card a:hover img,
.video-card:hover img {
  transform: scale(1.03);
}

.photo-card figcaption,
.video-card span,
.video-card strong {
  display: block;
}

.photo-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.video-card {
  color: var(--ivory);
  background: rgba(248, 243, 231, 0.08);
}

.video-card span {
  padding: 14px 16px 4px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card strong {
  min-height: 74px;
  padding: 0 16px 16px;
  color: rgba(248, 243, 231, 0.92);
  font-size: 0.98rem;
  line-height: 1.36;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-header {
    padding: 16px 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 138px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .profile-grid,
  .contact-grid,
  .channels-grid,
  .music-project-panel,
  .topic-grid,
  .event-hero-grid,
  .event-gallery,
  .split-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .event-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-media {
    background:
      linear-gradient(90deg, rgba(8, 12, 15, 0.98) 0%, rgba(8, 12, 15, 0.9) 42%, rgba(18, 56, 46, 0.62) 100%),
      url("assets/hero-consultor-multitalentos.jpg") 58% center/cover;
  }

  .hero-overlay {
    background:
      linear-gradient(to top, rgba(8, 12, 15, 0.92), rgba(8, 12, 15, 0.1) 46%),
      linear-gradient(90deg, rgba(8, 12, 15, 0.8), rgba(8, 12, 15, 0.34) 64%, rgba(8, 12, 15, 0.2)),
      linear-gradient(120deg, rgba(212, 175, 55, 0.18), transparent 40%);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 8px;
    background: rgba(8, 12, 15, 0.96);
    color: var(--ivory);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  }

  .hero-grid {
    padding-bottom: 190px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    padding: 12px 20px;
  }

  .section {
    padding: 76px 0;
  }

  .topic-hero h1 {
    font-size: 3.45rem;
  }

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

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

  .service-card {
    min-height: auto;
  }

  .event-kpis,
  .band-grid,
  .photo-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .event-hero-card img {
    aspect-ratio: 4 / 3;
  }

  .service-icon {
    margin-bottom: 28px;
  }

  .visual-panel {
    min-height: 390px;
  }

  .visual-panel strong {
    font-size: 2rem;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .affiliate-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3rem;
  }

  .hero-statement {
    font-size: 1.05rem;
  }

  .profile-copy h2,
  .music-project-panel h3 {
    font-size: 2.35rem;
  }

  .visual-panel strong {
    font-size: 1.75rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .profile-copy h2 {
    font-size: 2.7rem;
    line-height: 1.08;
  }

  .profile-copy p:not(.eyebrow) {
    margin-top: 24px;
    line-height: 1.72;
  }

  .hero-statement {
    font-size: 1.15rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .media-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .music-links,
  .music-project-form {
    grid-template-columns: 1fr;
  }

  .topic-related {
    grid-template-columns: 1fr;
  }
}
