/* ===============================
   RESET / BASE
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000;
  --white: #fff;
  --dark-blue: #03141d;
  --red: #8f0f0b;
  --text-soft: rgba(255, 255, 255, 0.82);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

/* ===============================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 760px;
  background-image: url("../img/fundo.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px 30px;
}

/*
  Aqui você controla a posição do PNG transparente
  Da Vinci's Notes / Hyle & Chaos.
*/
.hero-logo {
  width: min(532px, 72vw);
  margin-top: 420px;
}

/* ===============================
   SINGLE SECTION
================================ */
.single-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--black);
}

/* VÍDEO */
/* VÍDEO */
.single-video {
  background: var(--dark-blue);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  min-height: 420px;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  position: relative;
  background: #000;
  overflow: hidden;
}

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

/* INFO DA MÚSICA */
.single-info {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.single-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(90, 0, 0, 0.25)),
    rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.single-info-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 56px 70px;
}

.single-title-img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 42px;
}

.single-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 54px;
  padding-left: 18%;
}

.modal-link {
  background: none;
  border: 0;
  color: var(--white);
  font-size: 20px;
  font-style: italic;
  line-height: 1;
  cursor: pointer;
  text-align: left;
  width: fit-content;
  opacity: 0.9;
  transition: var(--transition);
}

.modal-link:hover {
  opacity: 1;
  transform: translateX(5px);
}

.platform-grid img {
  max-height: 24px;
  width: auto;
}


.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-content: start;
  gap: 14px;
  margin-bottom: 18px;
}

.platform-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.platform-grid a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.platform-grid img {
  max-height: 34px;
  width: auto;
}

/* Texto "ver todas..." */
.all-platforms-link img {
  width: auto;
  max-width: 210px;
  height: auto;
}

.all-platforms-link:hover {
  opacity: 0.78;
}

.all-platforms-link img {
  width: min(260px, 80%);
}

/* ===============================
   FINAL IMAGE
================================ */
.final-image {
  width: 100%;
  background: var(--black);
}

.final-image img {
  width: 100%;
  height: auto;
}

/* ===============================
   FOOTER
================================ */
/* ===============================
   FOOTER
================================ */
.site-footer {
  position: relative;
  background-image: url("../img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 24px 70px;
  overflow: hidden;
}

/* camada escura por cima da imagem */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.88)
    );
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* redes sociais */
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 28px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  opacity: 0.75;
}

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

/* copyright */
.footer-inner p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* ===============================
   MODAL
================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
}

.modal-box {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: 82vh;
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(35, 0, 0, 0.92), rgba(5, 5, 5, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 52px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}

.modal-close:hover {
  opacity: 1;
}

.modal-box h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-box h3 {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.modal-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.lyrics p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
  .hero {
    min-height: 680px;
  }

  .single-info-inner {
    padding: 46px;
  }

  .single-links {
    padding-left: 8%;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 620px;
    background-image: url("../img/fundo-m.jpg");
    background-position: center top;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .hero-logo {
    width: min(340px, 82vw);
    margin-top: 320px;
  }

  .single-section {
    grid-template-columns: 1fr;
  }

  .single-video {
    padding: 36px 22px;
    min-height: 320px;
  }

  .single-info {
    min-height: 520px;
  }

  .single-info-inner {
    padding: 44px 28px;
  }

  .single-title-img {
width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 36px;
  }

  .single-links {
    padding-left: 0;
    gap: 18px;
    margin-bottom: 42px;
  }

  .modal-link {
    font-size: 19px;
  }


  .modal-box {
    padding: 42px 28px;
  }
}
@media (max-width: 820px) {
  .platform-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .platform-grid a {
    flex: 0 0 auto;
  }

  .platform-grid img {
    max-height: 38px;
    width: auto;
  }
}

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

  .hero-logo {
    width: 82vw;
    margin-top: 280px;
  }

  
  .single-info-inner {
    padding: 38px 22px;
  }



  .modal-box h2 {
    font-size: 32px;
  }

  .modal-box p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .platform-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .platform-grid a {
    flex: 0 0 auto;
  }

  .platform-grid img {
    max-height: 16px;
    width: auto;
  }
}
@media (max-width: 820px) {
  .single-video {
    padding: 0;
    min-height: auto;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
/* CENTRALIZA CONTEÚDO DA COLUNA DIREITA */
.single-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-info-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 100%;
  padding: 56px 50px;
  text-align: center;
}

/* Título da música */
.single-title-img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
}

/* Links História / Letras */
.single-links {
  align-items: center;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 54px;
  text-align: center;
}

.modal-link {
  text-align: center;
}

/* Plataformas */
.platform-title-img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

/* Logos das plataformas */
.platform-grid {
  justify-content: center;
}

/* Link "ver todas..." */
.all-platforms-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.all-platforms-link img {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 820px) {
  .single-info-inner {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 44px 24px;
  }

  .single-links {
    align-items: center;
    padding-left: 0;
  }

  .platform-grid {
    justify-content: center;
  }
}
/* ===============================
   IMAGENS FULL COM ENTRADA NO SCROLL
================================ */
.final-image {
  width: 100%;
  background: #000;
  overflow: hidden;
}

.final-image.slide-reveal img {
  width: 100%;
  height: auto;
  opacity: 1;
  transform: translateX(100%);
  transition:
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.final-image.slide-reveal.is-visible img {
  transform: translateX(0);
}



/* Mobile: movimento menor para não ficar exagerado */
@media (max-width: 820px) {
  .final-image.slide-reveal img {
    transform: translateX(100%);
    transition-duration: 1.1s;
  }

  .final-image.slide-reveal.is-visible img {
    transform: translateX(0);
  }
}

/* Acessibilidade: remove movimento para quem usa redução de animação */
@media (prefers-reduced-motion: reduce) {
  .final-image.slide-reveal img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ===============================
   EFEITO FILME ANTIGO SOMENTE NO HERO
================================ */

.hero {
  isolation: isolate;
}

.hero-film-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.hero-film,
.hero-effect,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-film {
  filter: blur(0.35px);
}

/* Riscos verticais de filme */
.hero-film::after,
.hero-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  opacity: 0.35;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0 1px,
    transparent 2px 12vw,
    rgba(0, 0, 0, 0.15) 12vw 12.2vw,
    transparent 12.3vw 24vw
  );
  animation: hero-film-scratch 0.55s steps(2) infinite;
}

.hero-effect::after {
  left: 25%;
  opacity: 0.22;
  animation: hero-effect-scratch 2.4s linear infinite;
}

/* Grão do filme */
.hero-grain::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  opacity: 0.22;
  background-image:
    repeating-conic-gradient(
      rgba(255, 255, 255, 0.18) 0%,
      rgba(0, 0, 0, 0.12) 0.0004%,
      transparent 0.001%
    ),
    repeating-conic-gradient(
      rgba(0, 0, 0, 0.25) 0%,
      transparent 0.0005%,
      transparent 0.001%
    );
  animation: hero-grain 0.45s steps(2) infinite;
}

/* Vinheta cinematográfica */
.hero-film-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04),
      transparent 18%,
      transparent 78%,
      rgba(0, 0, 0, 0.35)
    );
  pointer-events: none;
}


/* leve flicker de filme antigo */
.hero-film-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 240, 210, 0.08);
  opacity: 0.18;
  animation: hero-flicker 1.8s steps(3) infinite;
}

@keyframes hero-grain {
  0%, 100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-1%, -1%);
  }

  20% {
    transform: translate(1%, 1%);
  }

  30% {
    transform: translate(-2%, -1%);
  }

  40% {
    transform: translate(2%, 2%);
  }

  50% {
    transform: translate(-1%, 2%);
  }

  60% {
    transform: translate(3%, 1%);
  }

  70% {
    transform: translate(-3%, -2%);
  }

  80% {
    transform: translate(2%, -1%);
  }

  90% {
    transform: translate(-2%, 1%);
  }
}

@keyframes hero-film-scratch {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.28;
  }

  25% {
    transform: translateX(-1.5%);
    opacity: 0.45;
  }

  50% {
    transform: translateX(1%);
    opacity: 0.22;
  }

  75% {
    transform: translateX(-2.5%);
    opacity: 0.38;
  }
}

@keyframes hero-effect-scratch {
  0% {
    transform: translateX(-10%);
    opacity: 0.35;
  }

  50% {
    transform: translateX(12%);
    opacity: 0.18;
  }

  100% {
    transform: translateX(35%);
    opacity: 0.3;
  }
}

@keyframes hero-flicker {
  0%, 100% {
    opacity: 0.12;
  }

  20% {
    opacity: 0.22;
  }

  40% {
    opacity: 0.08;
  }

  60% {
    opacity: 0.18;
  }

  80% {
    opacity: 0.1;
  }
}

/* Mobile: reduz o efeito para não pesar */
@media (max-width: 820px) {
  .hero-grain::after {
    opacity: 0.16;
  }

  .hero-film::after,
  .hero-effect::after {
    opacity: 0.22;
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .hero-film::after,
  .hero-effect::after,
  .hero-grain::after,
  .hero-film-overlay::before {
    animation: none;
  }
}
/* CONTACT NO FOOTER */
.footer-contact {
  width: 100%;
  text-align: center;
  margin-bottom: 34px;
}

.footer-contact span {
  display: block;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-contact a {
  display: block;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-contact a:hover {
  opacity: 0.72;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .footer-contact {
    margin-bottom: 28px;
  }

  .footer-contact span {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .footer-contact a {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
}

/* ===============================
   CAPA NO LUGAR DO VÍDEO
================================ */
.video-cover-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile mantém proporção bonita */
@media (max-width: 820px) {
  .video-cover-wrapper {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .video-cover-img {
    height: 100%;
    object-fit: cover;
  }
}
/* ===============================
   BOTÃO MANIFESTO NO HERO
================================ */
.hero-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-manifesto-btn {
  margin-top: 34px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  padding: 13px 34px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: all 0.25s ease;
}

.hero-manifesto-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Modal manifesto com um pouco mais de clima */
.manifesto-box h2 {
  letter-spacing: 0.08em;
}

.manifesto-box p {
  text-align: left;
}
@media (max-width: 820px) {
  .hero-manifesto-btn {
    margin-top: 24px;
    padding: 12px 26px;
    font-size: 12px;
    letter-spacing: 0.22em;
  }
}

@media (max-width: 480px) {
  .hero-manifesto-btn {
    margin-top: 20px;
    padding: 11px 22px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }
}