/* ===================================================
   JOHN — CANTOR SERTANEJO | Premium Landing Page
   =================================================== */

:root {
  --bg: #080810;
  --bg2: #0e0e1c;
  --bg3: #13132a;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A88A20;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glass: rgba(212, 175, 55, 0.08);
  --white: #FFFFFF;
  --off-white: #EEE9D8;
  --muted: #8888AA;
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(212,175,55,0.25);
  --glass: rgba(255,255,255,0.04);
  --radius: 16px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --font-impact: 'Bebas Neue', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

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

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

/* ── LOADING SCREEN ───────────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-inner { text-align: center; }
.loading-guitar { font-size: 3rem; margin-bottom: 1.5rem; animation: bounce 1s ease infinite; }
.loading-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px; overflow: hidden;
}
.loading-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: loading-progress 1.2s ease forwards;
  border-radius: 10px;
}
@keyframes loading-progress { to { width: 100%; } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── NAVIGATION ───────────────────────────────── */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 2rem;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
.main-nav.scrolled {
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid var(--border-gold);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
}
.logo-badge {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 900;
  color: #08080f; letter-spacing: -0.02em;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.logo-badge.sm {
  width: 30px; height: 30px;
  font-size: 0.75rem; border-radius: 7px;
}
.nav-logo-text { color: var(--white); }

.nav-links {
  display: flex; align-items: center; gap: 0.5rem; list-style: none;
}
.nav-link {
  padding: 0.5rem 1rem; color: var(--off-white);
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, #1DA851, #128C3E);
  color: #fff; border-radius: 50px; font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(29, 168, 81, 0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29, 168, 81, 0.5); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  /* Foto como background — âmbar/carmim quente como fallback */
  background-color: #0a0205;
  background-image: url('/images/fotoprincipal.jpg');
  background-size: cover;
  /* 10% no eixo Y mantém rosto e holofotes visíveis mesmo em telas ultra-largas */
  background-position: 65% 10%;
  background-repeat: no-repeat;
}
#starCanvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    /* Gradiente horizontal: escuro vinho à esquerda (texto) → transparente à direita (foto) */
    linear-gradient(to right,
      rgba(6,  1,  3, 0.97) 0%,
      rgba(8,  2,  4, 0.93) 28%,
      rgba(12, 3,  6, 0.78) 45%,
      rgba(10, 2,  5, 0.42) 62%,
      rgba(5,  1,  3, 0.12) 78%,
      rgba(2,  0,  1, 0.03) 100%
    ),
    /* Vinheta superior: funde com a nav */
    linear-gradient(to bottom,
      rgba(4, 1, 2, 0.70) 0%,
      transparent 18%,
      transparent 72%,
      /* Funde para a cor de fundo do site (#080810) */
      rgba(8, 8, 16, 0.95) 100%
    );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 7rem 2rem 5rem;
  width: 100%;
}
.hero-text {
  max-width: 560px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  /* Âmbar quente — ecoa os holofotes da foto */
  background: rgba(232, 130, 20, 0.12);
  border: 1px solid rgba(232, 130, 20, 0.38);
  border-radius: 50px; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #E8A030; margin-bottom: 1rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #E8A030; animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  font-weight: 900; line-height: 0.92;
  color: var(--white);
  /* Brilho quente combinando com os tons da foto */
  text-shadow:
    0 0 60px rgba(200, 70, 20, 0.45),
    0 0 120px rgba(212, 130, 30, 0.2);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400; line-height: 1.4;
  color: var(--off-white);
  margin-bottom: 0.8rem;
}
.hero-tagline em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 0.9rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #1DA851, #0d6e32);
  color: #fff; border-radius: 50px;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(29, 168, 81, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(29, 168, 81, 0.55); }

.btn-secondary-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(232, 130, 20, 0.45);
  background: rgba(232, 130, 20, 0.10);
  color: #E8A030; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary-hero:hover {
  background: rgba(232, 130, 20, 0.2);
  border-color: #E8A030; transform: translateY(-3px);
}

/* Spotify no hero */
.hero-spotify {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.6rem;
}
.spotify-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.btn-spotify-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.52rem 1.3rem;
  background: rgba(29,185,84,0.12);
  border: 1px solid rgba(29,185,84,0.38);
  color: #1DB954; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-spotify-hero i { font-size: 1.15rem; }
.btn-spotify-hero:hover {
  background: rgba(29,185,84,0.22);
  border-color: #1DB954;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29,185,84,0.25);
}

/* Spotify no footer — cor verde em vez do padrão */
.footer-social a.spotify-icon:hover {
  border-color: #1DB954;
  color: #1DB954;
}

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); animation: float-up 2s ease infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #E8A030, transparent);
}
@keyframes float-up { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }

/* ── SECTIONS SHARED ──────────────────────────── */
.section-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  position: relative; padding: 0 1.5rem;
}
.section-label::before, .section-label::after {
  content: ''; position: absolute; top: 50%; width: 30px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.section-label::before { right: 100%; }
.section-label::after { left: 100%; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 0.8rem;
}
.gold-text { color: var(--gold); }
.section-sub { color: var(--muted); font-size: 1rem; }

/* ── AGENDA ───────────────────────────────────── */
.agenda-section {
  padding: 6rem 0;
  background: var(--bg2);
  position: relative;
}
.agenda-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 60%);
}
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.agenda-card {
  display: flex; align-items: stretch;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(10px);
}
.agenda-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.15);
}
.agenda-card-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(180deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
  border-right: 1px solid var(--border-gold);
  min-width: 80px;
}
.date-day {
  font-family: var(--font-impact);
  font-size: 2.8rem; line-height: 1; color: var(--gold);
}
.date-month { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold); opacity: 0.8; }
.date-year { font-size: 0.65rem; color: var(--muted); margin-top: 0.2rem; }

.agenda-card-body { flex: 1; padding: 1.25rem 1.5rem; }
.agenda-event-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.6rem;
}
.agenda-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem;
  font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem;
}
.agenda-meta i { color: var(--gold); margin-right: 0.3rem; }
.agenda-venue { font-size: 0.8rem; color: var(--muted); }
.agenda-venue i { color: var(--gold); margin-right: 0.3rem; }
.agenda-desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; font-style: italic; }

.agenda-card-cta {
  display: flex; align-items: center; padding: 1rem;
  border-left: 1px solid var(--border);
}
.agenda-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: linear-gradient(135deg, rgba(29,168,81,0.2), rgba(29,168,81,0.1));
  border: 1px solid rgba(29,168,81,0.3);
  color: #4ade80; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.agenda-btn:hover {
  background: linear-gradient(135deg, rgba(29,168,81,0.35), rgba(29,168,81,0.2));
  transform: scale(1.05);
}
.agenda-empty {
  text-align: center; padding: 5rem 2rem; color: var(--muted);
}
.agenda-empty i { font-size: 3rem; color: var(--border-gold); margin-bottom: 1rem; display: block; }

/* ── SOBRE ────────────────────────────────────── */
.sobre-section {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.sobre-section::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.03) 0%, transparent 70%);
}
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.sobre-text { position: relative; z-index: 1; }
.sobre-text .section-label { margin-bottom: 0.5rem; }
.sobre-text .section-title { margin-bottom: 1.5rem; }
.sobre-text p {
  color: #aaa8cc; margin-bottom: 1.2rem;
  font-size: 0.98rem; line-height: 1.8;
}
.sobre-text p strong { color: var(--gold); }

.sobre-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-impact);
  font-size: 2.5rem; color: var(--gold); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }

.sobre-visual { position: relative; }
.sobre-image-frame {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  position: relative;
}
.sobre-image-frame img { width: 100%; object-fit: cover; }
.sobre-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 2rem;
}
.sobre-quote {
  color: var(--off-white);
}
.sobre-quote i { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.sobre-quote p {
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--off-white);
}
.sobre-decor-lines {
  position: absolute; bottom: -30px; right: -30px;
  display: flex; flex-direction: column; gap: 8px;
}
.sobre-decor-lines span {
  display: block; height: 2px; background: var(--gold); opacity: 0.3;
}
.sobre-decor-lines span:nth-child(1) { width: 80px; }
.sobre-decor-lines span:nth-child(2) { width: 50px; }
.sobre-decor-lines span:nth-child(3) { width: 30px; }

/* ── VÍDEO ────────────────────────────────────── */
.video-section {
  padding: 6rem 0;
  background: var(--bg2);
  position: relative;
}
.video-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.04) 0%, transparent 60%);
}
.video-wrapper { position: relative; z-index: 1; }
.video-frame-decor {
  position: absolute; top: -15px; left: -15px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0; z-index: 10; opacity: 0.6;
}
.video-frame-decor.right {
  top: auto; left: auto;
  bottom: -15px; right: -15px;
  border-top: none; border-left: none;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
  border-radius: 0 0 4px 0;
}
.video-responsive {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}
.video-responsive iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}

/* ── CONTATO ──────────────────────────────────── */
.contato-section {
  padding: 7rem 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.contato-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(139,0,0,0.04) 0%, transparent 50%);
}
.contato-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.contato-text .section-title { margin-bottom: 2rem; }
.contato-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 2rem;
}
.contato-list li {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--off-white); font-size: 1.05rem; font-weight: 500;
}
.contato-list i { color: var(--gold); width: 20px; }

.contato-card {
  min-width: 320px;
}
.contato-card-inner {
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.contato-card-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.8rem;
}
.contato-phone {
  display: block;
  font-family: var(--font-impact);
  font-size: 2.2rem; color: var(--gold);
  letter-spacing: 0.03em; line-height: 1.2;
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}
.contato-phone:hover { color: var(--gold-light); }
.contato-card-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.8rem; }

.btn-whatsapp-big {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  padding: 1.1rem 2rem; width: 100%;
  background: linear-gradient(135deg, #25D366, #128C3E);
  color: #fff; border-radius: 16px;
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 1rem;
}
.btn-whatsapp-big i { font-size: 1.3rem; }
.btn-whatsapp-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
}
.contato-response { font-size: 0.75rem; color: var(--muted); }
.contato-response strong { color: var(--gold); }

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
}
.footer-note { color: var(--gold); font-size: 1.5rem; }
.footer-tagline { font-size: 0.8rem; color: var(--muted); margin-left: 0.3rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 10px; color: var(--muted); font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: var(--muted);
}
.footer-admin-link { color: var(--muted); transition: color var(--transition); opacity: 0.5; }
.footer-admin-link:hover { color: var(--gold); opacity: 1; }

/* ── SCROLL ANIMATIONS ────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────── */

/* Telas muito largas (>1440px) — reforça posição para não cortar o topo */
@media (min-width: 1440px) {
  .hero { background-position: 65% 8%; }
  .hero-text { max-width: 620px; }
}

@media (min-width: 1920px) {
  .hero { background-position: 60% 5%; }
  .hero-name { font-size: 10rem; }
}

/* Telas médias-grandes (1025px – 1280px) */
@media (max-width: 1280px) {
  .sobre-inner { gap: 3.5rem; }
  .contato-inner { gap: 3rem; }
}

/* Tablets grandes e laptops pequenos (769px – 1024px) */
@media (max-width: 1024px) {
  .hero-content { padding: 7rem 2rem 4rem; }
  .hero-text { max-width: 500px; }

  .sobre-inner { gap: 2.5rem; }
  .sobre-image-frame img { max-height: 380px; object-fit: cover; }

  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contato-card { min-width: unset; max-width: 460px; margin: 0 auto; width: 100%; }

  .agenda-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

/* Tablets (481px – 768px) */
@media (max-width: 768px) {
  /* Navegação mobile */
  .main-nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    background: rgba(8,8,16,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5.5rem 2rem 2rem;
    border-left: 1px solid var(--border-gold);
    gap: 0.2rem;
    z-index: 99;
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-link { padding: 0.75rem 0; width: 100%; font-size: 1rem; }
  .nav-cta { margin-top: 1rem; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; z-index: 200; position: relative; }

  /* Hero — centraliza para mostrar rosto em portrait */
  .hero { background-position: 50% 8%; }
  .hero-content { padding: 5.5rem 1.5rem 4rem; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-spotify { justify-content: center; }
  .hero-actions a { width: 100%; max-width: 320px; justify-content: center; }
  .hero-badge { margin: 0 auto 1rem; }

  /* Sobre */
  .sobre-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sobre-visual { order: -1; }
  .sobre-stats { gap: 1.5rem; justify-content: center; }
  .sobre-stats .stat-item { text-align: center; }

  /* Agenda */
  .agenda-grid { grid-template-columns: 1fr; }

  /* Contato */
  .contato-text .section-title { text-align: center; }
  .contato-list { grid-template-columns: 1fr; gap: 0.6rem; justify-items: start; }
  .contato-inner { text-align: center; }
  .contato-list { display: inline-flex; flex-direction: column; text-align: left; }

  /* Rodapé */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Smartphones (até 480px) */
@media (max-width: 480px) {
  .hero { background-position: 50% 5%; }
  .hero-content { padding: 5rem 1.2rem 3.5rem; }
  .hero-name { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-tagline { font-size: 1.05rem; }
  .hero-sub { font-size: 0.78rem; letter-spacing: 0.1em; }
  .btn-primary-hero, .btn-secondary-hero {
    padding: 0.85rem 1.4rem; font-size: 0.92rem; width: 100%; max-width: 320px;
  }

  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .section-container { padding: 0 1.2rem; }

  .sobre-stats { flex-direction: column; align-items: center; gap: 1.2rem; }
  .stat-number { font-size: 2rem; }

  .agenda-card { flex-direction: column; }
  .agenda-card-date {
    flex-direction: row; gap: 0.5rem; align-items: baseline;
    border-right: none; border-bottom: 1px solid var(--border-gold);
    padding: 0.9rem 1.2rem;
  }
  .agenda-card-cta { border-left: none; border-top: 1px solid var(--border); padding: 0.8rem 1.2rem; }

  .contato-card-inner { padding: 2rem 1.5rem; }
  .contato-phone { font-size: 1.8rem; }

  .logo-badge { width: 34px; height: 34px; font-size: 0.88rem; }
  .nav-logo-text { font-size: 1.1rem; }
}
