/* ============================================================
   PAH! MUSIC SHOW — Vanilla CSS
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --gold:       #D4AF37;
  --gold-light: #f0d060;
  --gold-glow:  rgba(212, 175, 55, 0.35);
  --black:      #260D04;
  --dark:       #050505;
  --white:      #fafafa;
  --muted:      rgba(255, 255, 255, 0.60);
  --muted-dim:  rgba(255, 255, 255, 0.35);
  --border:     rgba(255, 255, 255, 0.10);
  --radius-lg:  1rem;
  --radius-xl:  1.25rem;
  --transition: 0.3s ease;
  --font-body:    'Poppins', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-cursive: 'Dancing Script', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── Helpers ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 3rem; }
}

.gold   { color: var(--gold); }
.cursive { font-family: var(--font-cursive); font-weight: 700; }
.white  { color: var(--white); }

/* ── Scroll-reveal animations ────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.93); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-container { padding-inline: 3rem; }
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
  z-index: 110;
}

.logo-name {
  font-family: var(--font-cursive);
  font-size: 1.75rem;
  color: var(--white);
}

.logo-pah {
  color: var(--gold);
  font-weight: 700;
}

.logo-sub {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-top: 2px;
}

/* Desktop nav links */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.desktop-nav a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 9999px !important;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
  box-shadow: 0 0 18px var(--gold-glow) !important;
  white-space: nowrap;
}

.btn-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(212,175,55,0.55) !important;
  color: var(--dark) !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 110;
}

@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold); }

.btn-mobile-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.85rem 2.5rem;
  border-radius: 9999px;
  margin-top: 1rem;
  transition: transform var(--transition);
}

.btn-mobile-cta:hover { transform: scale(1.04); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

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

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.18) 0%, transparent 70%);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 12rem;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  padding: 0 1.5rem;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  background: linear-gradient(to right, var(--gold), #f0e080, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-btns { flex-direction: row; justify-content: center; }
}

.btn-white,
.btn-gold {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
  text-align: center;
}

@media (min-width: 480px) { .btn-white, .btn-gold { width: auto; } }

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover { transform: scale(1.05); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 0 22px rgba(212,175,55,0.4);
}
.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(212,175,55,0.65);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.45);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  position: relative;
  padding: 6rem 0;
  background: var(--black);
  overflow: hidden;
}

@media (min-width: 768px) { .about-section { padding: 8rem 0; } }

/* decorative blobs */
.deco-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.deco-top-right {
  top: 0; right: 0;
  background: rgba(212,175,55,0.06);
  transform: translate(30%, -50%);
}

.deco-bottom-left {
  bottom: 0; left: 0;
  background: rgba(255,255,255,0.04);
  transform: translate(-30%, 50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-title .cursive {
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
  display: block;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: rgba(255,255,255,0.68);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.feature { display: flex; flex-direction: column; gap: 0.625rem; }

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature h3 {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
}

.feature p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* About image grid */
.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Exibe a imagem completa dentro do espaço disponível */
  object-position: top;
  transition: transform 0.7s ease;
}

.about-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.about-img-card:hover img { transform: scale(1.06); }

.about-img-bottom { transform: translateY(2rem); }

.img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70), transparent);
}

.img-fade-gold {
  background: linear-gradient(to top, rgba(212,175,55,0.40), transparent);
}

.img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-section {
  padding: 6rem 0;
  background: #260D04;
}

@media (min-width: 768px) { .events-section { padding: 8rem 0; } }

.section-header {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.0625rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.event-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: border-color 0.5s ease, transform 0.4s ease;
}

.event-card:hover {
  border-color: rgba(212,175,55,0.50);
}

.event-img-wrap {
  height: 16rem;
  position: relative;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.event-card:hover .event-img-wrap img { transform: scale(1.10); }

.event-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), rgba(0,0,0,0.30), transparent);
}

.event-body {
  padding: 2rem;
  background: var(--dark);
  margin-top: -2.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.event-card:hover .event-body { transform: translateY(-0.5rem); }

.event-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.event-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 6rem 0;
  background: var(--black);
}

@media (min-width: 768px) { .gallery-section { padding: 8rem 0; } }

.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .gallery-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.gallery-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.gallery-header h2 .cursive {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.gallery-header p {
  color: var(--muted);
  max-width: 32rem;
}

.instagram-link {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.instagram-link:hover { color: var(--white); }

/* Masonry grid */
.masonry {
  columns: 1;
  column-gap: 1rem;
}

@media (min-width: 640px)  { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.masonry-item:hover img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,0.20);
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: overlay;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--gold);
}

@media (min-width: 768px) { .cta-section { padding: 8rem 0; } }

.cta-dots {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 24px 24px;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--gold), #c8a82a, var(--gold));
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.cta-title .cursive {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  text-transform: lowercase;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  font-weight: 700;
}

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.1rem 2.5rem;
  border-radius: 9999px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.50);
}

.btn-cta svg {
  transition: transform var(--transition);
}

.btn-cta:hover svg { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #260D04;
  padding-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-brand { align-items: flex-start; text-align: left; }
}

.footer-brand .logo-name { font-size: 2.25rem; }

.footer-tagline {
  color: rgba(255,255,255,0.38);
  font-size: 0.875rem;
  max-width: 20rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 768px) { .footer-contact { align-items: flex-end; } }

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--muted);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold); }

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.60); }

/* ============================================================
   VIDEOS SECTION
   ============================================================ */
.videos-section {
  padding: 6rem 0;
  background: var(--dark);
}

@media (min-width: 768px) { 
  .videos-section { padding: 8rem 0; } 
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Responsividade para Tablet */
@media (min-width: 768px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Responsividade para Desktop */
@media (min-width: 1024px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: border-color 0.5s ease, transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-card:hover {
  border-color: rgba(212,175,55,0.50); /* var(--gold) com opacidade */
  transform: translateY(-0.5rem);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* Container do iFrame para manter a proporção 16:9 sempre perfeita */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
