/* =========================================================
   Template 01 — Página profissional para músicos e bandas
   A única variável visual do cliente é --accent (definida no <head>).
   ========================================================= */

@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url(fonts/manrope-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url(fonts/manrope-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg-dark: #111418;
  --bg-dark-2: #171b21;
  --bg-light: #f5f4f1;
  --bg-muted: #ebeae6;
  --ink: #16191d;
  --ink-soft: #4a4f57;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, .72);
  --line-dark: rgba(255, 255, 255, .1);
  --line-light: rgba(0, 0, 0, .1);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1160px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(64px, 9vw, 112px);
  --header-h: 88px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) - 8px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--accent); color: var(--accent-contrast); border-radius: var(--radius-sm); font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 12px; }

/* ---------- Tipografia ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-on-light);
  margin-bottom: 10px;
}
.section-dark .eyebrow, .final-cta .eyebrow { color: var(--accent-on-dark); }
.section-title {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  text-wrap: balance;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  border: 1.5px solid transparent; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn .icon { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent); color: var(--accent-contrast); box-shadow: 0 8px 24px -10px var(--accent); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .04); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn-ghost .icon { fill: currentColor; stroke: none; width: 14px; height: 14px; }
.btn-outline { color: var(--accent-on-dark); border-color: currentColor; background: transparent; }
.btn-outline:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-contrast); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 12px; }
.btn-lg { min-height: 56px; padding: 16px 32px; font-size: 15px; }

.round-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line-light); background: transparent;
  transition: background-color .2s, border-color .2s, color .2s;
}
.round-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.round-btn .icon { width: 20px; height: 20px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  color: #fff;
  transition: background-color .3s, box-shadow .3s, height .3s;
}
.site-header.is-scrolled {
  --header-h: 64px;
  background: rgba(17, 20, 24, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  background: conic-gradient(from 200deg, var(--accent), transparent 70%), rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.brand-name { font-size: 14px; line-height: 1.05; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.brand-logo { height: 60px; width: auto; max-width: 260px; object-fit: contain; transition: height .3s; }
.brand-logo.is-compact { height: 76px; }
.site-header.is-scrolled .brand-logo { height: 46px; }
.site-header.is-scrolled .brand-logo.is-compact { height: 54px; }
.site-footer .brand-logo { height: 64px; }
.site-footer .brand-logo.is-compact { height: 84px; }
@media (max-width: 700px) {
  .brand-logo { height: 46px; max-width: 190px; }
  .brand-logo.is-compact { height: 58px; }
  .site-header.is-scrolled .brand-logo { height: 40px; }
  .site-header.is-scrolled .brand-logo.is-compact { height: 46px; }
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a:not(.btn) {
  position: relative; padding: 6px 0;
  font-size: 14px; font-weight: 600; text-decoration: none;
  color: rgba(255, 255, 255, .8); transition: color .2s;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.main-nav a:not(.btn):hover, .main-nav a.is-active { color: #fff; }
.main-nav a.is-active::after, .main-nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav-cta { display: none; }
.site-header.is-scrolled .nav-cta { display: inline-flex; }

.nav-toggle { display: none; width: 44px; height: 44px; place-items: center; border: 0; background: transparent; margin-right: -10px; }
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .main-nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 8px;
    background: rgba(17, 20, 24, .98);
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .main-nav a:not(.btn) { font-size: 24px; font-weight: 700; padding: 10px 0; }
  .main-nav .nav-cta { display: inline-flex; margin-top: 20px; }
  .site-header.nav-open .main-nav { opacity: 1; visibility: visible; }
  .site-header.nav-open .icon-open { display: none; }
  .site-header.nav-open .icon-close { display: block; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(100svh, 860px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 72px;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 12, 15, .92) 0%, rgba(10, 12, 15, .7) 38%, rgba(10, 12, 15, .15) 75%),
    linear-gradient(0deg, var(--bg-dark) 0%, rgba(17, 20, 24, 0) 30%),
    linear-gradient(180deg, rgba(10, 12, 15, .6) 0%, rgba(10, 12, 15, 0) 25%);
}
.hero-copy { max-width: 580px; }
.hero-title {
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.02; font-weight: 800; letter-spacing: -.035em;
  text-wrap: balance;
  animation: rise .9s var(--ease) both;
}
.hero-text { margin-top: 20px; max-width: 460px; font-size: clamp(16px, 1.4vw, 18px); color: rgba(255, 255, 255, .82); animation: rise .9s .1s var(--ease) both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; animation: rise .9s .2s var(--ease) both; }
.hero .social { margin-top: 36px; animation: rise .9s .3s var(--ease) both; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.social { display: flex; gap: 8px; }
.social a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  color: rgba(255, 255, 255, .85); border: 1px solid rgba(255, 255, 255, .18);
  transition: color .2s, border-color .2s, background-color .2s;
}
.social a:hover { color: var(--accent-contrast); background: var(--accent); border-color: var(--accent); }
.social .icon { width: 18px; height: 18px; }

/* ---------- Seções ---------- */
.section { padding-block: var(--section-y); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark p { color: var(--paper-soft); }
.section-light { background: var(--bg-light); }
.section-muted { background: var(--bg-muted); }
.section-head { margin-bottom: clamp(32px, 4vw, 48px); }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

/* ---------- Vídeos (1, 2 ou 3) ---------- */
.video-section { padding-top: clamp(32px, 5vw, 56px); }
.video-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.video-item { margin: 0; min-width: 0; }
.video-item figcaption { margin-top: 12px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, .7); }
.video-player, .testimonial-video {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius); background: #000;
}
.video-player { box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8), 0 0 0 1px var(--line-dark); }
.video-player img, .testimonial-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video-player:hover img, .testimonial-video:hover img { transform: scale(1.03); }
.video-player iframe, .video-player video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.video-play {
  position: absolute; inset: 0; margin: auto;
  width: 80px; height: 80px; border-radius: 50%; border: 0;
  display: grid; place-items: center;
  /* Translúcido: deixa a cena do vídeo aparecer por trás */
  background: color-mix(in srgb, var(--accent) 45%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .55), 0 6px 20px -6px rgba(0, 0, 0, .5);
  transition: transform .25s var(--ease), background-color .25s;
}
.video-play:hover { transform: scale(1.08); background: color-mix(in srgb, var(--accent) 75%, transparent); }
.video-play .icon { width: 30px; height: 30px; margin-left: 4px; fill: currentColor; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35)); }
.video-text p:not(.eyebrow) { margin-top: 16px; font-size: 17px; max-width: 440px; }
.video-text .btn { margin-top: 28px; }

/* 2 ou 3 vídeos: título em cima, vídeos embaixo */
.video-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 44px); }
.video-head p:not(.eyebrow) { margin-top: 12px; max-width: 560px; font-size: 17px; }
.video-list { display: grid; gap: clamp(16px, 2vw, 24px); }
.videos-2 .video-list { grid-template-columns: 1fr 1fr; }
/* 3 vídeos: o primeiro em destaque, os outros dois empilhados ao lado */
.videos-3 .video-list { grid-template-columns: 1.7fr 1fr; }
.videos-3 .video-item:first-child { grid-row: span 2; display: flex; flex-direction: column; }
.videos-3 .video-item:first-child .video-player { flex: 1; aspect-ratio: auto; min-height: 0; }
.videos-3 .video-item:not(:first-child) .video-play { width: 60px; height: 60px; }
.videos-3 .video-item:not(:first-child) .video-play .icon { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .video-grid, .videos-2 .video-list, .videos-3 .video-list { grid-template-columns: 1fr; }
  .videos-3 .video-item:first-child { grid-row: auto; display: block; }
  .videos-3 .video-item:first-child .video-player { aspect-ratio: 16 / 9; }
}

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.25fr auto; gap: clamp(32px, 5vw, 56px); align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-muted); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p:not(.eyebrow) { margin-top: 16px; color: var(--ink-soft); }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 24px; font-size: 14px; font-weight: 600; }
.about-tags li { display: inline-flex; align-items: center; gap: 8px; }
.about-tags .icon { width: 18px; height: 18px; color: var(--accent-on-light); }
.stats { display: grid; gap: 24px; padding-left: clamp(24px, 3vw, 40px); border-left: 1px solid var(--line-light); }
.stats li { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-soft); line-height: 1.35; }
.stats .icon { width: 22px; height: 22px; color: var(--accent-on-light); }
.stats strong { display: block; font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); padding: 28px 0 0; border-left: 0; border-top: 1px solid var(--line-light); }
}
@media (max-width: 680px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- O que oferecemos ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature { padding: 8px clamp(20px, 2.5vw, 32px); border-left: 1px solid var(--line-dark); }
.feature:first-child { padding-left: 0; border-left: 0; }
.feature-icon { width: 32px; height: 32px; color: var(--accent-on-dark); }
.feature h3 { margin-top: 20px; font-size: 18px; font-weight: 700; color: #fff; }
.feature p { margin-top: 8px; font-size: 15px; }

@media (max-width: 900px) {
  .features { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .feature:nth-child(odd) { padding-left: 0; border-left: 0; }
}
@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; row-gap: 0; }
  .feature { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .feature:first-child { border-top: 0; padding-top: 0; }
}

/* ---------- Galeria ---------- */
.gallery-nav { display: flex; gap: 8px; }
.gallery-viewport { overflow: hidden; }
.gallery {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 340px);
  gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
  overscroll-behavior-x: contain;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery li { scroll-snap-align: start; }
.gallery-item {
  display: block; width: 100%; padding: 0; border: 0;
  aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-muted);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 600px) {
  .gallery { grid-auto-columns: 78vw; }
  .gallery-nav { display: none; }
}

.lightbox {
  width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgba(8, 9, 11, .94);
  place-items: center;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: transparent; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 86vh; width: auto; border-radius: var(--radius-sm); }
.lightbox .round-btn { position: absolute; color: #fff; border-color: rgba(255, 255, 255, .25); background: rgba(0, 0, 0, .3); }
.lightbox .round-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; translate: 0 -50%; }
.lightbox-next { right: 20px; top: 50%; translate: 0 -50%; }

/* ---------- Experiência ---------- */
.experience { padding-block: clamp(56px, 7vw, 88px); }
/* Funciona com qualquer quantidade (1 a 18): as linhas se distribuem e a última fica centralizada */
.venues {
  --cols: 6;
  display: flex; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  padding-block: 8px;
}
.venues li {
  flex: 0 0 calc(100% / var(--cols)); max-width: 260px;
  display: grid; place-items: center; min-height: 112px; padding: 18px 14px;
}
/* Logos: o sistema gera uma versão em 3 tons (cinza médio, cinza claro e branco) */
.venue-logo { width: auto; height: auto; max-width: min(100%, 180px); max-height: 80px; opacity: .88; transition: opacity .2s; }
.venues li:hover .venue-logo { opacity: 1; }
.venue-name {
  text-align: center; font-size: 15px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; line-height: 1.25;
  color: rgba(255, 255, 255, .6); transition: color .2s;
}
.venue-name:hover { color: #fff; }

@media (max-width: 900px) {
  .venues li { flex-basis: calc(100% / min(var(--cols), 3)); }
}
@media (max-width: 520px) {
  .venues li { flex-basis: calc(100% / min(var(--cols), 2)); min-height: 88px; }
  .venue-name { font-size: 13px; }
}

/* ---------- Depoimentos (1 a 6, com ou sem vídeo) ---------- */
.testimonials { --cols: 3; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.testimonial {
  flex: 0 0 calc((100% - (var(--cols) - 1) * 20px) / var(--cols)); min-width: 0;
  display: flex; flex-direction: column; gap: 22px;
  padding: 32px 28px 28px;
  background: var(--paper); border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 12px 32px -20px rgba(0, 0, 0, .18);
}
.testimonial.has-video { padding-top: 12px; }
.testimonial-video { margin: 0 -16px; border-radius: 8px; }
.testimonial-video .video-play { width: 60px; height: 60px; }
.testimonial-video .video-play .icon { width: 22px; height: 22px; }
.testimonial blockquote { position: relative; padding-top: 34px; font-size: 16px; line-height: 1.65; color: var(--ink); }
.testimonial blockquote::before {
  content: "\201C"; position: absolute; top: -14px; left: -4px;
  font-size: 64px; line-height: 1; font-weight: 800; color: var(--accent-on-light);
}
.testimonial.has-video blockquote { padding-top: 0; }
.testimonial.has-video blockquote::before { display: none; }
.testimonial-author { display: flex; flex-direction: column; margin-top: auto; font-size: 14px; line-height: 1.4; }
.testimonial-author span { color: var(--ink-soft); font-size: 13px; }

.video-modal {
  width: min(960px, 94vw); max-height: 92vh; padding: 0; border: 0; overflow: visible; background: transparent;
}
.video-modal::backdrop { background: rgba(8, 9, 11, .9); }
.video-modal-body { aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-modal-body.is-vertical { aspect-ratio: 9 / 16; height: min(84vh, 760px); margin-inline: auto; }
.video-modal-body iframe, .video-modal-body video { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close { position: absolute; top: -54px; right: 0; color: #fff; border-color: rgba(255, 255, 255, .3); background: rgba(0, 0, 0, .4); }
.video-modal-close:hover { background: #fff; color: var(--ink); }

@media (max-width: 900px) {
  .testimonial { flex-basis: calc((100% - (min(var(--cols), 2) - 1) * 20px) / min(var(--cols), 2)); }
}
@media (max-width: 620px) {
  .testimonial { flex-basis: 100%; }
}

.inline-cta {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px 24px;
  margin-top: 48px; text-align: center;
}
.inline-cta p { font-size: 18px; font-weight: 700; }


/* ---------- Agenda + Tipos de evento ---------- */
.split { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(40px, 6vw, 80px); }
.split > * + * { padding-left: clamp(40px, 6vw, 80px); border-left: 1px solid var(--line-light); }
.agenda .section-title, .event-types .section-title { margin-bottom: 28px; }
.agenda-list li { display: flex; align-items: center; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
.agenda-list li:first-child { padding-top: 0; }
.agenda-date {
  display: grid; place-items: center; flex: none;
  width: 56px; height: 60px; border-radius: var(--radius-sm);
  background: var(--paper); line-height: 1;
}
.agenda-date strong { font-size: 22px; font-weight: 800; }
.agenda-date span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-on-light); margin-top: -8px; }
.agenda-list div { display: flex; flex-direction: column; line-height: 1.35; }
.agenda-list div strong { font-size: 15px; }
.agenda-list div span { font-size: 14px; color: var(--ink-soft); }

.event-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.event-grid li {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 24px 10px; text-align: center;
  font-size: 13px; font-weight: 600; line-height: 1.3;
  background: var(--paper); border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.event-grid li:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -20px rgba(0, 0, 0, .35); }
.event-grid .icon { width: 30px; height: 30px; color: var(--accent-on-light); }

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split > * + * { padding-left: 0; border-left: 0; padding-top: 56px; border-top: 1px solid var(--line-light); }
}
@media (max-width: 600px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .event-grid li:last-child { grid-column: 1 / -1; }
}

/* ---------- CTA final ---------- */
.final-cta {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(88px, 12vw, 150px);
  text-align: center; color: #fff;
}
.final-cta-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.final-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(10, 12, 15, .55) 0%, rgba(10, 12, 15, .85) 70%),
    linear-gradient(180deg, var(--bg-dark) 0%, transparent 25%, transparent 75%, var(--bg-dark) 100%);
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-cta-title {
  max-width: 760px; margin-bottom: 36px;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.1; font-weight: 800; letter-spacing: -.03em;
  text-wrap: balance;
}
.final-cta-alt { margin-top: 20px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.final-cta-alt a { color: #fff; font-weight: 600; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #fff; padding: 36px 0; border-top: 1px solid var(--line-dark); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-meta { font-size: 13px; color: rgba(255, 255, 255, .55); }

@media (max-width: 760px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ---------- WhatsApp flutuante ---------- */
.float-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); color: var(--accent-contrast);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .5);
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
}
.float-wa .icon { width: 28px; height: 28px; }
.float-wa.is-visible { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- Animação de entrada ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-title, .hero-text, .hero-actions, .hero .social { animation: none; }
}

/* ---------- Mobile: hero ---------- */
@media (max-width: 700px) {
  .hero { align-items: flex-end; min-height: 100svh; padding-bottom: 48px; }
  .hero-bg { object-position: 70% center; }
  .hero::before {
    background:
      linear-gradient(0deg, rgba(10, 12, 15, .97) 0%, rgba(10, 12, 15, .75) 45%, rgba(10, 12, 15, .2) 75%),
      linear-gradient(180deg, rgba(10, 12, 15, .7) 0%, rgba(10, 12, 15, 0) 22%);
  }
  .hero-actions .btn { flex: 1 1 100%; }
  .section-head-row { align-items: flex-start; }
}

/* ---------- DEMO (não vai para o site do cliente) ---------- */
.demo-colors {
  position: fixed; left: 20px; bottom: 20px; z-index: 45;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(17, 20, 24, .92); backdrop-filter: blur(10px);
  color: #fff; box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .6), 0 0 0 1px var(--line-dark);
}
.demo-colors p { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 8px; }
.demo-swatches { display: flex; gap: 8px; }
.demo-swatches button, .demo-custom {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .2); padding: 0;
  transition: transform .15s, border-color .15s;
}
.demo-swatches button:hover, .demo-custom:hover { transform: scale(1.12); }
.demo-swatches button[aria-pressed="true"] { border-color: #fff; }
.demo-custom {
  position: relative; cursor: pointer; overflow: hidden;
  background: conic-gradient(#f44, #fd4, #4d4, #4df, #44f, #f4f, #f44);
}
.demo-custom input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.demo-toggle { display: none; }
@media (max-width: 700px) {
  .demo-colors { left: 12px; bottom: 20px; padding: 6px; border-radius: 999px; display: flex; align-items: center; gap: 8px; }
  .demo-colors p { display: none; }
  .demo-toggle {
    display: block; width: 46px; height: 46px; border-radius: 50%; border: 3px solid var(--accent); padding: 0;
    background: conic-gradient(#f44, #fd4, #4d4, #4df, #44f, #f4f, #f44);
  }
  .demo-swatches { display: none; padding-right: 6px; }
  .demo-colors.is-open .demo-swatches { display: flex; }
  .demo-swatches button, .demo-custom { width: 26px; height: 26px; }
}

/* ---------- Variações conforme o conteúdo preenchido ---------- */
.about-grid.no-stats { grid-template-columns: 1fr 1.25fr; }
.about-grid.no-photo { grid-template-columns: 1.6fr auto; }
.about-grid.no-photo.no-stats { grid-template-columns: minmax(0, 720px); }
.features-3 { grid-template-columns: repeat(3, 1fr); }
.features-2 { grid-template-columns: repeat(2, 1fr); }
.features-1 { grid-template-columns: 1fr; }
@media (min-width: 901px) {
}
.split-single { grid-template-columns: 1fr; }
.split-single > * + * { padding: 0; border: 0; }
.agenda-list li.is-past { display: none; }
@media (max-width: 1024px) {
  .about-grid.no-stats, .about-grid.no-photo { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .about-grid.no-stats, .about-grid.no-photo { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .features-3, .features-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .features-3, .features-2 { grid-template-columns: 1fr; }
}

/* ---------- Faixa da pré-visualização (só no painel) ---------- */
.preview-bar {
  position: fixed; left: 50%; bottom: 16px; z-index: 60; translate: -50% 0;
  padding: 10px 18px; border-radius: 999px;
  background: #fff; color: #111; font-size: 13px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .5);
}
.preview-bar a { color: #111; margin-left: 8px; }
