/* =====================================================================
   JULIA VIANA – A DAMA DA SERESTA
   style.css  |  Mobile-First, CSS Grid/Flexbox, CSS Custom Properties
   ===================================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta */
  --clr-bg:          #0a0a0a;
  --clr-bg-2:        #111111;
  --clr-bg-3:        #1a1a1a;
  --clr-surface:     #141414;
  --clr-gold:        #c9a84c;
  --clr-gold-light:  #e4c06e;
  --clr-gold-dark:   #8a6820;
  --clr-white:       #f5f0e8;
  --clr-muted:       #8a8a8a;
  --clr-border:      rgba(201, 168, 76, 0.25);

  /* Gradientes */
  --grad-bg:       linear-gradient(160deg, #0a0a0a 0%, #181818 50%, #0f0f0f 100%);
  --grad-gold:     linear-gradient(135deg, #c9a84c 0%, #e4c06e 50%, #a07828 100%);
  --grad-glossy:   linear-gradient(180deg, #222 0%, #0a0a0a 60%, #1a1a1a 100%);

  /* Tipografia */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;

  /* Espaçamento */
  --section-gap: clamp(4rem, 8vw, 7rem);
  --container:   1200px;

  /* Transições */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --duration: 0.4s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITÁRIOS ── */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-gap);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
}

.gold-line {
  width: 3.5rem;
  height: 2px;
  background: var(--grad-gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ── BOTÃO GOLD ── */
.btn-gold {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: var(--grad-gold);
  color: #1a1100;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: filter var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, .45);
}
.btn-gold:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: 3px; }

/* Hero: par de botões */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

/* Botão contorno dourado (CD) */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: transparent;
  color: var(--clr-gold-light);
  border: 1px solid var(--clr-gold);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.btn-outline-gold svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background: rgba(201,168,76,.12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}

/* ── ANIMAÇÃO DE REVEAL (SCROLL) ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   NAVEGAÇÃO
   ===================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              padding var(--duration) var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 var(--clr-border);
  padding: .7rem 0;
}

.nav-container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  position: relative;
  transition: color var(--duration) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--clr-gold);
  transition: width var(--duration) var(--ease);
}
.nav-link:hover,
.nav-link:focus-visible { color: var(--clr-gold); }
.nav-link:hover::after,
.nav-link:focus-visible::after { width: 100%; }

/* Divisor e ícones sociais no menu */
.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(201,168,76,.3);
  flex-shrink: 0;
}

.nav-social-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-sicon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(245,240,232,.45);
  transition: color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.nav-sicon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.nav-sicon:hover,
.nav-sicon:focus-visible {
  color: var(--clr-gold);
  transform: translateY(-2px);
}

/* Toggle Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Parallax via pseudo-elemento — GPU-accelerated, sem jank */
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url('assets/img/background.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .6) 0%,
    rgba(0, 0, 0, .5) 50%,
    rgba(0, 0, 0, .75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-inline: 1.5rem;
  max-width: 780px;
}

.hero-tag {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 1.2rem;
  opacity: .9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1.05;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
  text-shadow: none;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--clr-white);
  letter-spacing: .08em;
  margin-bottom: 1rem;
  opacity: .9;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--grad-gold);
  margin: 1.2rem auto;
}

.hero-description {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(245, 240, 232, .75);
  letter-spacing: .05em;
  margin-bottom: 2.2rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--clr-gold);
  border-bottom: 2px solid var(--clr-gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
  opacity: .7;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .7; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* =====================================================================
   SOBRE
   ===================================================================== */
.sobre {
  position: relative;
  background-image:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
    url('assets/img/IMG_8403.jpg');
  background-size: cover;
  background-position: center;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.img-frame {
  position: relative;
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  overflow: hidden;
  max-width: 480px;
  margin-inline: auto;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, .07),
              0 20px 60px rgba(0,0,0,.6);
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--clr-border);
  z-index: 1;
  pointer-events: none;
  border-radius: 1px;
}
.img-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: brightness(.95) contrast(1.05);
  transition: filter var(--duration) var(--ease);
}
.img-frame:hover img { filter: brightness(1) contrast(1.05); }

.sobre-texto { max-width: 600px; }

.sobre-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--clr-gold-light);
  margin-bottom: 1.3rem;
  line-height: 1.6;
}

.sobre-texto p {
  color: rgba(245, 240, 232, .75);
  margin-bottom: 1rem;
  font-size: .95rem;
}

.sobre-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

.badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border);
  padding: .3rem .85rem;
  border-radius: 2px;
  background: rgba(201, 168, 76, .06);
}

/* =====================================================================
   VÍDEO
   ===================================================================== */
.video-section {
  position: relative;
  background-image:
    linear-gradient(rgba(0,0,0,.80), rgba(0,0,0,.80)),
    url('assets/img/IMG_8155.jpg');
  background-size: cover;
  background-position: center center;
}

.video-wrapper {
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.7),
              0 0 0 1px rgba(201,168,76,.08);
}

/* Card clicável do YouTube (substitui iframe bloqueado) */
.yt-card {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease), filter .5s var(--ease);
  filter: brightness(.85);
}

.yt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  background: rgba(0,0,0,.35);
  transition: background .35s var(--ease);
}

.yt-card:hover .yt-thumb   { transform: scale(1.03); filter: brightness(.7); }
.yt-card:hover .yt-overlay { background: rgba(0,0,0,.5); }

.yt-play-btn {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.yt-card:hover .yt-play-btn {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.7));
}

.yt-btn-bg   { fill: #FF0000; }
.yt-btn-icon { fill: #fff; }

.yt-label {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* =====================================================================
   GALERIA
   ===================================================================== */
.galeria {
  position: relative;
  background-image:
    linear-gradient(rgba(0,0,0,.80), rgba(0,0,0,.80)),
    url('assets/img/IMG_8544.jpg');
  background-size: cover;
  background-position: center;
}

/* ── CARROSSEL DA GALERIA ── */
.galeria-carousel {
  position: relative;
  padding: 0 3.2rem;
}

.car-viewport {
  overflow: hidden;
  border-radius: 2px;
}

.car-track {
  display: flex;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.car-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(.4rem, 1vw, .7rem);
}

.car-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.4rem, 1vw, .7rem);
}

.car-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color var(--duration) var(--ease);
  background: var(--clr-bg-3);
}
.car-item:hover,
.car-item:focus-visible { border-color: var(--clr-border); outline: none; }

.car-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease), filter .55s var(--ease);
  filter: brightness(.85) saturate(.9);
}

.car-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  color: var(--clr-gold);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.65));
}

.car-item:hover img,
.car-item:focus-visible img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.car-item:hover .car-item-overlay,
.car-item:focus-visible .car-item-overlay { opacity: 1; }

/* Botões prev / next */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: rgba(10,10,10,.82);
  color: var(--clr-gold);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}
.car-btn:hover {
  background: rgba(201,168,76,.18);
  border-color: var(--clr-gold);
}
.car-prev { left: 0; }
.car-next { right: 0; }

/* Dots indicadores */
.car-dots {
  display: flex;
  justify-content: center;
  gap: .65rem;
  margin-top: 1.4rem;
}

.car-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--clr-gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.car-dot.active {
  background: var(--clr-gold);
  transform: scale(1.3);
}

/* Mobile: 2 colunas */
@media (max-width: 639px) {
  .galeria-carousel { padding: 0 2.4rem; }
  .car-row { grid-template-columns: repeat(2, 1fr); }
  .car-btn  { width: 34px; height: 34px; font-size: 1.1rem; }
}

/* =====================================================================
   RODAPÉ
   ===================================================================== */
.footer {
  position: relative;
  background-image: url('assets/img/IMG_8611.jpg');
  background-size: cover;
  background-position: center;
  padding-top: clamp(3.5rem, 8vw, 6rem);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .88);
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .3rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--clr-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-bio {
  color: rgba(245,240,232,.55);
  font-size: .9rem;
  margin-top: 1rem;
}

.footer-section-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--clr-gold-light);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.contact-list,
.social-list { display: flex; flex-direction: column; gap: .75rem; }

.contact-link,
.social-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(245,240,232,.7);
  font-size: .9rem;
  transition: color var(--duration) var(--ease);
}
.contact-link:hover,
.social-link:hover { color: var(--clr-gold); }

.contact-link--whatsapp { color: rgba(245,240,232,.75); }
.contact-link--whatsapp:hover { color: #25D366; }
.contact-link--whatsapp:hover .whatsapp-svg { fill: #25D366; }

.contact-icon { font-size: 1.1rem; }

.contact-svg {
  width: 18px;
  height: 18px;
  fill: rgba(245,240,232,.6);
  flex-shrink: 0;
  transition: fill var(--duration) var(--ease);
}
.contact-link:hover .contact-svg { fill: var(--clr-gold); }
.whatsapp-svg { fill: #25D366; }

.social-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 1.2rem 0;
  text-align: center;
  color: rgba(245,240,232,.35);
  font-size: .78rem;
  letter-spacing: .05em;
}

/* =====================================================================
   PLAYER DE ÁUDIO FLUTUANTE
   ===================================================================== */
.audio-player {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .9rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid var(--clr-border);
  border-radius: 40px;
  padding: .6rem 1.1rem .6rem .6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.6),
              0 0 0 1px rgba(201,168,76,.08);
  max-width: calc(100vw - 3rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: playerSlideIn .6s var(--ease) both;
  animation-delay: 1.5s;
}

@keyframes playerSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.audio-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--grad-gold);
  color: #1a1100;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  box-shadow: 0 2px 12px rgba(201,168,76,.4);
  position: relative;
  overflow: hidden;
}
.audio-btn:hover { filter: brightness(1.15); transform: scale(1.05); }
.audio-btn:active { transform: scale(.97); }

.audio-icon {
  position: absolute;
  font-size: .95rem;
  color: #1a1100;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ondas sonoras animadas */
.audio-waves {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  opacity: 0;
  transition: opacity .2s;
}
.audio-btn.playing .audio-waves { opacity: 1; }
.audio-btn.playing .audio-icon  { opacity: 0; }

.wave {
  width: 3px;
  border-radius: 2px;
  background: #1a1100;
  animation: waveAnim 1s ease-in-out infinite alternate;
}
.wave:nth-child(1) { height: 6px;  animation-delay: 0s;    }
.wave:nth-child(2) { height: 12px; animation-delay: .15s;  }
.wave:nth-child(3) { height: 16px; animation-delay: .3s;   }
.wave:nth-child(4) { height: 10px; animation-delay: .45s;  }
.wave:nth-child(5) { height: 6px;  animation-delay: .6s;   }

@keyframes waveAnim {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1);   }
}

.audio-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.audio-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--clr-gold-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-artist {
  font-size: .7rem;
  color: var(--clr-muted);
  white-space: nowrap;
}

/* Barra de progresso */
.audio-progress-wrap {
  display: none; /* exibida em telas maiores */
  width: 90px;
  cursor: pointer;
}
.audio-progress-bg {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  overflow: hidden;
}
.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: width .3s linear;
}

/* =====================================================================
   RESPONSIVO
   ===================================================================== */

/* Tablet → 640px */
@media (min-width: 640px) {
  .audio-progress-wrap { display: block; }
}

/* Desktop pequeno → 768px */
@media (min-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-content {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Desktop → 1024px */
@media (min-width: 1024px) {
  .sobre-grid {
    gap: 5rem;
  }
}

/* Menu mobile */
@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100dvh;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right .4s var(--ease);
    border-left: 1px solid var(--clr-border);
  }
  .nav-menu.open { right: 0; }

  .nav-link {
    font-size: 1rem;
    color: var(--clr-white);
  }

  /* divisor vira linha horizontal no mobile */
  .nav-divider {
    width: 40px;
    height: 1px;
  }

  /* ícones maiores e centralizados no drawer */
  .nav-social-item {
    gap: .75rem;
  }
  .nav-sicon {
    width: 36px;
    height: 36px;
    color: rgba(245,240,232,.5);
  }
  .nav-sicon svg {
    width: 20px;
    height: 20px;
  }

}

/* =====================================================================
   ACESSIBILIDADE – foco visível
   ===================================================================== */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================================
   SCROLLBAR PERSONALIZADA (Webkit)
   ===================================================================== */
::-webkit-scrollbar            { width: 6px; }
::-webkit-scrollbar-track      { background: var(--clr-bg); }
::-webkit-scrollbar-thumb      { background: var(--clr-gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover{ background: var(--clr-gold); }

/* =====================================================================
   OVERLAY DE ENTRADA (AUTOPLAY)
   ===================================================================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/background.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(.35);
  transform: scale(1.04);
}

.intro-content {
  position: relative;
  z-index: 1;
  padding: 2rem 2.5rem;
  max-width: 520px;
  animation: introFadeUp .9s var(--ease) both;
}

@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro-note {
  font-size: 3.5rem;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: .8rem;
  display: block;
  animation: introNotePulse 2.5s ease-in-out infinite;
}
@keyframes introNotePulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.08); }
}

.intro-tag {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: .8rem;
  opacity: .85;
}

.intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  margin-bottom: .4rem;
}

.intro-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--clr-white);
  opacity: .85;
  margin-bottom: 1rem;
}

.intro-divider {
  width: 50px;
  height: 1px;
  background: var(--grad-gold);
  margin: 1rem auto 1.5rem;
}

.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.4rem;
  background: var(--grad-gold);
  color: #1a1100;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: filter .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease);
  box-shadow: 0 6px 30px rgba(201,168,76,.45);
  margin-bottom: 1rem;
}
.intro-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,168,76,.6);
}
.intro-btn-icon {
  font-size: 1rem;
}

.intro-hint {
  font-size: .72rem;
  color: rgba(245,240,232,.45);
  letter-spacing: .06em;
}

/* =====================================================================
   ÍCONES DAS REDES SOCIAIS
   ===================================================================== */
.social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .25rem;
}

.sicon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  transition: transform .28s var(--ease),
              box-shadow .28s var(--ease),
              filter .28s var(--ease);
}
.sicon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.sicon:hover,
.sicon:focus-visible {
  transform: translateY(-4px) scale(1.1);
  filter: brightness(1.15);
}

/* Cores de marca */
.sicon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 16px rgba(220,39,67,.4);
}
.sicon.youtube {
  background: #FF0000;
  box-shadow: 0 4px 16px rgba(255,0,0,.4);
}
.sicon.tiktok {
  background: #010101;
  border: 1px solid #69C9D0;
  box-shadow: 0 4px 16px rgba(105,201,208,.3);
}
.sicon.spotify {
  background: #1DB954;
  box-shadow: 0 4px 16px rgba(29,185,84,.4);
}
.sicon.facebook {
  background: #1877F2;
  box-shadow: 0 4px 16px rgba(24,119,242,.4);
}
.sicon.instagram:hover { box-shadow: 0 8px 24px rgba(220,39,67,.55); }
.sicon.youtube:hover   { box-shadow: 0 8px 24px rgba(255,0,0,.55);   }
.sicon.tiktok:hover    { box-shadow: 0 8px 24px rgba(105,201,208,.45); }
.sicon.spotify:hover   { box-shadow: 0 8px 24px rgba(29,185,84,.55);  }
.sicon.facebook:hover  { box-shadow: 0 8px 24px rgba(24,119,242,.55); }
