﻿/* =========================================================
   Os Bichinhos Cantam — tema Murilo (outono / âmbar)
   ========================================================= */

:root {
  /* Murilo — outono / âmbar queimado */
  --murilo-deep: #0c0806;
  --murilo-mid: #1f120c;
  --murilo-rust: #3d2214;
  --murilo-accent: #c87852;
  --murilo-accent-soft: #e09060;
  --murilo-amber: rgba(228, 145, 102, 0.22);
  --murilo-glow: rgba(240, 176, 128, 0.16);
  --murilo-ember: rgba(180, 85, 42, 0.18);
  --murilo-surface: rgba(28, 16, 10, 0.55);
  --murilo-surface-mid: rgba(28, 16, 10, 0.45);
  --murilo-surface-light: rgba(28, 16, 10, 0.42);
  --murilo-surface-strong: rgba(18, 10, 6, 0.78);
  --murilo-panel: rgba(32, 18, 12, 0.72);
  --murilo-ink: #140c08;
  --murilo-muted: #c9a088;
  --murilo-text-soft: #f5dcc8;

  /* Aliases legados → Murilo */
  --night-deep: var(--murilo-deep);
  --night-blue: var(--murilo-mid);
  --violet-deep: var(--murilo-rust);
  --violet-accent: var(--murilo-accent-soft);
  --magic-pink: var(--murilo-amber);

  --moon-gold: #ffd36a;
  --cta-orange: #ff8a24;
  --warm-cream: #fff4d4;

  --text: var(--warm-cream);
  --text-soft: var(--murilo-text-soft);
  --muted: var(--murilo-muted);
  --ink: var(--murilo-ink);
  --line: rgba(240, 176, 128, 0.16);
  --line-strong: rgba(240, 176, 128, 0.28);
  --glass: var(--murilo-surface);
  --glass-strong: var(--murilo-surface-strong);

  --shadow-sm: 0 8px 24px rgba(8, 4, 2, 0.32);
  --shadow-md: 0 18px 48px rgba(8, 4, 2, 0.42);
  --shadow-lg: 0 28px 90px rgba(8, 4, 2, 0.5);
  --glow-gold: 0 0 32px rgba(255, 211, 106, 0.32);
  --glow-orange: 0 0 36px rgba(255, 138, 36, 0.36);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 38px;

  --container: 1160px;
  --container-pad: clamp(20px, 4vw, 32px);
  /* Mesma faixa que sob o hero: ar entre cartões .section empilhados */
  --section-stack-gap: clamp(18px, 3.5vw, 30px);
}

* { box-sizing: border-box; }

figure { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    "Nunito", ui-rounded, "Avenir Next", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 500;
  color: var(--text);
  background:
    radial-gradient(ellipse at 14% 8%, var(--murilo-glow), transparent 40%),
    radial-gradient(ellipse at 86% 6%, var(--murilo-amber), transparent 38%),
    radial-gradient(ellipse at 50% 100%, var(--murilo-ember), transparent 52%),
    linear-gradient(180deg, var(--murilo-deep) 0%, var(--murilo-mid) 48%, var(--murilo-rust) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(240, 176, 128, 0.35) 50%, transparent 50%),
    radial-gradient(2px 2px at 22% 68%, rgba(255, 211, 106, 0.28) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 38% 24%, rgba(228, 145, 102, 0.32) 50%, transparent 50%),
    radial-gradient(2px 2px at 55% 82%, rgba(255, 138, 36, 0.22) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 71% 18%, rgba(240, 176, 128, 0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 88% 44%, rgba(255, 211, 106, 0.25) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 15% 88%, rgba(200, 118, 82, 0.28) 50%, transparent 50%),
    radial-gradient(2px 2px at 92% 78%, rgba(228, 145, 102, 0.22) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 48% 52%, rgba(255, 211, 106, 0.18) 50%, transparent 50%),
    radial-gradient(2px 2px at 63% 38%, rgba(240, 176, 128, 0.24) 50%, transparent 50%);
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

a { color: inherit; }

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

/* Foco visível acessível */
:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--moon-gold);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Scroll-margin para sticky header */
:where(section[id], h2[id]) {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--warm-cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999;
  font-weight: 800;
  text-decoration: none;
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(12, 8, 6, 0.82);
  border-bottom: 1px solid var(--line);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 8, 6, 0.94);
  border-bottom-color: rgba(200, 118, 82, 0.32);
  box-shadow: 0 8px 32px rgba(8, 4, 2, 0.45);
}

.nav {
  width: min(var(--container), calc(100% - 2 * var(--container-pad)));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
  color: var(--warm-cream);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-mark-moon {
  width: 28px;
  height: 28px;
  display: block;
  color: var(--moon-gold);
  fill: currentColor;
  filter: drop-shadow(0 0 10px rgba(255, 211, 106, 0.42));
}

.brand:hover .brand-mark-moon {
  color: #ffe9a8;
  filter: drop-shadow(0 0 12px rgba(255, 211, 106, 0.55));
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}
.nav-links a {
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 160ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--murilo-accent-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--warm-cream);
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

main {
  width: min(var(--container), calc(100% - 2 * var(--container-pad)));
  margin: 0 auto;
}

/* =========================================================
   Tipografia
   ========================================================= */
h1, h2, h3, h4, p, ul { margin-top: 0; }

h1 {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin-bottom: 22px;
  background: linear-gradient(135deg,
    var(--warm-cream) 0%,
    #ffe9a8 38%,
    var(--murilo-accent-soft) 72%,
    var(--warm-cream) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.5));
  text-wrap: balance;
  animation: hero-title-shimmer 6s linear infinite;
}

@keyframes hero-title-shimmer {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 14px;
  text-wrap: balance;
}

h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--warm-cream);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--moon-gold);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  text-shadow: 0 0 20px rgba(255, 211, 106, 0.4);
}

.subtitle {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  text-wrap: pretty;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  text-wrap: pretty;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  margin: 22px 0 var(--section-stack-gap);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/feed-5bichinhos-murilo.jpg");
  background-size: cover;
  background-position: 58% 42%;
  transform: scale(1);
  transform-origin: center;
  z-index: -3;
  animation: hero-drift 10s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(12, 8, 6, 0.98) 0%,
      rgba(18, 12, 8, 0.94) 38%,
      rgba(28, 16, 10, 0.62) 54%,
      rgba(200, 118, 82, 0.12) 72%,
      rgba(36, 20, 12, 0.08) 100%),
    linear-gradient(180deg,
      rgba(12, 8, 6, 0.35) 0%,
      rgba(12, 8, 6, 0.0) 38%,
      rgba(12, 8, 6, 0.50) 100%);
  z-index: -2;
}

.hero-content {
  min-height: clamp(560px, 78vh, 760px);
  max-width: 640px;
  /* auto: largura só conforme texto; não reservar 640px nem empurrar a capa p/ direita */
  flex: 0 1 auto;
  min-width: 0;
  padding: clamp(32px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-layout {
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  flex-direction: row;
  /* wrap empurrava a capa p/ segunda linha (embaixo à esquerda) em várias larguras */
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 3vw, 28px);
  padding-inline-end: clamp(20px, 4vw, 48px);
}

.hero-cover-card {
  /* Alinha ao nível do título — sobe junto com o padding do hero-content */
  align-self: flex-start;
  margin-top: clamp(32px, 6vw, 72px);
  flex: 0 0 auto;
  /* Entre miniatura e o exagero anterior (~68vw): equilíbrio com texto + countdown */
  width: clamp(240px, 36vw, 420px);
  padding: clamp(5px, 0.55vw, 7px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 230, 180, 0.18);
  background:
    linear-gradient(
      155deg,
      rgba(255, 244, 212, 0.07) 0%,
      rgba(255, 244, 212, 0.02) 45%,
      rgba(32, 18, 12, 0.55) 100%
    ),
    var(--murilo-surface-strong);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 0 0 1px rgba(255, 230, 180, 0.06),
    var(--shadow-md);
}

.hero-cover-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: calc(var(--radius-lg) - 10px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
}

.hero-murilo-panel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  text-align: center;
}
.hero-murilo-panel .live-cta-row {
  justify-content: center;
}
.hero-murilo-panel .live-links-note {
  text-align: center;
}
.hero-murilo-cover-wrap {
  margin: 14px auto 16px;
  width: min(100%, 200px);
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(200, 118, 82, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.hero-murilo-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cover-card--murilo {
  flex: 0 0 auto;
  width: fit-content;
  max-width: min(48%, 500px);
  margin-left: auto;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(200, 118, 82, 0.28);
}
.hero-cover-card--murilo .hero-cover-video {
  width: auto;
  height: clamp(480px, 78vh, 760px);
  max-height: min(760px, calc(100vh - 160px));
  aspect-ratio: 9 / 16;
  object-fit: contain;
  display: block;
  border-radius: calc(var(--radius-lg) - 10px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 244, 212, 0.22);
  border-radius: 999px;
  background: rgba(255, 244, 212, 0.08);
  color: var(--warm-cream);
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.005em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255, 244, 212, 0.16);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.button.primary {
  background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
  color: #fff;
  border: 0;
  box-shadow:
    0 0 34px rgba(30, 215, 96, 0.34),
    0 14px 32px rgba(0, 0, 0, 0.3);
}
.button.primary:hover {
  background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
  box-shadow:
    0 0 44px rgba(30, 215, 96, 0.48),
    0 18px 38px rgba(0, 0, 0, 0.36);
}

/* Alinhado aos .char-listen dos cards: dourado em repouso → verde Spotify no hover */
.button-presave {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 50%),
    linear-gradient(160deg, #ffe566 0%, var(--moon-gold) 40%, var(--cta-orange) 100%);
  color: var(--ink);
  border: 1px solid rgba(255, 210, 80, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 8px 20px rgba(12, 6, 4, 0.48),
    0 0 0 1px rgba(255, 200, 80, 0.2);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.button-presave:hover {
  filter: none;
  background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 0 14px rgba(30, 215, 96, 0.4),
    0 12px 28px rgba(0, 0, 0, 0.32);
}

.button-presave:focus-visible {
  outline: none;
  background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 0 14px rgba(30, 215, 96, 0.45),
    0 12px 28px rgba(0, 0, 0, 0.32),
    0 0 0 3px rgba(255, 211, 106, 0.45);
}

.cta-row .button-presave .btn-svg {
  opacity: 0.75;
}

.cta-row .button-presave:hover .btn-svg,
.cta-row .button-presave:focus-visible .btn-svg {
  opacity: 1;
}

.button-apple {
  background: linear-gradient(135deg, #fa5b8b 0%, #fc6d6d 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 0 32px rgba(250, 35, 59, 0.32), 0 14px 32px rgba(0, 0, 0, 0.3);
}

.button-apple:hover {
  background: linear-gradient(135deg, #fa5b8b 0%, #fc6d6d 100%);
  box-shadow: 0 0 40px rgba(250, 35, 59, 0.44), 0 18px 38px rgba(0, 0, 0, 0.36);
}

.cast-cta .button.ghost {
  background: linear-gradient(135deg,
    #feda77 0%,
    #f58529 22%,
    #dd2a7b 52%,
    #8134af 78%,
    #515bd4 100%);
  border: 0;
  color: #fff;
  box-shadow: 0 14px 30px rgba(129, 52, 175, 0.38);
}

.cast-cta .button.ghost:hover {
  background: linear-gradient(135deg,
    #feda77 0%,
    #f77737 24%,
    #d62976 52%,
    #962fbf 78%,
    #4f5bd5 100%);
  box-shadow: 0 16px 34px rgba(129, 52, 175, 0.44);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 244, 212, 0.28);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: var(--warm-cream);
  font-size: 0.7rem;
  padding-left: 2px;
}

/* SVG icons in buttons */
.btn-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}
.btn-svg-arrow {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}
.button.primary .btn-svg { width: 20px; height: 20px; }

.release-note {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--moon-gold), var(--cta-orange));
  box-shadow: var(--glow-gold);
}

/* =========================================================
   Countdown
   ========================================================= */
.countdown {
  /* Escala típos com a própria largura do cartão — não só com vw (painel Cursor / iframe estreitos) */
  container-type: inline-size;
  container-name: countdown;
  margin: 6px 0 18px;
  padding: 18px clamp(12px, 2.5vmin, 20px);
  border-radius: var(--radius-md);
  background: var(--murilo-surface);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm), var(--glow-gold);
  width: 100%;
  max-width: min(540px, 100%);
  min-width: 0;
  box-sizing: border-box;
}
.countdown-label {
  margin: 0 0 12px;
  font-size: clamp(0.68rem, 2.15vmin + 0.15rem, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moon-gold);
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(5px, 1.75vmin + 4px, 10px);
}
.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  min-width: 0;
  padding: clamp(6px, 1.75vmin + 4px, 10px) clamp(2px, 1vmin, 6px);
  border-radius: 14px;
  background: var(--murilo-surface-mid);
  border: 1px solid var(--line);
}
/* Fallback: vmin acompanha o viewport menor; CQ abaixo ajusta pela largura do cartão */
.countdown-num {
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.8rem, 4.75vmin + 0.42rem, 2.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  font-variant-numeric: tabular-nums;
  text-align: center;
  background: linear-gradient(135deg, var(--moon-gold) 0%, var(--cta-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
@supports (container-type: inline-size) {
  .countdown-num {
    font-size: clamp(0.82rem, 11cqi + 0.2rem, 2.35rem);
  }
  .countdown-grid {
    gap: clamp(5px, 2.75cqi, 10px);
  }
  .countdown-unit {
    font-size: clamp(0.58rem, 2.85cqi + 0.1rem, 0.72rem);
  }
}

/* Cartão estreito (painel lateral): 2×2 em vez de 4 colunas apertadas */
@container countdown (max-width: 340px) {
  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.countdown-num-secs {
  animation: cd-pulse 1s ease-in-out infinite alternate;
}
@keyframes cd-pulse {
  from { opacity: 0.78; }
  to { opacity: 1; }
}
.countdown-unit {
  max-width: 100%;
  text-align: center;
  font-size: clamp(0.58rem, 2.05vmin + 0.06rem, 0.72rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.countdown-foot {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 700;
}
/* === Estado festivo pós-zero === */
.countdown-live {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 24px 22px 20px;
  border: 1px solid rgba(255, 211, 106, 0.45);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 90% 55% at 50% 20%, rgba(255, 211, 106, 0.14) 0%, transparent 72%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(180, 85, 42, 0.12) 0%, transparent 55%),
    var(--murilo-panel);
  animation: live-glow 3.2s ease-in-out infinite;
}

@keyframes live-glow {
  0%, 100% { box-shadow: var(--shadow-sm), 0 0 22px rgba(255, 211, 106, 0.26); }
  50%       { box-shadow: var(--shadow-sm), 0 0 42px rgba(255, 211, 106, 0.46); }
}

/* Hero #ouvir — prevalece sobre .countdown-live (Vol. 1 dourado) */
.hero-murilo-panel.countdown-live {
  border: 1px solid rgba(200, 118, 82, 0.48);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 90% 55% at 50% 18%, rgba(228, 145, 102, 0.24) 0%, transparent 70%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(180, 85, 42, 0.16) 0%, transparent 55%),
    linear-gradient(165deg, #241408 0%, #1a100a 48%, #140c08 100%);
  animation: murilo-glow 3.2s ease-in-out infinite;
}
.hero-murilo-panel .live-eyebrow {
  color: #f0b080;
  text-shadow: 0 0 18px rgba(200, 118, 82, 0.52);
}
.hero-murilo-panel .live-spark {
  color: var(--murilo-accent-soft);
}
.hero-murilo-panel .live-sub span {
  color: #f0b080;
}

/* Estrelinhas decorativas */
.live-spark {
  position: absolute;
  font-size: 0.9rem;
  color: var(--moon-gold);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  animation: live-twinkle 2.6s ease-in-out infinite;
}
.live-spark-1 { top: 12%; left:   7%; animation-delay: 0s; }
.live-spark-2 { top: 18%; right:  9%; animation-delay: 0.65s; font-size: 0.65rem; }
.live-spark-3 { bottom: 22%; left: 10%; animation-delay: 1.3s; font-size: 0.72rem; }
.live-spark-4 { bottom: 16%; right:  7%; animation-delay: 1.95s; }

@keyframes live-twinkle {
  0%, 100% { opacity: 0.18; transform: scale(0.7) rotate(0deg); }
  50%       { opacity: 1;   transform: scale(1.35) rotate(30deg); filter: drop-shadow(0 0 6px rgba(255, 211, 106, 0.9)); }
}

/* Eyebrow */
.live-eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moon-gold);
  text-shadow: 0 0 18px rgba(255, 211, 106, 0.52);
}

/* Título com shimmer dourado em movimento */
.live-title {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3.8vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  background: linear-gradient(90deg,
    #ffe9a8 0%,
    var(--cta-orange) 30%,
    var(--moon-gold) 55%,
    #ffe9a8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: live-shimmer 3s linear infinite;
}

@keyframes live-shimmer {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* Subtítulo */
.live-sub {
  margin: 0 0 18px;
  font-size: 0.87rem;
  line-height: 1.5;
  color: var(--text-soft);
  font-weight: 700;
}
.live-sub span {
  color: var(--moon-gold);
}

/* Botões de streaming */
.live-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}

.live-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}
.live-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.live-btn svg { width: 15px; height: 15px; flex-shrink: 0; fill: currentColor; }

.live-btn-spotify {
  background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
  color: #fff;
  box-shadow: 0 0 12px rgba(30, 215, 96, 0.38), 0 8px 20px rgba(0, 0, 0, 0.3);
}
.live-btn-apple {
  background: linear-gradient(135deg, #fa5b8b 0%, #fc6d6d 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* Link "ver todos" */
.live-links-note {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}
.live-links-note a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}
.live-links-note a:hover { color: var(--moon-gold); }

/* === Spotlight de lançamento — Murilo === */
.launch-spotlight {
  margin: 0 0 var(--section-stack-gap);
}
.launch-spotlight-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 211, 106, 0.45);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(ellipse 90% 55% at 50% 20%, rgba(255, 211, 106, 0.14) 0%, transparent 72%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(180, 85, 42, 0.1) 0%, transparent 55%),
    var(--murilo-panel);
}
.launch-spotlight--murilo .launch-spotlight-inner {
  animation: murilo-glow 3.2s ease-in-out infinite;
}
@keyframes murilo-glow {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 22px rgba(200, 118, 82, 0.22); }
  50%       { box-shadow: var(--shadow-lg), 0 0 42px rgba(200, 118, 82, 0.38); }
}
.launch-spotlight-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}
.launch-spotlight-media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 230, 180, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  aspect-ratio: 1;
  background: var(--murilo-surface);
}
.launch-spotlight-video,
.launch-spotlight-still {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.launch-spotlight-still {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.launch-spotlight--murilo .live-eyebrow {
  color: #f0b080;
  text-shadow: 0 0 18px rgba(200, 118, 82, 0.52);
}
.launch-spotlight--murilo .live-title,
.hero-murilo-panel .live-title {
  color: var(--warm-cream);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  animation: none;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(200, 118, 82, 0.35);
}
.launch-spotlight--murilo .live-sub span {
  color: #f0b080;
}
.launch-spotlight--vol1 .launch-spotlight-inner,
.launch-spotlight--vol1 .launch-spotlight-inner.countdown-live {
  border-color: rgba(255, 211, 106, 0.45);
  background:
    radial-gradient(ellipse 90% 55% at 50% 20%, rgba(255, 211, 106, 0.16) 0%, transparent 72%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(180, 85, 42, 0.1) 0%, transparent 55%),
    var(--murilo-panel);
  animation: live-glow 3.2s ease-in-out infinite;
}
.launch-spotlight--vol1 .live-sub {
  color: var(--murilo-text-soft);
}
.launch-spotlight--vol1 .live-sub span {
  color: var(--moon-gold);
}
.launch-spotlight--vol1 .live-links-note a {
  color: var(--murilo-muted);
}
.launch-spotlight--vol1 .live-links-note a:hover {
  color: var(--murilo-accent-soft);
}
.launch-spotlight-content {
  text-align: left;
}
.launch-spotlight-content .live-cta-row {
  justify-content: flex-start;
}
.launch-spotlight-content .live-links-note {
  text-align: left;
}

@media (max-width: 768px) {
  .launch-spotlight-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .launch-spotlight-content { text-align: center; }
  .launch-spotlight-content .live-cta-row { justify-content: center; }
  .launch-spotlight-content .live-links-note { text-align: center; }
  .launch-spotlight-media {
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .countdown-num-secs,
  .countdown-live,
  .launch-spotlight-inner,
  .launch-spotlight--vol1 .launch-spotlight-inner,
  .hero-murilo-panel,
  .live-spark,
  .live-title,
  .hero-bg,
  h1 { animation: none; }
  .live-spark { opacity: 0.5; }
  .live-title { background-position: 0% center; }
  h1 { background-position: 0% center; }
  body::before { opacity: 0.25; }
  .launch-spotlight-video { display: none; }
  .launch-spotlight-still { opacity: 1; position: static; }
}

@media (max-width: 460px) {
  .countdown-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: clamp(28px, 5vw, 52px) 0;
}

/* Painéis com borda ficavam encostados (padding interno só);
   igual ao espaço até o primeiro bloco após .hero */
main#conteudo > section.section + section.section {
  margin-top: var(--section-stack-gap);
}

/* Menos ar entre intro e personagens (evita “vácuo” grande antes de Conheça a turma) */
main#conteudo > section.intro-panel + section#personagens {
  margin-top: clamp(8px, 1.6vw, 14px);
}

/* Personagens → família: o bloco de teasers + CTA deixa a secção longa; fecha o vão */
main#conteudo > section#personagens.section + section.family {
  margin-top: clamp(12px, 2.5vw, 22px);
}

.intro-panel,
.about,
.links,
.family,
.section-panel {
  background: linear-gradient(145deg,
    rgba(240, 176, 128, 0.10) 0%,
    rgba(240, 176, 128, 0.04) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-panel {
  padding: clamp(22px, 3.5vw, 36px);
}

#personagens .section-heading {
  margin-bottom: clamp(16px, 2.5vw, 22px);
}

/* Intro */
.intro-panel {
  padding: clamp(22px, 3.5vw, 36px);
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  align-items: center;
  gap: clamp(22px, 4vw, 40px);
}

.intro-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200, 118, 82, 0.28);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro-panel:hover img {
  transform: scale(1.02);
}

.intro-panel p,
.about p,
.character-card p,
.family-content p {
  color: var(--text-soft);
  line-height: 1.62;
  text-wrap: pretty;
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge-list li {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 211, 106, 0.10);
  border: 1px solid rgba(255, 211, 106, 0.25);
  color: var(--moon-gold);
}

/* Personagens — agrupamento Vol. 1 vs teasers */
.cast-group {
  margin-bottom: clamp(22px, 3.5vw, 40px);
}
.cast-group:last-child { margin-bottom: 0; }

.cast-group-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.cast-group-title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--warm-cream);
}
.cast-group-lede {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
  max-width: 60ch;
}

.cast-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cast-tag-live {
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.22), rgba(255, 138, 36, 0.16));
  border: 1px solid rgba(255, 211, 106, 0.42);
  color: var(--moon-gold);
  box-shadow: 0 0 18px rgba(255, 211, 106, 0.18);
}
.cast-tag-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moon-gold);
  box-shadow: 0 0 12px var(--moon-gold);
}
.cast-tag-soon {
  background: rgba(228, 145, 102, 0.10);
  border: 1px solid rgba(228, 145, 102, 0.28);
  color: var(--muted);
}

.cast-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

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

/* Teaser cards (B&W com hover a cor) */
.character-card-teaser {
  position: relative;
  opacity: 0.96;
}
.character-card-teaser .teaser-media {
  position: relative;
  margin-bottom: 14px;
}
.character-card-teaser img {
  filter: grayscale(1) contrast(0.94) brightness(0.86);
  transition: filter 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-bottom: 0;
}
.character-card-teaser:hover img,
.character-card-teaser:focus-within img {
  filter: grayscale(0.15) contrast(1) brightness(1);
}
.character-card-teaser h4 {
  color: var(--text-soft);
}

.teaser-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-cream);
  background: linear-gradient(135deg, var(--murilo-accent) 0%, #8b4518 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32), 0 0 14px rgba(200, 118, 82, 0.28);
}

.character-card {
  background: linear-gradient(180deg,
    rgba(240, 176, 128, 0.10) 0%,
    rgba(240, 176, 128, 0.03) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.character-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md), var(--glow-gold);
}

.character-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--violet-deep);
}

.character-card h4 {
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--warm-cream);
}

.character-card-head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 4px;
  min-width: 0;
}

.character-card-live .character-card-head h4 {
  margin-bottom: 0;
  flex: 0 1 auto;
  min-width: 0;
}

/*
  Prévia: estilo ghost/outline (secundário ao pré-save), cor alinhada ao “estúdio”
  de cada Vol. 1 — regras específicas por classe; nada de verde Spotify genérico.
*/
#personagens .character-card-live .preview-toggle {
  border-radius: 999px;
  min-height: 36px;
  width: auto;
  max-width: 100%;
  padding: 6px 11px 6px 9px;
  gap: 7px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

#personagens .character-card-live .preview-toggle .char-preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  white-space: nowrap;
}

/* Edgar — taupe quente (sem azul) */
#personagens .character-card-live--edgar .preview-toggle {
  border: 1px solid rgba(168, 138, 118, 0.45);
  background: rgba(36, 22, 14, 0.45);
  color: rgba(245, 220, 200, 0.96);
}
#personagens .character-card-live--edgar .preview-toggle .char-preview-label {
  color: rgba(228, 200, 178, 0.95);
}
#personagens .character-card-live--edgar .preview-toggle:hover,
#personagens .character-card-live--edgar .preview-toggle:focus-visible {
  background: rgba(120, 92, 72, 0.22);
  border-color: rgba(188, 158, 128, 0.65);
  color: var(--warm-cream);
}
#personagens .character-card-live--edgar.is-playing .preview-toggle {
  background: linear-gradient(135deg, rgba(148, 118, 92, 0.38) 0%, rgba(52, 38, 28, 0.92) 100%);
  border-color: rgba(200, 168, 138, 0.7);
  box-shadow: 0 0 0 1px rgba(148, 118, 92, 0.22), 0 8px 22px rgba(0, 0, 0, 0.35);
}
#personagens .character-card-live--edgar.is-playing .preview-toggle .char-preview-label {
  color: var(--warm-cream);
}

/* João — cinza-acolhedor */
#personagens .character-card-live--joao .preview-toggle {
  border: 1px solid rgba(135, 126, 138, 0.48);
  background: rgba(36, 22, 14, 0.45);
  color: rgba(232, 226, 236, 0.96);
}
#personagens .character-card-live--joao .preview-toggle .char-preview-label {
  color: rgba(210, 204, 214, 0.95);
}
#personagens .character-card-live--joao .preview-toggle:hover,
#personagens .character-card-live--joao .preview-toggle:focus-visible {
  background: rgba(125, 118, 132, 0.2);
  border-color: rgba(158, 148, 162, 0.65);
  color: var(--warm-cream);
}
#personagens .character-card-live--joao.is-playing .preview-toggle {
  background: linear-gradient(135deg, rgba(128, 118, 132, 0.32) 0%, rgba(42, 38, 48, 0.92) 100%);
  border-color: rgba(168, 156, 172, 0.68);
  box-shadow: 0 0 0 1px rgba(125, 118, 128, 0.22), 0 8px 22px rgba(0, 0, 0, 0.35);
}
#personagens .character-card-live--joao.is-playing .preview-toggle .char-preview-label {
  color: var(--warm-cream);
}

/* Duda — verde sálvia (estúdio) */
#personagens .character-card-live--duda .preview-toggle {
  border: 1px solid rgba(110, 148, 118, 0.5);
  background: rgba(12, 26, 22, 0.5);
  color: rgba(210, 238, 218, 0.96);
}
#personagens .character-card-live--duda .preview-toggle .char-preview-label {
  color: rgba(190, 226, 204, 0.95);
}
#personagens .character-card-live--duda .preview-toggle:hover,
#personagens .character-card-live--duda .preview-toggle:focus-visible {
  background: rgba(100, 148, 112, 0.22);
  border-color: rgba(130, 175, 138, 0.65);
  color: var(--warm-cream);
}
#personagens .character-card-live--duda.is-playing .preview-toggle {
  background: linear-gradient(135deg, rgba(108, 148, 118, 0.36) 0%, rgba(26, 52, 38, 0.92) 100%);
  border-color: rgba(140, 182, 148, 0.72);
  box-shadow: 0 0 0 1px rgba(118, 152, 118, 0.25), 0 8px 22px rgba(0, 0, 0, 0.35);
}
#personagens .character-card-live--duda.is-playing .preview-toggle .char-preview-label {
  color: var(--warm-cream);
}

/* Raquel — terracota / luz quente */
#personagens .character-card-live--raquel .preview-toggle {
  border: 1px solid rgba(205, 124, 92, 0.5);
  background: rgba(30, 18, 22, 0.5);
  color: rgba(255, 226, 212, 0.96);
}
#personagens .character-card-live--raquel .preview-toggle .char-preview-label {
  color: rgba(246, 206, 188, 0.95);
}
#personagens .character-card-live--raquel .preview-toggle:hover,
#personagens .character-card-live--raquel .preview-toggle:focus-visible {
  background: rgba(195, 115, 85, 0.22);
  border-color: rgba(220, 138, 102, 0.68);
  color: var(--warm-cream);
}
#personagens .character-card-live--raquel.is-playing .preview-toggle {
  background: linear-gradient(135deg, rgba(205, 120, 88, 0.34) 0%, rgba(62, 36, 32, 0.92) 100%);
  border-color: rgba(228, 145, 110, 0.72);
  box-shadow: 0 0 0 1px rgba(200, 118, 82, 0.28), 0 8px 22px rgba(0, 0, 0, 0.35);
}
#personagens .character-card-live--raquel.is-playing .preview-toggle .char-preview-label {
  color: var(--warm-cream);
}

/* Murilo — âmbar queimado / outono */
#personagens .character-card-live--murilo .preview-toggle {
  border: 1px solid rgba(200, 118, 82, 0.52);
  background: rgba(36, 22, 14, 0.52);
  color: rgba(255, 228, 205, 0.96);
}
#personagens .character-card-live--murilo .preview-toggle .char-preview-label {
  color: rgba(246, 200, 168, 0.95);
}
#personagens .character-card-live--murilo .preview-toggle:hover,
#personagens .character-card-live--murilo .preview-toggle:focus-visible {
  background: rgba(195, 115, 75, 0.24);
  border-color: rgba(228, 145, 102, 0.68);
  color: var(--warm-cream);
}
#personagens .character-card-live--murilo.is-playing .preview-toggle {
  background: linear-gradient(135deg, rgba(205, 120, 82, 0.36) 0%, rgba(62, 38, 24, 0.92) 100%);
  border-color: rgba(228, 145, 110, 0.72);
  box-shadow: 0 0 0 1px rgba(200, 118, 82, 0.28), 0 8px 22px rgba(0, 0, 0, 0.35);
}
#personagens .character-card-live--murilo.is-playing .preview-toggle .char-preview-label {
  color: var(--warm-cream);
}

#personagens .character-card-live .preview-toggle-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

#personagens .character-card-live .preview-toggle-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

#personagens .character-card-live.is-playing .preview-toggle-icon::before {
  left: 2px;
  top: 2px;
  width: 11px;
  height: 12px;
  border: 0;
  background:
    linear-gradient(90deg, currentColor 0 4px, transparent 4px 7px, currentColor 7px 11px);
}

.character-card-live {
  border-top-width: 3px;
  border-top-style: solid;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.character-card-live--edgar { border-top-color: rgba(168, 138, 118, 0.85); }
.character-card-live--joao { border-top-color: rgba(135, 126, 138, 0.85); }
.character-card-live--duda { border-top-color: rgba(110, 148, 118, 0.85); }
.character-card-live--raquel { border-top-color: rgba(205, 124, 92, 0.85); }
.character-card-live--murilo { border-top-color: rgba(228, 145, 102, 0.9); }

.character-card-live:hover,
.character-card-live:focus-within {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md), 0 0 36px rgba(255, 211, 106, 0.22);
  transform: translateY(-3px);
}

.character-card-live--edgar:hover,
.character-card-live--edgar:focus-within {
  background:
    radial-gradient(ellipse 95% 78% at 72% 18%, rgba(168, 132, 108, 0.58) 0%, transparent 52%),
    linear-gradient(165deg, rgba(72, 52, 38, 0.92) 0%, rgba(12, 8, 6, 0.78) 100%);
}

.character-card-live--joao:hover,
.character-card-live--joao:focus-within {
  background:
    radial-gradient(ellipse 95% 78% at 70% 22%, rgba(125, 118, 128, 0.58) 0%, transparent 54%),
    linear-gradient(165deg, rgba(78, 74, 86, 0.9) 0%, rgba(12, 8, 6, 0.76) 100%);
}

.character-card-live--duda:hover,
.character-card-live--duda:focus-within {
  background:
    radial-gradient(ellipse 95% 78% at 68% 24%, rgba(118, 152, 118, 0.56) 0%, transparent 52%),
    linear-gradient(165deg, rgba(48, 78, 58, 0.9) 0%, rgba(12, 8, 6, 0.76) 100%);
}

.character-card-live--raquel:hover,
.character-card-live--raquel:focus-within {
  background:
    radial-gradient(ellipse 95% 78% at 70% 20%, rgba(200, 118, 82, 0.55) 0%, transparent 50%),
    linear-gradient(165deg, rgba(98, 58, 48, 0.88) 0%, rgba(12, 8, 6, 0.76) 100%);
}

.character-card-live--murilo:hover,
.character-card-live--murilo:focus-within {
  background:
    radial-gradient(ellipse 95% 78% at 68% 22%, rgba(210, 130, 78, 0.58) 0%, transparent 52%),
    linear-gradient(165deg, rgba(92, 52, 32, 0.9) 0%, rgba(12, 8, 6, 0.76) 100%);
}

.character-grid-murilo {
  grid-template-columns: minmax(280px, 380px);
  justify-content: center;
}

.character-grid-murilo .character-card-live--murilo {
  border-color: rgba(200, 118, 82, 0.42);
  box-shadow: var(--shadow-md), 0 0 36px rgba(200, 118, 82, 0.22);
}

.character-card-teaser:hover,
.character-card-teaser:focus-within {
  border-color: rgba(200, 118, 82, 0.45);
  box-shadow: var(--shadow-md), 0 0 24px rgba(200, 118, 82, 0.18);
  transform: translateY(-3px);
}

.character-card p {
  font-size: 0.95rem;
  margin: 0;
}

.char-bio {
  margin-bottom: 12px !important;
}

/* CTA dos cards: verde Spotify por padrao -> dourado no hover */
#personagens .character-card-live .char-listen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-weight: 900;
  font-size: 0.79rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow:
    0 0 12px rgba(30, 215, 96, 0.32),
    0 8px 20px rgba(0, 0, 0, 0.32);
  transition:
    transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease,
    filter 200ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  margin-top: 6px;
}

/* Hover: dourado — cor da casa */
#personagens .character-card-live .char-listen:hover {
  transform: translateY(-2px);
  filter: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(160deg, #ffe566 0%, var(--moon-gold) 40%, var(--cta-orange) 100%);
  color: var(--ink);
  border-color: rgba(255, 210, 80, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 12px 28px rgba(12, 6, 4, 0.48);
}

#personagens .character-card-live .char-listen:hover .char-listen-icon {
  opacity: 0.75;
}

#personagens .character-card-live .char-listen:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(160deg, #ffe566 0%, var(--moon-gold) 40%, var(--cta-orange) 100%);
  color: var(--ink);
  border-color: rgba(255, 210, 80, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 10px 24px rgba(12, 6, 4, 0.48),
    0 0 0 3px rgba(255, 211, 106, 0.5);
}

.char-listen .char-listen-icon {
  width: 15px;
  height: 15px;
  opacity: 0.85;
  flex-shrink: 0;
}

/* Family */
.family {
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.family-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat {
  width: 100%;
  background: var(--murilo-surface-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition:
    transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.22) 0%, rgba(200, 118, 82, 0.18) 100%);
  border: 1px solid rgba(255, 211, 106, 0.32);
  color: var(--moon-gold);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.stat-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.stat-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--moon-gold);
  font-weight: 800;
}

.stat-label {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0;
  text-transform: none;
}

/* About */
.about {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}
.about-heading h2 { margin-bottom: 0; }
.about-body p {
  margin-bottom: 14px;
}
.about-body p:last-of-type { margin-bottom: 18px; }
.about-body strong {
  color: var(--moon-gold);
  font-weight: 700;
}
.about-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 6px 0 0;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--murilo-surface-light);
  border: 1px solid var(--line);
}
.about-meta > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240, 176, 128, 0.12);
}
.about-meta > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.about-meta dt {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--moon-gold);
  margin: 0;
}
.about-meta dd {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Visual strip — banner-wide */
.visual-strip {
  padding: 0;
  margin: 0;
}
.visual-strip-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.visual-strip-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 8, 6, 0.35) 0%, transparent 12%, transparent 88%, rgba(12, 8, 6, 0.35) 100%),
    linear-gradient(180deg, rgba(12, 8, 6, 0.2) 0%, transparent 18%, transparent 82%, rgba(12, 8, 6, 0.25) 100%);
}
.visual-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 436;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

/* Links */
.links {
  padding: clamp(24px, 4vw, 40px);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.link-card {
  min-height: 92px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 244, 212, 0.11);
  border: 1px solid var(--line);
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}
.link-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--murilo-surface);
  border: 1px solid var(--line);
  color: var(--warm-cream);
  flex-shrink: 0;
}
.link-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.link-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.link-arrow {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms ease, color 200ms ease;
}
.link-card:hover .link-arrow {
  transform: translateX(3px);
  color: var(--warm-cream);
}
/* Cores oficiais por plataforma — só no bloco do ícone */
.link-card.link-spotify .link-icon {
  background: linear-gradient(135deg, #1ed760, #1aaf4d);
  border-color: rgba(30, 215, 96, 0.5);
  color: #06321a;
}
.link-card.link-apple .link-icon {
  background: linear-gradient(135deg, #fa5b8b 0%, #fc6d6d 100%);
  border-color: rgba(250, 35, 59, 0.5);
  color: #fff;
}
.link-card.link-youtube .link-icon {
  background: linear-gradient(135deg, #ff0033, #cc0026);
  border-color: rgba(255, 0, 51, 0.5);
  color: #fff;
}
.link-card.link-instagram .link-icon {
  background: linear-gradient(135deg,
    #feda77 0%,
    #f58529 22%,
    #dd2a7b 52%,
    #8134af 78%,
    #515bd4 100%);
  border-color: rgba(221, 42, 123, 0.5);
  color: #fff;
}
.link-card.link-tiktok .link-icon {
  background: #010101;
  border-color: rgba(37, 244, 238, 0.55);
  color: #fff;
  box-shadow:
    inset 2px 0 0 #fe2c55,
    inset -2px 0 0 #25f4ee;
}
.link-card.link-kwai .link-icon {
  background: linear-gradient(135deg, #ff5f00, #ff8a00);
  border-color: rgba(255, 95, 0, 0.5);
  color: #fff;
}
/* Hover genérico (fallback) */
.link-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 244, 212, 0.14);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
/* Hover com cor da plataforma preenchendo o card */
.link-card:hover .link-platform,
.link-card:hover .link-action { color: #fff; }

.link-card.link-spotify {
  background: linear-gradient(135deg,
    rgba(255, 211, 106, 0.18) 0%,
    rgba(255, 138, 36, 0.10) 100%);
  border-color: rgba(255, 211, 106, 0.32);
  box-shadow: var(--glow-gold);
}
.link-card.link-spotify:hover {
  background: linear-gradient(135deg, #1ed760 0%, #1aaf4d 100%);
  border-color: rgba(30, 215, 96, 0.6);
  box-shadow: 0 0 28px rgba(30, 215, 96, 0.35), var(--shadow-sm);
}

.link-card.link-apple:hover {
  background: linear-gradient(135deg, #fa5b8b 0%, #fc6d6d 100%);
  border-color: rgba(250, 91, 139, 0.6);
  box-shadow: 0 0 28px rgba(250, 91, 139, 0.3), var(--shadow-sm);
}

.link-card.link-youtube:hover {
  background: linear-gradient(135deg, #ff0033 0%, #cc0026 100%);
  border-color: rgba(255, 0, 51, 0.6);
  box-shadow: 0 0 28px rgba(255, 0, 51, 0.3), var(--shadow-sm);
}

.link-card.link-instagram:hover {
  background: linear-gradient(135deg,
    #feda77 0%,
    #f58529 22%,
    #dd2a7b 52%,
    #8134af 78%,
    #515bd4 100%);
  border-color: rgba(221, 42, 123, 0.6);
  box-shadow: 0 0 28px rgba(221, 42, 123, 0.3), var(--shadow-sm);
}

.link-card.link-tiktok:hover {
  background: #010101;
  border-color: rgba(37, 244, 238, 0.6);
  box-shadow:
    0 0 28px rgba(37, 244, 238, 0.22),
    inset 2px 0 0 #fe2c55,
    inset -2px 0 0 #25f4ee,
    var(--shadow-sm);
}

.link-card.link-kwai:hover {
  background: linear-gradient(135deg, #ff5f00 0%, #ff8a00 100%);
  border-color: rgba(255, 95, 0, 0.6);
  box-shadow: 0 0 28px rgba(255, 95, 0, 0.3), var(--shadow-sm);
}

.link-platform {
  font-weight: 800;
  color: var(--warm-cream);
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.link-action {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  width: min(var(--container), calc(100% - 2 * var(--container-pad)));
  margin: 0 auto;
  padding: 56px 0 64px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.footer-mark-moon {
  width: 32px;
  height: 32px;
  color: var(--moon-gold);
  fill: currentColor;
  filter: drop-shadow(0 0 12px rgba(255, 211, 106, 0.42));
}
.footer-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--warm-cream);
  margin: 0;
  letter-spacing: -0.01em;
}
.footer-tag {
  color: var(--text-soft);
  font-weight: 700;
  margin: 0;
  font-size: 0.92rem;
}
.footer-tag-accent {
  color: var(--murilo-accent-soft);
}
.footer-divider {
  width: min(280px, 70%);
  height: 2px;
  border: 0;
  margin: 14px 0 10px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--murilo-accent) 20%,
    var(--moon-gold) 50%,
    var(--murilo-accent) 80%,
    transparent 100%);
  opacity: 0.85;
}
.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-author {
  color: var(--moon-gold);
  text-decoration: none;
  font-weight: 700;
  transition: color 160ms ease;
}
.footer-author:hover {
  color: var(--cta-orange);
  text-decoration: underline;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 769px) {
  .hero-murilo-cover-wrap {
    display: none;
  }
}

@media (max-width: 1024px) {
  .character-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .character-grid-teaser {
    grid-template-columns: repeat(3, 1fr);
  }
  .link-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body { background-attachment: scroll; }

  .nav {
    padding: 12px 0;
    gap: 10px;
  }
  .nav-links {
    width: 100%;
    gap: 16px;
    font-size: 0.9rem;
  }
  .brand-name {
    font-size: 0.98rem;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }
  .hero-bg {
    background-image: url("assets/feed-5bichinhos-murilo.jpg");
    background-position: 50% 38%;
    transform: none;
    transform-origin: center;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(12, 8, 6, 0.86) 0%,
        rgba(18, 12, 8, 0.55) 32%,
        rgba(28, 16, 10, 0.30) 55%,
        rgba(12, 8, 6, 0.82) 100%);
  }

  .hero-layout {
    flex-direction: column;
    gap: 0;
  }
  .hero-cover-card {
    display: none;
  }
  .hero-murilo-cover-wrap {
    width: min(100%, 240px);
  }

  .intro-panel,
  .about,
  .family {
    grid-template-columns: 1fr;
  }
  .intro-panel img {
    max-width: 320px;
    justify-self: center;
  }
  .about {
    gap: 14px;
  }

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

  .family-stats { gap: 8px; }
}

@media (max-width: 560px) {
  :root { --container-pad: 16px; }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(240, 176, 128, 0.08);
    border: 1px solid rgba(240, 176, 128, 0.16);
    font-size: 0.86rem;
    text-align: center;
  }
  .nav-links a::after { display: none; }
  .nav-links a.is-active {
    background: rgba(200, 118, 82, 0.22);
    border-color: rgba(200, 118, 82, 0.42);
    color: var(--warm-cream);
  }

  .hero {
    margin-top: 14px;
    border-radius: 26px;
  }
  .hero,
  .hero-content {
    min-height: 580px;
  }
  .hero-content {
    padding: 28px 22px 32px;
    justify-content: flex-end;
  }

  h1 { margin-bottom: 16px; }

  .button {
    width: 100%;
  }

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

  .link-list {
    grid-template-columns: 1fr;
  }

  .family-stats { gap: 8px; }
  .stat {
    padding: 10px 12px;
  }
  .stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .stat-icon svg {
    width: 15px;
    height: 15px;
  }
  .stat-kicker {
    font-size: 0.74rem;
  }
  .stat-label {
    font-size: 0.82rem;
  }

  .visual-strip-frame {
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  h1 { font-size: 2.4rem; }
  .subtitle { font-size: 1rem; }
}

/* =========================================================
   Accessibility — reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .button:hover,
  .character-card:hover,
  .character-card-live:hover,
  .character-card-live:focus-within,
  .character-card-teaser:hover,
  .character-card-teaser:focus-within,
  .link-card:hover,
  .stat:hover,
  .intro-panel:hover img {
    transform: none;
  }

  #personagens .character-card-live .char-listen:hover,
  #personagens .character-card-live .char-listen:focus-visible {
    transform: none;
    filter: none;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 50%),
      linear-gradient(160deg, #ffe566 0%, var(--moon-gold) 40%, var(--cta-orange) 100%);
    color: var(--ink);
    border-color: rgba(255, 210, 80, 0.55);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.5) inset,
      0 12px 28px rgba(12, 6, 4, 0.48);
  }
}
