/* ============================================
   Cereja Bloom
   Design tokens
   ============================================ */
@font-face {
  font-family: "Astheric";
  src: url("../fonts/astheric-bold-webfont.woff2") format("woff2"),
       url("../fonts/astheric-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: #1c1b1a;
  --color-charcoal: #232323;
  --color-cream: #f9f8ed;
  --color-red: #c8102e;
  --color-red-dark: #8f0b21;
  --color-red-bright: #e8112f;
  --color-orange: #f0723c;
  --color-mustard: #e0a23c;
  --color-peach: #eeb98f;
  --color-rose: #de6c85;
  --color-indigo: #33428f;

  --bg: var(--color-black);
  --bg-alt: var(--color-charcoal);
  --fg: var(--color-cream);
  --fg-muted: #b9b7ab;
  --accent: var(--color-red-bright);

  --font-display: "Astheric", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-space: clamp(4rem, 12vw, 8rem);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--accent);
  color: var(--color-cream);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: var(--section-space) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-cream);
}

p {
  margin: 0 0 1rem;
  color: var(--fg-muted);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--accent);
  color: var(--fg);
}

.btn-solid:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(249, 248, 237, 0.06);
}

.site-header * {
  pointer-events: auto;
}

.logo-link {
  display: block;
  width: clamp(120px, 18vw, 170px);
}

.logo-link img {
  width: 100%;
  height: auto;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.header-socials a {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.header-socials svg {
  width: 100%;
  height: 100%;
  fill: var(--fg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 16, 15, 0.95) 0%, rgba(18, 16, 15, 0.35) 45%, rgba(18, 16, 15, 0.55) 100%),
    linear-gradient(to right, rgba(18, 16, 15, 0.35), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(3rem, 9vw, 6rem);
  max-width: 900px;
}

.hero-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: block;
}

.hero-title {
  width: min(600px, 70vw);
  margin-bottom: 1.5rem;
}

.hero-title img {
  width: 100%;
  height: auto;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--color-cream);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  right: var(--gutter);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--fg-muted);
}

/* ============================================
   Bio
   ============================================ */
.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .bio-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }
}

.bio-short {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-cream);
  line-height: 1.3;
}

.bio-long p {
  color: var(--fg-muted);
  font-size: 1.02rem;
}

.bio-meta {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.bio-meta div {
  border-left: 2px solid var(--accent);
  padding-left: 0.8rem;
}

.bio-meta span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}

.bio-meta strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-cream);
}

/* ============================================
   Members
   ============================================ */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .members-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.member-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.member-card:hover .member-photo img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.member-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.15rem;
}

.member-card > p {
  font-size: 0.82rem;
  margin: 0 0 0.5rem;
}

.member-card a {
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg-muted);
  border-bottom: 1px solid transparent;
  opacity: 0.8;
}

.member-card a:hover {
  color: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}

/* ============================================
   Music
   ============================================ */
#musicas {
  position: relative;
  overflow: hidden;
}

#musicas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/web/musicas-bg.jpg") center/cover no-repeat;
}

#musicas .container {
  position: relative;
  z-index: 1;
}

.music-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .music-feature {
    grid-template-columns: 380px 1fr;
    gap: 3rem;
  }
}

.music-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  max-width: 380px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .music-embed {
    margin: 0;
  }
}

.music-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}

.music-copy > p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.music-links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.music-links-item {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.music-links-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 0.3rem;
}

.music-links-item a {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid transparent;
}

.music-links-item a:hover {
  border-color: var(--accent);
}

.music-note {
  margin: 1.6rem 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--fg-muted);
  opacity: 0.85;
}

/* ============================================
   Videos
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  position: relative;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  font-size: 1.2rem;
  margin: 0.9rem 0 0.2rem;
}

.video-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}

@media (min-width: 720px) {
  .gallery-grid a:nth-child(1) {
    aspect-ratio: auto;
    height: 100%;
  }
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(0.15);
}

.gallery-grid a:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}


/* ============================================
   Press
   ============================================ */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 720px) {
  .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.press-card {
  display: block;
  text-decoration: none;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(249, 248, 237, 0.08);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.press-card:hover {
  border-color: rgba(232, 17, 47, 0.5);
  transform: translateY(-3px);
}

.press-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#integrantes {    padding-top: 0;}

#fotos, #contato {background-image: linear-gradient(#141414, var(--bg));}

.press-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.press-card:hover .press-thumb img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.press-card-body {
  padding: 1.6rem;
}

.press-card span {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.press-card p {
  color: var(--color-cream);
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   Contact / Footer
   ============================================ */
.contact {
  text-align: center;
}

.contact .section-head {
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 5vw, 2.6rem);
  color: var(--color-cream);
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
}

.contact-sub {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.site-footer {
  background: #000000;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(249, 248, 237, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.footer-mark {
  max-width: 90px;
  width: 100%;
}

.footer-mark svg, .footer-mark img {
  display: block;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-socials a {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.footer-socials svg {
  width: 100%;
  height: 100%;
  fill: var(--fg-muted);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ============================================
   Utility
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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