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

:root {
  --red:    #D40000;
  --yellow: #F5C200;
  --blue:   #0059C1;
  --purple: #7B0098;
  --dark:   #1A1A1A;
  --mid:    #666666;
  --white:  #FFFFFF;
  --bg-light: #F4F4F6;
  --bg-dark:  #0d0a1a;
  --shell:    #0d0a1a;

  --font-display: 'DIN', 'Barlow', 'Oswald', -apple-system, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(13, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-decoration: none;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}
.nav-cta:hover { background: #b80000; }

/* Nav-bar do topo: sempre com fundo var(--shell) pra não
   ficar transparente sobre a hero. Em mobile o .nav-links
   vira position:fixed (drawer), mas a <nav> em si continua
   com a barra do topo. */
nav { background: var(--shell, var(--bg-dark)); }

/* Hambúrguer - só aparece em <=960px; a partir daí o inline
   do .nav-links começa a apertar os 9 itens. */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
    background: var(--shell, var(--bg-dark));
  border: 0;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--yellow, #F5C200);
  outline-offset: 2px;
  border-radius: 4px;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1),
              opacity 150ms ease,
              top 200ms cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.nav-toggle-icon::before { position: absolute; top: -7px; }
.nav-toggle-icon::after  { position: absolute; top:  7px; }

/* X quando aberto */
nav.is-open .nav-toggle-icon { background: transparent; }
nav.is-open .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
nav.is-open .nav-toggle-icon::after  { top: 0; transform: rotate(-45deg); }

/* Backdrop do drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 13, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 998;
}
nav.is-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 960px) {
/* Nav em mobile: o próprio <nav> vira o container full-screen
   quando aberto (nav.is-open), e o botão hambúrguer aparece.
   [nav-bg-fix-3: drawer solid shell] */
  nav {
    align-items: center;
    justify-content: flex-end;
    background: var(--shell, var(--bg-dark));
    /* O drawer (.nav-links) É o full-screen, não a <nav> */
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--shell, var(--bg-dark));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 0 24px;
    margin: 0;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    overflow-y: auto;
  }
  nav.is-open .nav-links { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-drawer-close-row {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    background: var(--shell, var(--bg-dark));
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 8px;
  }
  .nav-drawer-close {
    width: 44px; height: 44px;
    margin: 12px 12px 8px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 4px;
    transition: background 150ms ease;
  }
  .nav-drawer-close:hover { background: rgba(255,255,255,0.08); }
  .nav-drawer-close:focus-visible {
    outline: 2px solid var(--yellow, #F5C200);
    outline-offset: 2px;
  }
  .nav-drawer-close-icon,
  .nav-drawer-close-icon::before {
    content: '';
    display: block;
    width: 22px; height: 2px;
    background: currentColor;
    border-radius: 2px;
    position: relative;
  }
  .nav-drawer-close-icon::before {
    position: absolute;
    top: 0;
    transform: rotate(45deg);
  }
  .nav-drawer-close-icon {
    transform: rotate(-45deg);
  }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:hover { background: rgba(255,255,255,0.04); color: var(--white); }
  .nav-cta {
    margin: 16px 24px 0;
    text-align: center;
    border-bottom: 0 !important;
  }
}
@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .nav-logo span { font-size: 14px; letter-spacing: 0.06em; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(123,0,152,0.85) 0%, rgba(13,10,26,0.7) 55%, transparent 100%),
    url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1920&q=80') center/cover no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  scale: 1.12;
  transform-origin: center top;
  transition: opacity 0.3s;
}
.hero-quadrant {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.06;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}
.hero-quadrant span {
  border: 2px solid var(--white);
  border-radius: 2px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 780px;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.2s;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #b80000; }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.watch-cta { gap: 10px; }
.watch-cta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 200ms ease, box-shadow 200ms ease, width 200ms ease, height 200ms ease;
  flex-shrink: 0;
}
.watch-cta.is-live .watch-cta-dot {
  background: var(--red);
  width: 10px; height: 10px;
  box-shadow: 0 0 0 0 rgba(212,0,0,0.6);
  animation: watch-cta-pulse 1.4s ease-out infinite;
}
.watch-cta.is-live {
  border-color: var(--red);
  color: var(--red);
}
.watch-cta.is-live:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
@keyframes watch-cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,0,0,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(212,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,0,0,0); }
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 960px) {
  .hero-quadrant {
    right: -30px;
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 540px;
  }

  .hero-bg {
    inset: -40px 0 0 0;
    scale: 1.08;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 62px);
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-quadrant {
    opacity: 0.04;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-content,
  .scroll-hint {
    transform: none !important;
    scale: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ── SECTION BASE ── */
.section {
  padding: 96px 8%;
}
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.65;
}

/* ── PILLARS ── */
.pillars { background: var(--white); }
.pillars-header { margin-bottom: 64px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pillar-card {
  padding: 40px 28px;
  border-top: 4px solid transparent;
  position: relative;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.pillar-card.pillar-cross::before { background: var(--red); }
.pillar-card.pillar-dove::before  { background: var(--yellow); }
.pillar-card.pillar-chalice::before { background: var(--blue); }
.pillar-card.pillar-crown::before  { background: var(--purple); }

.pillar-icon {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 16px;
}
.pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pillar-cross .pillar-icon  { background: rgba(212,0,0,0.1); }
.pillar-dove .pillar-icon   { background: rgba(245,194,0,0.15); }
.pillar-chalice .pillar-icon { background: rgba(0,89,193,0.1); }
.pillar-crown .pillar-icon  { background: rgba(123,0,152,0.1); }

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-card .pillar-verb {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar-cross .pillar-verb  { color: var(--red); }
.pillar-dove .pillar-verb   { color: #b89000; }
.pillar-chalice .pillar-verb { color: var(--blue); }
.pillar-crown .pillar-verb  { color: var(--purple); }

.pillar-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ── HISTORY ── */
.history {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.history-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue), var(--purple));
}
.history-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.history-text .section-title { margin-bottom: 24px; }
.history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--mid); line-height: 1.4; }
.history-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1530;
  position: relative;
}
.history-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: contrast(1.05) saturate(0.85);
}
.history-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,10,26,0.55) 100%);
  pointer-events: none;
}
.history-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13,10,26,0.85);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

/* ── LOCAL HISTORY CAROUSEL ── */
.history-local {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.history-local-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.history-local-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--text);
}
.history-local-title strong { color: var(--blue); font-weight: 700; }
.history-local-sub {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  outline: none;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.carousel-slide-img {
  aspect-ratio: 16/10;
  position: relative;
  background: linear-gradient(135deg, #1a1530 0%, #2a1f55 50%, #1a1530 100%);
  overflow: hidden;
}
.carousel-slide-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.carousel-slide-img img.loaded { opacity: 1; }
.carousel-slide-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.7);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.carousel-slide-img img.loaded ~ .carousel-slide-placeholder { opacity: 0; }
.carousel-placeholder-icon {
  width: 44px;
  height: 44px;
  border: 1.5px dashed rgba(255,255,255,0.35);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: rgba(255,255,255,0.55);
}
.carousel-placeholder-filename {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.35);
  padding: 5px 10px;
  border-radius: 3px;
  color: rgba(255,255,255,0.85);
}
.carousel-year-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(13,10,26,0.88);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.carousel-counter-inline {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--mid);
  min-width: 56px;
  text-align: center;
  user-select: none;
}
.carousel-counter-inline .total { color: rgba(0,0,0,0.35); }
.carousel-slide-body {
  padding: 32px 40px 36px;
}
.carousel-slide-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.25;
}
.carousel-slide-body p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 0 4px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.carousel-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
}
.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  background: var(--white);
  color: var(--text);
  border-color: rgba(0,0,0,0.12);
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.3s ease;
}
.carousel-dot:hover { background: rgba(0,0,0,0.4); }
.carousel-dot.active {
  background: var(--blue);
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .history-inner { grid-template-columns: 1fr; gap: 40px; }
  .history-stats { grid-template-columns: repeat(3, 1fr); }
  .history-local { margin-top: 72px; padding-top: 48px; }
  .history-local-title { font-size: 26px; }
  .carousel-slide-body { padding: 24px 24px 30px; }
  .carousel-slide-body h4 { font-size: 20px; }
  .carousel-year-badge { font-size: 13px; padding: 5px 10px; top: 14px; left: 14px; }
}

/* ── WELCOME ── */
.welcome {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}
.welcome .section-label { color: var(--yellow); }
.welcome .section-title { color: var(--white); margin-bottom: 20px; }
.welcome .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 56px; }
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.welcome-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background 0.2s, transform 0.2s;
}
.welcome-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.welcome-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  line-height: 0;
  margin-bottom: 20px;
  transition: background 0.2s, color 0.2s;
}
.welcome-card-icon svg { display: block; }
.welcome-card:nth-child(1) .welcome-card-icon { background: rgba(212,0,0,0.2); color: #FF4D4D; }
.welcome-card:nth-child(2) .welcome-card-icon { background: rgba(245,194,0,0.2); color: #FFD340; }
.welcome-card:nth-child(3) .welcome-card-icon { background: rgba(0,89,193,0.2); color: #5AB0FF; }
.welcome-card:hover .welcome-card-icon { background: rgba(255,255,255,0.12); color: var(--white); }
.welcome-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.welcome-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

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

/* ── SCHEDULE ── */
.schedule { background: var(--white); }
.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.service-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.service-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.service-day {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-time {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
}
.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.tag-sunday { background: rgba(212,0,0,0.1); color: var(--red); }
.tag-wednesday { background: rgba(0,89,193,0.1); color: var(--blue); }
.tag-youth { background: rgba(123,0,152,0.1); color: var(--purple); }
.tag-blessing { background: rgba(245,194,0,0.18); color: #8A6A00; }
.tag-miracle { background: rgba(123,0,152,0.12); color: var(--purple); }

.schedule-cta {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 40px;
}
.schedule-cta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.schedule-cta p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 24px; }
.address-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--dark);
}
.address-block svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }

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

/* ── SCHEDULE HIGHLIGHT (destaque entre Localização e Ao Vivo) ── */
.schedule-highlight {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.schedule-highlight-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.schedule-highlight-head .section-title { margin-top: 8px; }
.schedule-highlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  font: 11px/1 var(--font-mono, ui-monospace, Menlo, monospace);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.schedule-highlight-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green, #2E8B57);
  box-shadow: 0 0 0 0 rgba(46,139,87,0.5);
  animation: live-pulse 1.6s infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,139,87,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(46,139,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,139,87,0); }
}
.schedule-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 30px -18px rgba(0,0,0,0.18);
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--card-accent, var(--blue));
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 22px 40px -18px rgba(0,0,0,0.28);
}
.service-card.is-sunday   { --card-accent: var(--red); }
.service-card.is-blessing { --card-accent: var(--yellow); }
.service-card.is-miracle  { --card-accent: var(--purple); }
.service-card.is-bible    { --card-accent: var(--blue); }
.service-card-day {
  font: 700 11px/1 var(--font-mono, ui-monospace, Menlo, monospace);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--card-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card-day::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
}
.service-card-time {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dark);
  margin-top: 2px;
}
.service-card-time small {
  font-size: 18px;
  font-weight: 500;
  color: var(--mid);
  margin-left: 4px;
}
.service-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-top: auto;
}
.service-card-meta {
  font-size: 13px;
  line-height: 1.5;
  color: var(--mid);
}
.service-card-cta {
  font: 700 12px/1 var(--font-mono, ui-monospace, Menlo, monospace);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  text-decoration: none;
}
.service-card-cta::after {
  content: "→";
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover .service-card-cta::after { transform: translateX(4px); }

@media (max-width: 1024px) {
  .schedule-highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .schedule-highlight-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 24px 20px 22px; }
  .service-card-time { font-size: 44px; }
  .schedule-highlight-head { margin-bottom: 32px; }
}

/* ── CALENDAR MODAL (lightbox próprio do calendário) ── */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 10, 26, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cal-modal.is-open { display: flex; animation: calm-fade 0.18s ease-out; }
@keyframes calm-fade { from { opacity: 0 } to { opacity: 1 } }
.cal-modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: calm-pop 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes calm-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.cal-modal-photo {
  position: relative;
  background: var(--bg-dark);
  display: grid;
  place-items: center;
  min-height: 120px;
}
.cal-modal-photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.cal-modal-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cal-modal-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.cal-modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
.cal-modal-date {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.cal-modal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
}
.cal-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.94);
  color: var(--dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.cal-modal-close:hover { background: var(--white); transform: scale(1.06); }
.cal-modal-close:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
body.cal-modal-open { overflow: hidden; }
@media (max-width: 600px) {
  .cal-modal { padding: 12px; }
  .cal-modal-dialog { max-height: calc(100vh - 24px); }
  .cal-modal-body { padding: 22px 22px 26px; }
  .cal-modal-title { font-size: 20px; }
}

/* ── CALENDAR ── */
.calendar { background: var(--bg-light); color: var(--fg); }
.calendar-inner { max-width: 1180px; margin: 0 auto; }
.calendar-header { margin-bottom: 40px; }
.calendar-shell {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.calendar-month-name {
  font: 600 24px/1.2 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
  text-transform: capitalize;
}
.calendar-nav { display: flex; gap: 6px; }
.calendar-nav-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--fg);
  border-radius: 10px;
  font: 600 18px/1 var(--font-display);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 150ms, border-color 150ms, color 150ms, transform 120ms;
}
.calendar-nav-btn:hover {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}
.calendar-nav-btn:focus-visible {
  outline: 2px solid var(--yellow, #F5C200);
  outline-offset: 2px;
}
.calendar-nav-btn:active { transform: scale(0.94); }
.cal-today-btn { font-size: 22px; line-height: 1; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.calendar-dow {
  padding: 10px 6px;
  text-align: center;
  font: 500 11px/1 var(--font-mono, ui-monospace, Menlo, monospace);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
}
.calendar-day {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--white);
  border: 0;
  padding: 0;
  font: 500 14px/1 var(--font-display);
  color: var(--fg);
  cursor: default;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 12px;
  transition: background 150ms, color 150ms;
}
.calendar-day.is-other-month { color: var(--border); background: var(--bg); }
.calendar-day.has-events {
  cursor: pointer;
  font-weight: 700;
  background: rgba(245, 194, 0, 0.10);
}
.calendar-day.has-events:hover { background: var(--bg-dark); color: var(--white); }
.calendar-day.has-events:hover .calendar-day-dot { background: var(--white); box-shadow: 0 0 0 3px var(--bg-dark); }
.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px var(--red);
  color: var(--red);
}
.calendar-day.is-today.has-events { color: var(--red); }
.calendar-day.is-selected {
  background: var(--red) !important;
  color: var(--white) !important;
}
.calendar-day.is-selected .calendar-day-dot { background: var(--white); }
.calendar-day:focus-visible {
  outline: 2px solid var(--yellow, #F5C200);
  outline-offset: -2px;
  z-index: 1;
}
.calendar-day-dot {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--white);
}

.calendar-legend {
  display: flex;
  gap: 18px;
  margin: 14px 4px 0;
  font: 500 12px/1 var(--font-mono, ui-monospace, Menlo, monospace);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.calendar-legend-item { display: inline-flex; align-items: center; gap: 6px; }
.calendar-legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.calendar-legend-ring {
  width: 10px; height: 10px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--red);
}

.calendar-side {
  position: sticky;
  top: 96px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 200px;
}
.calendar-side-title {
  font: 600 14px/1.3 var(--font-display);
  color: var(--fg);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.calendar-events-list { display: flex; flex-direction: column; gap: 10px; }
.calendar-empty {
  font: 400 13px/1.5 var(--font-body);
  color: var(--muted);
  margin: 0;
}
.calendar-event-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  font: inherit;
  color: inherit;
  transition: background 150ms, transform 120ms, border-color 150ms, box-shadow 150ms;
}
.calendar-event-card:hover {
  background: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 10, 26, 0.10);
}
.calendar-event-card:focus-visible {
  outline: 2px solid var(--yellow, #F5C200);
  outline-offset: 2px;
}
.calendar-event-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--bg-dark);
}
.calendar-event-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.calendar-event-tag {
  display: inline-block;
  align-self: flex-start;
  font: 600 10px/1 var(--font-mono, ui-monospace, Menlo, monospace);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 4px;
}
.calendar-event-title {
  font: 600 15px/1.3 var(--font-display);
  color: var(--fg);
  margin: 0 0 2px;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.calendar-event-time {
  font: 500 11px/1 var(--font-mono, ui-monospace, Menlo, monospace);
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.04em;
}
.calendar-event-desc {
  font: 400 12px/1.45 var(--font-body);
  color: var(--muted);
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 960px) {
  .calendar-shell { grid-template-columns: 1fr; gap: 20px; }
  .calendar-side { position: static; }
}
@media (max-width: 560px) {
  .calendar-day { padding: 8px 8px; font-size: 13px; }
  .calendar-day-dot { bottom: 6px; width: 8px; height: 8px; box-shadow: 0 0 0 2px var(--white); }
  .calendar-month-name { font-size: 20px; }
  .calendar-nav-btn { width: 36px; height: 36px; }
  .calendar-legend { gap: 12px; font-size: 11px; }
}

/* ── MEDIA ── */
.media { background: var(--bg-light); }
.media-header { margin-bottom: 48px; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.media-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.media-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.media-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.media-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.media-thumb-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}
.media-card-body { padding: 20px; }
.media-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.media-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.media-card-meta { font-size: 12px; color: var(--mid); }

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

/* -- MEDIA - lite-embed (YouTube) -- */
.media-thumb-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  font: inherit;
  color: inherit;
  text-align: left;
}
.media-thumb-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.2s;
}
.media-thumb-shell:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.6) 100%);
}
.media-thumb-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.media-thumb-shell:hover img { transform: scale(1.04); }
.media-thumb-shell .play-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, background 0.2s;
}
.media-thumb-shell:hover .play-pulse {
  background: #ff1a1a;
  transform: translate(-50%, -50%) scale(1.1);
}
.media-card .title-skeleton,
.media-card .meta-skeleton {
  display: block;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 4px;
  color: transparent;
  height: 1em;
}
.media-card .title-skeleton {
  height: 18px;
  width: 85%;
  margin: 4px 0 10px;
}
.media-card .meta-skeleton {
  height: 11px;
  width: 55%;
  margin-top: 10px;
}
.media-card[data-loaded="false"] .title-text,
.media-card[data-loaded="false"] .meta-text { display: none; }
.media-card[data-loaded="true"] .title-skeleton,
.media-card[data-loaded="true"] .meta-skeleton { display: none; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.media-thumb-iframe {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.media-thumb-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── DONATIONS ── */
.donations { background: var(--bg-dark); color: var(--white); }
.donations-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.donations-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 48px;
}
.donations-pix-label,
.donations-bank-label,
.donations-qr-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.donations-pix-label { color: var(--yellow); }
.donations-bank-label { color: rgba(255,255,255,0.5); }
.donations-qr-label { color: rgba(255,255,255,0.4); }
.donations-pix-block { margin-bottom: 28px; }
.donations-pix-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 16px 20px;
}
.donations-pix-key span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  word-break: break-all;
  min-width: 0;
}
.donations-copy-btn {
  flex-shrink: 0;
  background: var(--yellow);
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: transform 0.15s, box-shadow 0.15s;
}
.donations-copy-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,194,0,0.35); }
.donations-bank-name { font-size: 15px; font-weight: 600; }
.donations-bank-cnpj { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.donations-qr-block { text-align: center; }
.donations-qr-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
}
.donations-qr-caption { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 12px; }

@media (max-width: 768px) {
  .donations-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .donations-qr-block { order: 2; }
}
@media (max-width: 380px) {
  .donations-pix-key { flex-wrap: wrap; }
  .donations-pix-key span { font-size: 16px; flex: 1 1 100%; }
  .donations-copy-btn { flex: 1 1 100%; }
  .donations-card { padding: 24px 18px; }
}

/* ── LOCATION ── */
.location { background: var(--white); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.location-info { padding: 48px 40px; background: var(--bg-dark); color: var(--white); }
.location-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.location-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow); }
.location-socials {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.location-socials-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.location-socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  transform: translateY(-1px);
}
.social-link svg { color: var(--yellow); flex-shrink: 0; }
.social-link:hover svg { color: var(--white); }
.location-map {
  background: #e8e8e8;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

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

/* ── AO VIVO ── */
.live { background: var(--white); }
.live-player {
  position: relative;
  max-width: 1100px;
  margin: 56px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  aspect-ratio: 16/9;
}
.live-player iframe { width: 100%; height: 100%; border: 0; display: block; }
.live-offline {
  position: relative;
  max-width: 1100px;
  margin: 56px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1530 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.live-offline-inner {
  text-align: center;
  color: var(--white);
  max-width: 540px;
}
.live-offline-mark {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(212,0,0,0.35);
}
.live-offline-mark svg { color: var(--white); }
.live-offline-title {
  font: 700 clamp(22px, 3vw, 32px)/1.2 var(--font-display, system-ui, sans-serif);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.live-offline-title .accent { color: var(--yellow); }
.live-offline-sub {
  font: 400 15px/1.5 var(--font-body, system-ui, sans-serif);
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
}
.live-offline-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.live-offline-actions .live-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font: 600 14px/1 var(--font-body, system-ui, sans-serif);
  transition: background 0.2s, border-color 0.2s;
}
.live-offline-actions .live-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}
@media (max-width: 720px) {
  .live-offline-actions { flex-direction: column; width: 100%; }
  .live-offline-actions .live-cta,
  .live-offline-actions .live-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
.live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font: 700 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(212,0,0,0.4);
}
.live-dot {
  width: 8px; height: 8px;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
}
.live-dot.is-pulsing { animation: live-pulse 1.4s ease-in-out infinite; }
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.5); }
}
.live-info {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.live-info p { color: var(--text-muted, #555); max-width: 600px; }
.live-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font: 600 14px/1 -apple-system, system-ui, sans-serif;
  transition: background 0.2s, transform 0.2s;
}
.live-cta:hover { background: #b30000; transform: translateY(-1px); }
.live-cta svg { flex-shrink: 0; }
@media (max-width: 720px) {
  .live-info { flex-direction: column; align-items: flex-start; }
}

/* ── CONTATO ── */
.contact { background: var(--bg-dark); color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.65); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-top: 56px;
}
.contact-info,
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 32px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.contact-info-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}
.contact-info-line svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow); }
.contact-info-link {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  transition: color 0.15s ease, transform 0.15s ease;
  border-radius: 4px;
}
.contact-info-link:hover, .contact-info-link:focus-visible {
  color: #fff;
  transform: translateX(2px);
  outline: none;
}
.contact-info-link:hover .wa-icon, .contact-info-link:focus-visible .wa-icon { transform: scale(1.08); }
.wa-icon { transition: transform 0.15s ease; }
.contact-info-promise {
  margin-top: 28px;
  padding: 14px 16px;
  background: rgba(245, 194, 0, 0.08);
  border-left: 3px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.contact-info-promise p { margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 20px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.form-label em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}
.form-field input,
.form-field textarea {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font: 15px/1.5 var(--font-body);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(0,0,0,0.4);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-checks {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.form-check:hover { border-color: rgba(255,255,255,0.18); }
.form-check input[type="checkbox"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-check-box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  background: rgba(0,0,0,0.3);
  position: relative;
  margin-top: 1px;
  transition: background 0.15s, border-color 0.15s;
}
.form-check input:checked + .form-check-box {
  background: var(--yellow);
  border-color: var(--yellow);
}
.form-check input:checked + .form-check-box::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 11px;
  border: solid var(--bg-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check input:focus-visible + .form-check-box {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.form-check-text { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.82); }
.form-check-text strong { color: var(--white); font-weight: 600; }
.form-check:has(input:checked) { border-color: rgba(245, 194, 0, 0.45); background: rgba(245, 194, 0, 0.06); }
.form-submit {
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, opacity 0.2s;
}
.form-submit:hover:not(:disabled) { background: #b80000; }
.form-submit:active:not(:disabled) { transform: translateY(1px); }
.form-submit:disabled {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  cursor: not-allowed;
}
.form-helper {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: -4px 0 0;
  letter-spacing: 0.02em;
}
.form-helper.is-error { color: #ff9a9a; }
.form-feedback {
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.form-feedback strong { display: block; margin-bottom: 4px; font-weight: 700; }
.form-feedback.is-success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.32);
  color: #b8f5cf;
}
.form-feedback.is-error {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.32);
  color: #ffb8b8;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-form, .contact-info { padding: 28px 20px; }
}

/* ── FOOTER ── */
footer {
  background: #08060f;
  color: rgba(255,255,255,0.5);
  padding: 64px 8% 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
  color: rgba(255,255,255,0.4);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-colors {
  display: flex;
  gap: 8px;
}
.footer-colors span {
  width: 24px; height: 4px;
  border-radius: 2px;
}
.footer-colors span:nth-child(1) { background: var(--red); }
.footer-colors span:nth-child(2) { background: var(--yellow); }
.footer-colors span:nth-child(3) { background: var(--blue); }
.footer-colors span:nth-child(4) { background: var(--purple); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; }

/* ── FAQ ── */
.section.faq {
  background: var(--white);
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.faq-item[open] {
  border-color: var(--yellow);
  box-shadow: 0 6px 24px -10px rgba(245,194,0,0.45);
}
.faq-item:hover { border-color: rgba(0,0,0,0.18); }
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--dark);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}
.faq-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(245,194,0,0.14);
  color: var(--dark);
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), background 0.2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--yellow);
}
.faq-a {
  padding: 0 28px 24px;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
  animation: faq-fade 0.22s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.faq-a p { margin: 0; }
.faq-a strong { color: var(--dark); }
.faq-a a { color: var(--blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.faq-a a:hover { color: var(--dark); }
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .faq-q { padding: 18px 20px; font-size: 16px; }
  .faq-a { padding: 0 20px 20px; font-size: 15px; }
}
