:root {
  --ink: #141a18;
  --ink-soft: #2e3a36;
  --muted: #5a6b65;
  --paper: #e7ebe9;
  --paper-deep: #d8dfdc;
  --mist: #f2f5f3;
  --teal: #1a6b5c;
  --teal-deep: #134f44;
  --brass: #8f7340;
  --night: #0c1210;
  --line: rgba(20, 26, 24, 0.12);
  --font-display: "Syne", sans-serif;
  --font-body: "Sora", sans-serif;
  --font-accent: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 0% 10%, rgba(26, 107, 92, 0.09), transparent 50%),
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(143, 115, 64, 0.07), transparent 45%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 45%, var(--paper-deep) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--night);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  animation: loader-pulse 1.4s var(--ease) infinite;
}

.loader-bar {
  width: 8rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border-radius: 1px;
}

.loader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--teal);
  animation: loader-slide 1.1s var(--ease) infinite;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--brass));
  transform-origin: left;
  transition: width 0.05s linear;
}

/* Soft cursor light */
.cursor-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  margin: -14rem 0 0 -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 107, 92, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: multiply;
  will-change: transform;
}

body.has-pointer .cursor-glow.is-on {
  opacity: 1;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  background: rgba(242, 245, 243, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav a {
  color: var(--ink);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mist);
  transition: color 0.3s, letter-spacing 0.35s var(--ease);
}

.logo:hover {
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(242, 245, 243, 0.85);
  transition: color 0.25s;
  padding: 0.25rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover {
  color: #fff;
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a.is-active {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--mist);
  transition: background 0.3s, transform 0.3s;
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding:
    calc(var(--header-h) + 1.5rem)
    clamp(1.25rem, 5vw, 4.5rem)
    clamp(3.5rem, 9vh, 5.5rem);
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: 55% 22%;
  transform: scale(1.04);
  animation: hero-drift 40s ease-in-out infinite alternate;
  will-change: transform;
  filter: saturate(1.04) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(6, 10, 9, 0.88) 0%,
      rgba(6, 10, 9, 0.72) 28%,
      rgba(6, 10, 9, 0.28) 52%,
      rgba(6, 10, 9, 0.12) 68%,
      rgba(6, 10, 9, 0.35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 10, 9, 0.45) 0%,
      transparent 28%,
      transparent 48%,
      rgba(6, 10, 9, 0.78) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: min(52rem, calc(100vw - 2.5rem));
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.brand {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  /* Cabe "Conegundes" inteiro; tracking comprimido */
  font-size: clamp(2.35rem, 7.2vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  color: #fff;
  width: max-content;
  max-width: min(52rem, calc(100vw - 2.5rem));
}

.brand-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  /* clip só na entrada — nunca corta o nome final */
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease-out);
  transition-delay: calc(0.2s + var(--line, 0) * 0.14s);
}

.brand-line:nth-child(1) { --line: 0; }
.brand-line:nth-child(2) { --line: 1; }

.brand-line > span {
  display: block;
}

.hero.is-ready .brand-line {
  clip-path: inset(0 0 0 0);
}

.hero-tagline {
  margin: 0 0 1rem;
  font-family: var(--font-accent);
  font-optical-sizing: auto;
  font-size: clamp(1.5rem, 3.1vw, 2.15rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: rgba(255, 252, 245, 0.94);
  max-width: 16ch;
  text-wrap: balance;
}

.hero .lede {
  margin: 0 0 2rem;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}

.hero .cta-group {
  gap: 0.85rem;
  align-items: center;
}

.hero .btn {
  min-height: 3.05rem;
  padding: 0.9rem 1.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
}

.hero .btn-primary {
  background: linear-gradient(165deg, #228574 0%, var(--teal) 55%, var(--teal-deep) 100%);
  border: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero .btn-primary:hover {
  background: linear-gradient(165deg, #2a9a86 0%, #1a6b5c 60%, #134f44 100%);
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Entrada limpa do bloco — uma coreografia só */
.is-hero-anim {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: calc(0.2s + var(--d, 0) * 0.1s);
}

.hero.is-ready .is-hero-anim {
  opacity: 1;
  transform: none;
}

.hero.is-ready .brand.is-hero-anim {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.22) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(242, 245, 243, 0.4);
  color: var(--mist);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.contato .btn-ghost {
  border-color: rgba(20, 26, 24, 0.22);
  color: var(--ink);
}

.contato .btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(20, 26, 24, 0.04);
}

.scroll-hint {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: rgba(242, 245, 243, 0.7);
}

.scroll-hint-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, transparent, rgba(242, 245, 243, 0.8));
  animation: scroll-pulse 2s var(--ease) infinite;
  transform-origin: top;
}

.scroll-hint-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
  position: relative;
}

.section-inner {
  max-width: 68rem;
  margin: 0 auto;
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.section-lede {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
}

/* Trajetória */
.trajetoria {
  background:
    linear-gradient(180deg, transparent, rgba(216, 223, 220, 0.55) 35%, transparent);
}

/* Biografia */
.biografia {
  background:
    radial-gradient(ellipse 70% 50% at 0% 20%, rgba(26, 107, 92, 0.07), transparent 55%),
    var(--mist);
}

.biografia-inner {
  max-width: 44rem;
}

.bio-prose {
  display: grid;
  gap: 1.35rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.bio-prose p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.bio-prose strong {
  font-weight: 600;
  color: var(--ink);
}

.bio-closing {
  font-family: var(--font-accent) !important;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem !important;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--teal), var(--brass));
  transition: height 1.4s var(--ease);
}

.timeline.is-drawn::before {
  height: 100%;
}

.timeline-item {
  padding: 2rem 0 2rem 1.25rem;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) 1fr;
  gap: 0.5rem 2rem;
  align-items: start;
  transition: background 0.4s, padding-left 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.timeline-item:hover {
  background: rgba(26, 107, 92, 0.05);
  padding-left: 1.75rem;
}

.timeline-era {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 0.4rem;
  position: relative;
}

.timeline-era::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(26, 107, 92, 0.35);
  transition: box-shadow 0.4s, transform 0.35s var(--ease);
}

.timeline-item:hover .timeline-era::before {
  transform: scale(1.25);
  box-shadow: 0 0 0 8px rgba(26, 107, 92, 0.12);
}

.timeline-item h3 {
  margin: 0;
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color 0.3s, transform 0.4s var(--ease);
}

.timeline-item:hover h3 {
  color: var(--teal-deep);
  transform: translateX(4px);
}

.timeline-item p {
  margin: 0.35rem 0 0;
  grid-column: 2;
  max-width: 38rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Paixão */
.paixao {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  padding: 0;
  min-height: min(80vh, 40rem);
  background: var(--night);
  color: var(--mist);
  overflow: hidden;
}

.paixao-media {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
}

.paixao-media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06);
  transform: translateY(0) scale(1.05);
  will-change: transform;
  transition: filter 0.8s;
}

.paixao:hover .paixao-media img {
  filter: saturate(0.95) contrast(1.08);
}

.paixao-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 65%);
  transform: translateX(-100%);
  animation: shine-sweep 7s var(--ease) infinite;
  pointer-events: none;
}

.paixao-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(26, 107, 92, 0.28), transparent 55%),
    var(--night);
}

.paixao h2 {
  color: #fff;
  max-width: 14ch;
}

.paixao-copy > p {
  margin: 0;
  max-width: 28rem;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(242, 245, 243, 0.72);
}

.paixao-release {
  margin-top: 2rem;
  max-width: 28rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 245, 243, 0.18);
}

.paixao-release-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 107, 92, 0.95);
}

.paixao-release h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.paixao-release h3 em {
  font-style: italic;
  font-weight: 600;
}

.paixao-release p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(242, 245, 243, 0.7);
}

.paixao-release strong {
  color: #fff;
  font-weight: 500;
}

/* Álbum */
.album {
  background:
    linear-gradient(165deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.album-block {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
}

.album-block--featured {
  border-top: 0;
  padding-top: 0;
}

.album-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.album-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.album-intro strong {
  font-weight: 600;
  color: var(--ink);
}

.album-actions {
  margin: 0 0 1.5rem;
}

.album-cover {
  margin: 0;
  perspective: 900px;
}

.album-cover-inner {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, box-shadow 0.35s;
  will-change: transform;
}

.album-cover:hover .album-cover-inner {
  box-shadow: 0 24px 48px rgba(20, 26, 24, 0.22);
}

.album-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.6s var(--ease);
}

.album-cover:hover img {
  transform: scale(1.04);
}

.album-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.28) 0%, transparent 42%, transparent 100%);
  opacity: 0.35;
  mix-blend-mode: soft-light;
  pointer-events: none;
  transition: opacity 0.3s;
}

.album-cover figcaption {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.album-intro {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 28rem;
}

.credits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.credit-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(1.5rem);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), padding 0.35s, background 0.35s;
  transition-delay: calc(var(--i, 0) * 0.1s + 0.15s);
}

.album-credits.is-visible .credit-item {
  opacity: 1;
  transform: none;
}

.credit-item:hover {
  padding-left: 0.5rem;
  background: linear-gradient(90deg, rgba(26, 107, 92, 0.06), transparent);
}

.credit-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.credit-item:hover .credit-role {
  color: var(--teal);
}

.credit-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: right;
  transition: transform 0.35s var(--ease);
}

.credit-item:hover .credit-name {
  transform: translateX(-4px);
}

/* Ouvir / Player */
.ouvir {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(26, 107, 92, 0.08), transparent 55%),
    var(--mist);
  overflow-x: clip;
}

.player {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.player-modes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .player-modes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 2rem;
  }
}

.mode-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  min-width: 0;
}

.mode-tab:hover {
  border-color: rgba(26, 107, 92, 0.45);
  transform: translateY(-2px);
}

.mode-tab.is-active {
  background: var(--night);
  border-color: var(--night);
  color: #fff;
}

.mode-tab-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mode-tab-hint {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.65;
  line-height: 1.3;
}

/* Mobile-first: SEMPRE coluna. Desktop só depois de 960px. */
.player-main {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.player-now {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  min-width: 0;
}

.player-art {
  position: relative;
  width: 8rem;
  max-width: 40%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

.player-now-copy {
  min-width: 0;
  width: 100%;
}

.player-playlist {
  display: block;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
  clear: both;
}

@media (min-width: 560px) {
  .player-now {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.15rem;
  }

  .player-art {
    width: 7rem;
    max-width: none;
  }
}

@media (min-width: 960px) {
  .player-main {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    flex-direction: unset !important;
    gap: 2.5rem;
    align-items: start;
  }

  .player-now {
    flex-direction: row;
  }

  .player-art {
    width: 9.5rem;
  }
}

.player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-eq {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.player-eq.is-active {
  opacity: 1;
}

.player-eq span {
  width: 3px;
  height: 40%;
  background: #fff;
  border-radius: 1px;
  animation: equalizer 0.9s ease-in-out infinite;
}

.player-eq span:nth-child(2) { animation-delay: 0.12s; height: 70%; }
.player-eq span:nth-child(3) { animation-delay: 0.24s; height: 50%; }
.player-eq span:nth-child(4) { animation-delay: 0.08s; height: 85%; }

.player-now-label {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

#player-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.player-meta {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
}

.player-status {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--amber-deep, #8f4a1a);
  background: rgba(184, 106, 42, 0.1);
  border-left: 2px solid var(--brass);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.ctrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}

.ctrl-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.ctrl-btn--play {
  width: 3.15rem;
  height: 3.15rem;
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.ctrl-btn--play:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}

.player-progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  min-width: 0;
}

.seek,
.player-volume input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
  height: 3px;
  border-radius: 2px;
  background: rgba(20, 26, 24, 0.15);
  outline: none;
  cursor: pointer;
}

.seek::-webkit-slider-thumb,
.player-volume input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 0;
  cursor: pointer;
}

.seek::-moz-range-thumb,
.player-volume input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 0;
  cursor: pointer;
}

.player-volume {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  max-width: 14rem;
}

.player-volume label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.player-radio-cta {
  border-color: rgba(20, 26, 24, 0.22) !important;
  color: var(--ink) !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.player-radio-cta:hover {
  border-color: var(--ink) !important;
  background: rgba(20, 26, 24, 0.04) !important;
}

.track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 22rem;
  overflow-x: hidden;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  width: 100%;
  box-sizing: border-box;
}

.track-item {
  border-bottom: 1px solid var(--line);
}

.track-item.is-current .track-btn {
  background: rgba(26, 107, 92, 0.08);
}

.track-item.is-current .track-name {
  color: var(--teal-deep);
}

.track-btn {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  padding: 0.85rem 0.5rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.25s, padding-left 0.3s var(--ease);
}

.track-btn:hover {
  background: rgba(26, 107, 92, 0.05);
  padding-left: 0.75rem;
}

.track-num {
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.track-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.track-album {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-play-icon {
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.25s;
}

.track-btn:hover .track-play-icon,
.track-item.is-current .track-play-icon {
  opacity: 1;
}

.track-empty {
  padding: 1.25rem 0.5rem;
  color: var(--muted);
  font-weight: 300;
}

.player-help {
  margin: 1.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.player-help code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.8em;
  padding: 0.1em 0.35em;
  background: rgba(20, 26, 24, 0.06);
  border-radius: 2px;
}

/* Dock player */
.player-dock {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(34rem, calc(100vw - 1.5rem));
  padding: 0.65rem 0.75rem;
  background: rgba(12, 18, 16, 0.94);
  color: #fff;
  border-radius: 4px;
  backdrop-filter: blur(14px);
  transform: translate(-50%, 120%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}

.player-dock.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.dock-cover {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.dock-copy {
  min-width: 0;
  flex: 1;
}

.dock-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dock-meta {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dock-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.player-dock .ctrl-btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.player-dock .ctrl-btn:hover {
  border-color: #fff;
  color: #fff;
}

.player-dock .ctrl-btn--play {
  background: var(--teal);
  border-color: var(--teal);
}

.dock-close {
  opacity: 0.7;
}

body.has-player-dock {
  padding-bottom: 5.5rem;
}

/* Contato */
.contato {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(26, 107, 92, 0.1), transparent 60%),
    var(--mist);
  overflow: hidden;
}

.contato-orb {
  position: absolute;
  width: 28rem;
  height: 28rem;
  left: 50%;
  top: 40%;
  margin: -14rem 0 0 -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 107, 92, 0.16), transparent 70%);
  animation: orb-float 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.contato-inner {
  position: relative;
  max-width: 36rem;
}

.contato .section-lede {
  margin-bottom: 2rem;
}

.contato .cta-group {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-footer strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.footer-note {
  margin-top: 0.35rem !important;
  font-size: 0.8rem !important;
  color: var(--muted) !important;
}

/* Motion base */
.reveal {
  opacity: 0;
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out), filter 0.95s var(--ease-out);
  filter: blur(4px);
}

.reveal-up {
  transform: translateY(2rem);
}

.reveal-left {
  transform: translateX(-2rem);
}

.reveal-right {
  transform: translateX(2rem);
}

.reveal-scale {
  transform: scale(0.92) translateY(1.5rem);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.5s; }

.reveal-fade {
  transform: none;
  opacity: 0;
}

.reveal-fade.is-visible {
  opacity: 1;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.08) translate(-0.8%, 0.6%); }
}

@keyframes rays-breathe {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

@keyframes equalizer {
  0%, 100% { transform: scaleY(0.45); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes shine-sweep {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}

@keyframes orb-float {
  from { transform: translate(-4%, -3%) scale(0.95); }
  to { transform: translate(5%, 4%) scale(1.08); }
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.55; letter-spacing: -0.03em; }
  50% { opacity: 1; letter-spacing: 0.02em; }
}

@keyframes loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes dust-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.7; }
  100% { transform: translateY(-100vh) translateX(18px); opacity: 0; }
}

@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 8px 28px rgba(26, 107, 92, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
  50% { box-shadow: 0 10px 36px rgba(26, 107, 92, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .credit-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .is-hero-anim,
  .brand-line {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }

  .hero-media img,
  .paixao-media img,
  .paixao-shine,
  .contato-orb,
  .loader-brand,
  .loader-bar::after,
  .player-eq span {
    animation: none !important;
  }

  .btn:hover,
  .timeline-item:hover,
  .timeline-item:hover h3 {
    transform: none;
  }

  .cursor-glow,
  .page-loader {
    display: none;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(242, 245, 243, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    color: var(--ink);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .nav-toggle span { background: var(--ink); }
  .site-header.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .timeline-era { padding-top: 0; }
  .timeline-item h3,
  .timeline-item p { grid-column: 1; }

  .paixao { grid-template-columns: 1fr; }
  .paixao-media { min-height: 16rem; max-height: 22rem; }
  .album-block { grid-template-columns: 1fr; }
  .album-cover { max-width: 20rem; }
  .cursor-glow { display: none; }

  .hero-media img {
    object-position: 48% 18%;
  }

  .hero-content {
    width: 100%;
  }

  .player-modes {
    gap: 0.5rem;
  }

  .track-list {
    max-height: 16rem;
  }

  .mode-tab {
    padding: 0.8rem 0.85rem;
  }

  .mode-tab-label {
    font-size: 0.92rem;
  }

  .mode-tab-hint {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    letter-spacing: -0.075em;
  }

  .hero-tagline {
    max-width: none;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .cta-group { flex-direction: column; }
  .btn { width: 100%; }

  .player-controls {
    flex-wrap: wrap;
  }

  #player-title {
    font-size: 1.25rem;
  }

  .player-dock {
    bottom: 0.75rem;
    width: calc(100vw - 1rem);
    padding: 0.55rem 0.6rem;
  }

  .dock-meta {
    display: none;
  }
}
