/* ===================================================================
   ELOS — press kit
   Design próprio: fundo quase preto, acento areia/dourado tirado da
   foto principal, tipografia Bricolage Grotesque + Inter.
   =================================================================== */

:root{
  --bg: #0f0d0b;
  --bg-alt: #1b1712;
  --text: #f2ede6;
  --text-secondary: #b6a999;
  --accent: #d6b98c;
  --accent-dark: #b2946a;
  --overlay-soft: rgba(15,13,11,.55);
  --overlay-strong: rgba(15,13,11,.72);
  --radius-pill: 999px;
  --font-head: 'Bricolage Grotesque', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --gutter: 20px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html{ background: var(--bg); }
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

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

a{ color: inherit; text-decoration: none; }

h1, h2, h3{
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

p{ margin: 0 0 1em; }
p:last-child{ margin-bottom: 0; }

.icon{ width: 22px; height: 22px; fill: none; stroke: none; color: currentColor; }

/* ---------- Wordmark ---------- */
.wordmark{
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0;
  color: var(--text);
}
.wordmark--hero{
  font-size: clamp(3rem, 16vw, 5rem);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.wordmark--footer{
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- Layout helpers ---------- */
.section{
  position: relative;
  padding: 72px var(--gutter) 88px;
}
.section__inner{
  max-width: 760px;
  margin: 0 auto;
}
.section__title{
  font-size: clamp(2rem, 8vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

.divider{
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
}
.divider--light{ background: var(--accent); }

.btn-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
.btn-row--center{ justify-content: center; }
.btn-row--equal{
  flex-direction: column;
  align-items: center;
}
.btn-row--equal .btn{
  width: 100%;
  max-width: 300px;
  justify-content: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
}
.btn:active{ transform: scale(.97); }
.btn--outline{
  border-color: rgba(242,237,230,.35);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover{ border-color: var(--accent); color: var(--accent); }
.btn--outline-light{
  border-color: rgba(242,237,230,.6);
  background: rgba(15,13,11,.25);
}
.btn--whatsapp{
  background: var(--accent);
  color: #0f0d0b;
}
.btn--whatsapp:hover{ background: var(--accent-dark); }

/* ===================================================================
   HERO
   =================================================================== */
.hero{
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero__media{
  position: relative;
  width: 100%;
  aspect-ratio: 1400 / 1320;
  overflow: hidden;
}
.hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  will-change: transform;
}
.hero__gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,13,11,0) 45%, var(--bg) 96%);
  pointer-events: none;
}

.hero__content{
  position: relative;
  z-index: 2;
  margin-top: -30vw;
  padding: 0 var(--gutter) calc(32px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__inner{ width: 100%; max-width: 480px; }

.hero__subtitle{
  margin: 10px auto 28px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  letter-spacing: .04em;
  max-width: 300px;
  text-wrap: balance;
}

.platform-row{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.platform-btn{
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242,237,230,.08);
  border: 1.5px solid rgba(242,237,230,.28);
  color: var(--text);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.platform-btn .icon{ width: 30px; height: 30px; }
.platform-btn:hover{ border-color: var(--accent); color: var(--accent); }
.platform-btn:active{ transform: scale(.94); }

.hero__anchors{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(242,237,230,.78);
  letter-spacing: .01em;
}
.hero__anchors a{
  color: rgba(242,237,230,.78);
  white-space: nowrap;
  padding: 12px 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .2s var(--ease);
}
.hero__anchors a:hover{ color: var(--accent); }
.hero__anchors span{ color: var(--text-secondary); }

.scroll-hint{
  display: flex;
  justify-content: center;
  margin-top: 26px;
  color: var(--text-secondary);
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-hint .icon{ width: 26px; height: 26px; }

@keyframes bob{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(6px); }
}

/* ===================================================================
   MÚSICAS E SETS
   =================================================================== */
.yt-lite{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
  margin-bottom: 24px;
}
.yt-lite__thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-lite__play{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(15,13,11,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.yt-lite__play .icon--play{ width: 76px; height: 76px; transition: transform .25s var(--ease); }
.yt-lite__play:hover .icon--play{ transform: scale(1.08); }
.yt-lite iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.spotify-embed{ margin-bottom: 8px; line-height: 0; }
.spotify-embed iframe{ display: block; }

/* ===================================================================
   SEÇÕES COM FOTO DE FUNDO (Bio / Contato)
   =================================================================== */
.section--band{
  padding-top: 0;
  padding-bottom: 88px;
  overflow: hidden;
}
.section__bg{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.section__bg picture, .section__bg img{
  position: absolute;
  inset: -10% -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}
.section__bg[data-parallax-bg="soft"] picture,
.section__bg[data-parallax-bg="soft"] img{
  inset: -5%;
  width: 110%;
  height: 110%;
}
.section--band#contato .section__bg{ aspect-ratio: 3 / 4; }
.section--band#contato .section__bg picture,
.section--band#contato .section__bg img{ object-position: 50% 20%; }
#bio .section__bg{ aspect-ratio: 1 / 1; }
#bio .section__bg picture,
#bio .section__bg img{ object-position: 50% 50%; }
.section__bg-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, var(--bg) 100%),
    var(--overlay-soft);
}
.section__bg-overlay--strong{
  background:
    linear-gradient(to bottom, transparent 45%, var(--bg) 100%),
    var(--overlay-strong);
}
/* título de 2 linhas: sobe mais pra ficar inteiro sobre a foto */
#contato .section__band-title{ margin-top: -34vw; }

.section__band-title{
  position: relative;
  z-index: 2;
  margin-top: -18vw;
  text-align: center;
  padding: 0 var(--gutter);
}
.section__title--band{
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

.section__inner--bio{ padding-top: 36px; }

.lang-toggle{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.lang-toggle__btn{
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(242,237,230,.3);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.lang-toggle__btn.is-active{
  background: var(--accent);
  border-color: var(--accent);
  color: #0f0d0b;
}

.bio__wrap{
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.bio__text p{
  font-size: 1.05rem;
  color: var(--text);
}
.bio__text p:not(:last-child){ margin-bottom: 1.1em; }

.polaroid-stack{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.polaroid{
  width: 280px;
  max-width: 78%;
  margin: 0 auto;
  padding: 10px 10px 22px;
  background: #f2ede6;
  border-radius: 3px;
  box-shadow: 0 14px 26px rgba(0,0,0,.4);
}
.polaroid--childhood{ --rot: -3deg; }
.polaroid--live{ --rot: 2.5deg; }
.polaroid img{ width: 100%; height: auto; border-radius: 1px; }
.polaroid figcaption{
  text-align: center;
  font-family: var(--font-head);
  font-size: .7rem;
  color: #0f0d0b;
  margin-top: 8px;
  letter-spacing: .03em;
}

.section__inner--contact{ text-align: center; padding-top: 36px; }
.contact__lead{
  color: #fff;
  font-size: 1.15rem;
  max-width: 420px;
  margin: 0 auto 8px;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

/* ===================================================================
   GALERIA
   =================================================================== */
.gallery-grid{
  column-count: 2;
  column-gap: 10px;
}
.gallery-item{
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
}
.gallery-item picture{ display: block; }
.gallery-item picture, .gallery-item img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.06); }

@media (min-width: 700px){
  .gallery-grid{ column-count: 3; }
}
@media (min-width: 1100px){
  .gallery-grid{ column-count: 4; column-gap: 16px; }
  .gallery-item{ margin-bottom: 16px; }
}

/* ===================================================================
   RODAPÉ
   =================================================================== */
.footer{
  text-align: center;
  padding: 56px var(--gutter) calc(140px + var(--safe-bottom));
  background: var(--bg);
}
.footer__platforms{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.footer__platforms a{ transition: color .2s var(--ease); }
.footer__platforms a:hover{ color: var(--accent); }
.footer__copy{
  font-size: .8rem;
  color: var(--text-secondary);
  margin: 0;
  letter-spacing: .03em;
}

/* ===================================================================
   FLUTUANTES
   =================================================================== */
.fab{
  position: fixed;
  z-index: 40;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.fab.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab--whatsapp{
  left: 18px;
  bottom: calc(18px + var(--safe-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0f0d0b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.fab--whatsapp .icon{ width: 28px; height: 28px; }
.fab--whatsapp:hover{ background: var(--accent-dark); }

.fab-menu{
  position: fixed;
  right: 12px;
  bottom: calc(18px + var(--safe-bottom));
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(15,13,11,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(242,237,230,.12);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.fab-menu.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab-menu__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 6px;
  border-radius: 14px;
  color: var(--text);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.fab-menu__item:hover{ background: rgba(242,237,230,.1); color: var(--accent); }
.fab-menu__item .icon{ width: 20px; height: 20px; }
.fab-menu__item span{
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ===================================================================
   LIGHTBOX
   =================================================================== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6,5,4,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}
.lightbox[hidden]{ display: none; }
.lightbox img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(242,237,230,.1);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(242,237,230,.1);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox__nav--prev{ left: 10px; }
.lightbox__nav--next{ right: 10px; }

/* ===================================================================
   REVEAL / SCROLL EFFECTS — estado inicial só com JS ativo
   =================================================================== */
.js .reveal{
  opacity: 0;
  transform: translateY(30px) rotate(var(--rot, 0deg));
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0) rotate(var(--rot, 0deg));
}
.js .divider{
  transition: transform .6s var(--ease) .1s;
}
.js .divider.is-visible{ transform: scaleX(1); }

/* stagger leve dentro de linhas de botões e da galeria */
.js .btn-row.reveal.is-visible .btn,
.js .gallery-grid .gallery-item.is-visible{ transition-delay: 0s; }
.js .gallery-item:nth-child(2){ transition-delay: .05s; }
.js .gallery-item:nth-child(3){ transition-delay: .1s; }
.js .gallery-item:nth-child(4){ transition-delay: .15s; }
.js .gallery-item:nth-child(5){ transition-delay: .2s; }
.js .gallery-item:nth-child(6){ transition-delay: .25s; }
.js .gallery-item:nth-child(7){ transition-delay: .3s; }

.js .hero__inner .wordmark--hero{
  opacity: 0;
  transform: scale(1.12);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .hero__inner .hero__subtitle,
.js .hero__inner .platform-row,
.js .hero__inner .hero__anchors{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease) .35s, transform .6s var(--ease) .35s;
}
.js .hero__inner.is-ready .wordmark--hero{ opacity: 1; transform: scale(1); }
.js .hero__inner.is-ready .hero__subtitle{ opacity: 1; transform: translateY(0); transition-delay: .3s; }
.js .hero__inner.is-ready .platform-row{ opacity: 1; transform: translateY(0); transition-delay: .42s; }
.js .hero__inner.is-ready .hero__anchors{ opacity: 1; transform: translateY(0); transition-delay: .52s; }

@media (prefers-reduced-motion: reduce){
  .js .reveal, .js .divider,
  .js .hero__inner .wordmark--hero,
  .js .hero__inner .hero__subtitle,
  .js .hero__inner .platform-row,
  .js .hero__inner .hero__anchors{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .scroll-hint{ animation: none; }
  .gallery-item img, .fab, .fab-menu{ transition: none !important; }
}

/* ===================================================================
   DESKTOP (≥ 900px)
   =================================================================== */
@media (min-width: 900px){
  :root{ --gutter: 40px; }

  .hero{ height: 100svh; }
  .hero__media{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .hero__img{ object-position: 50% 32%; }
  .hero__gradient{
    background: linear-gradient(180deg, rgba(15,13,11,.15) 0%, rgba(15,13,11,.35) 55%, rgba(15,13,11,.75) 100%);
  }
  .hero__content{
    position: relative;
    z-index: 2;
    height: 100%;
    margin-top: 0;
    justify-content: center;
    padding-bottom: 60px;
  }
  .hero__inner{ max-width: 560px; }
  .wordmark--hero{ font-size: clamp(4.5rem, 9vw, 7.5rem); }
  .hero__subtitle{ font-size: 1.15rem; max-width: none; }
  .hero__anchors{ font-size: 1.3rem; gap: 14px; }
  .hero__anchors a{ padding: 12px 4px; }

  .platform-row{ gap: 20px; }
  .platform-btn{ width: 76px; height: 76px; }
  .platform-btn .icon{ width: 36px; height: 36px; }

  .section{ padding: 120px var(--gutter) 140px; }
  .section__inner{ max-width: 920px; }
  .section__title{ font-size: clamp(2.4rem, 4vw, 3.4rem); margin-bottom: 56px; }

  .btn-row{ margin-top: 40px; }

  .yt-lite{ max-width: 900px; margin: 0 auto 32px; }
  .spotify-embed{ max-width: 760px; margin: 0 auto; }

  .btn-row--equal{ flex-direction: row; justify-content: center; }
  .btn-row--equal .btn{ flex: 1 1 0; min-width: 220px; max-width: 260px; }

  .section--band{ padding-bottom: 140px; }
  .section__bg{ aspect-ratio: 21 / 9; }
  .section--band#contato .section__bg{ aspect-ratio: 21 / 9; }
  .section__band-title,
  #contato .section__band-title{ margin-top: -9vw; }
  #bio .section__bg{
    max-width: 960px;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
    border-radius: 16px;
  }
  #bio .section__bg picture,
  #bio .section__bg img{ object-position: 50% 45%; }
  #bio .section__band-title{ margin-top: -160px; }

  .bio__wrap{
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: center;
    max-width: 860px;
    text-align: left;
  }
  .bio__text p{ font-size: 1.15rem; }
  .polaroid-stack{ margin-top: 0; justify-self: center; }
  .polaroid{ width: 240px; max-width: none; }
  .lang-toggle{ justify-content: flex-start; max-width: 860px; margin: 0 auto 32px; }

  .contact__lead{ font-size: 1.4rem; max-width: 560px; }

  .fab--whatsapp{ left: 28px; bottom: 28px; width: 60px; height: 60px; }
  .fab-menu{
    right: 24px;
    top: 50%;
    bottom: auto;
    transform: translateY(calc(-50% + 14px));
    flex-direction: column;
    border-radius: 28px;
    padding: 14px 10px;
    gap: 18px;
  }
  .fab-menu.is-visible{ transform: translateY(-50%); }
  .fab-menu__item span{ font-size: .68rem; }

  .footer{ padding-bottom: 160px; }
}
