/* ============================================================
   WAGUINHO — Site Oficial
   Design: Dark Luxury Gospel | Cinemático | Premium
   ============================================================ */

/* ---------- RESET / TOKENS ---------- */
:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --bg-4: #1a1a1a;
  --gold: #f4a000;
  --gold-2: #ffb52e;
  --gold-soft: #f4a00033;
  --white: #ffffff;
  --gray: #b9b9b9;
  --gray-2: #8a8a8a;
  --gray-3: #333;
  --border: #1f1f1f;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --container: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-gold: 0 0 30px rgba(244, 160, 0, 0.25);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.5);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::-webkit-scrollbar { width: 8px; }
*::-webkit-scrollbar-track { background: var(--bg-2); }
*::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: all .3s var(--ease); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- TYPOGRAPHY ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.section-sub {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin: 8px 0 30px;
  text-transform: uppercase;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.label-line { width: 40px; height: 2px; background: var(--gold); }

.gold-line {
  width: 110px; height: 3px; background: var(--gold); margin: 20px 0;
  box-shadow: 0 0 14px rgba(244, 160, 0, 0.6);
}
.gold-line.short { width: 60px; height: 3px; margin-bottom: 14px; }

/* ---------- LOADER ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, #1a1208 0%, #050505 80%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; display: none !important; }
.loader-content {
  text-align: center;
  width: 100%;
  max-width: 90vw;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4rem);
  letter-spacing: clamp(2px, 1.5vw, 6px);
  color: var(--white);
  text-shadow: 0 0 30px rgba(244, 160, 0, 0.8);
  animation: pulse 1.6s ease-in-out infinite;
  white-space: nowrap;
}
.loader-bar {
  width: min(220px, 80%); height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 24px auto; overflow: hidden; border-radius: 2px;
}
.loader-bar span {
  display: block; width: 0; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 10px var(--gold);
  animation: load 1.6s ease-in-out forwards;
}
.loader-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem; color: var(--gold);
  opacity: 0; animation: fadein 1.8s ease 0.4s forwards;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes load { to { width: 100%; } }
@keyframes fadein { to { opacity: 1; } }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 3px;
  color: var(--white);
}
.brand-sub {
  font-family: var(--font-script);
  font-size: 0.85rem; color: var(--gold);
  margin-top: 2px;
}

.nav-menu ul {
  display: flex; gap: 28px; align-items: center;
}
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform .3s var(--ease);
  box-shadow: 0 0 8px rgba(244, 160, 0, 0.6);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.nav-socials {
  display: flex; gap: 12px; align-items: center;
}
.nav-socials a {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
}
.nav-socials a:hover {
  background: var(--gold); color: var(--bg);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; height: 32px;
  justify-content: center; align-items: center;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--gold);
  transition: all .3s var(--ease);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(244, 160, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(244, 160, 0, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-sm { padding: 8px 18px; font-size: 0.78rem; }
.btn-large { padding: 18px 40px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-photo {
  position: absolute; inset: 0;
  background: url('../assets/img/photo_hero.jpg') no-repeat;
  background-position: center right;
  background-size: cover;
  filter: brightness(1.02) saturate(1.05);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(244, 160, 0, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(244, 160, 0, 0.08) 0%, transparent 60%);
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(5,5,5,0.85) 25%, rgba(5,5,5,0.55) 50%, rgba(5,5,5,0.15) 80%, transparent 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, transparent 50%, rgba(5,5,5,0.6) 100%);
  z-index: 1;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 60%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 80px;
}
.hero-text { max-width: 700px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #f4f0e6 0%, #c9b88a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 6px 40px rgba(244, 160, 0, 0.25);
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 30px rgba(244, 160, 0, 0.3));
}
.hero-subtitle {
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 28px;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
}
.hero-quote {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.3;
  font-style: italic;
  opacity: 0.95;
}

.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-socials {
  display: flex; gap: 16px;
}
.hero-socials a {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero-socials a:hover {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px) scale(1.08);
}

.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--gold);
  border-radius: 13px;
  display: flex; justify-content: center;
  z-index: 3;
}
.scroll-indicator span {
  width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px; margin-top: 8px;
  animation: scroll-anim 1.6s var(--ease) infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- BIOGRAFIA ---------- */
.bio {
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #08070a 100%);
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.bio-text p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.bio-text strong { color: var(--white); }
.bio-more {
  max-height: 0; overflow: hidden;
  transition: max-height .6s var(--ease);
}
.bio-more.open { max-height: 500px; margin-top: 14px; }
.btn-toggle { margin-top: 16px; }
.btn-toggle.open i { transform: rotate(180deg); }
.btn-toggle i { transition: transform .3s; }

.bio-image {
  position: relative;
  height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
}
.bio-photo {
  position: absolute; inset: 0;
  background: url('../assets/img/photo_bio.jpg') center/cover no-repeat;
  transition: transform 1.2s var(--ease);
}
.bio-image:hover .bio-photo { transform: scale(1.05); }
.bio-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(244,160,0,0.0) 60%, rgba(244,160,0,0.18));
  z-index: 2; pointer-events: none;
}
.bio-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold-soft), transparent);
  filter: blur(40px);
  z-index: 1;
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: rgba(20,20,20,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
}
.stat:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.stat i {
  font-size: 2rem; color: var(--gold);
  border: 2px solid var(--gold); padding: 14px; border-radius: 50%;
}
.stat h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
}
.stat p {
  font-size: 0.78rem;
  color: var(--gray-2);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------- AGENDA ---------- */
.agenda {
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.agenda-bg {
  /* Foto principal do lado direito — painel grande como na referência */
  position: absolute; right: 0; top: 80px; bottom: 0;
  width: 55%;
  background: url('../assets/img/photo_agenda.jpg') no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  /* fade suave nas bordas pra fundir com o fundo escuro */
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
}
.agenda::after {
  /* vinheta nas bordas da foto pra fundir com o fundo */
  content: ''; position: absolute;
  right: 0; top: 80px; bottom: 0; width: 55%;
  background:
    linear-gradient(to bottom, transparent 70%, var(--bg) 100%),
    linear-gradient(to top, transparent 85%, rgba(5,5,5,0.6) 100%);
  z-index: 1; pointer-events: none;
}
.agenda::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 60%, rgba(244,160,0,0.1), transparent 60%);
  z-index: 0;
}
.agenda-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative; z-index: 1;
}
.agenda-content { max-width: 600px; }

.event-list {
  margin: 30px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px; align-items: center;
  padding: 18px 22px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(244,160,0,0.08), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.event-card:hover::before {
  transform: translateX(100%);
}
.event-card .event-date strong {
  display: inline-block;
  transition: transform .4s var(--ease);
}
.event-card:hover .event-date strong {
  transform: scale(1.15);
  color: var(--gold);
}
.event-card:hover {
  border-color: var(--gold);
  transform: translateX(8px);
  box-shadow: var(--shadow-gold);
}
.event-date {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 16px;
}
.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
}
.event-date span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
}
.event-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.event-info p {
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.4;
}
.event-city {
  margin-top: 4px;
  color: var(--gold) !important;
  font-weight: 500;
}
.event-city i { margin-right: 4px; }

/* coluna da imagem da agenda — ocupada pelo painel .agenda-bg.
   Mantém o slot do grid, mas sem renderizar imagem própria */
.agenda-image {
  position: relative;
  min-height: 600px;
  pointer-events: none;
}
.agenda-photo {
  display: none;  /* a foto fica no .agenda-bg agora */
}

.next-event {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 22px 26px;
  background: rgba(8,8,8,0.88);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(244,160,0,0.18), 0 -20px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(14px);
  position: relative; z-index: 3;
  animation: nextEventPulse 4s ease-in-out infinite;
}
@keyframes nextEventPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(244,160,0,0.18), 0 -20px 40px rgba(0,0,0,0.6); }
  50%      { box-shadow: 0 0 70px rgba(244,160,0,0.35), 0 -20px 40px rgba(0,0,0,0.6); }
}
.next-label {
  position: relative;
  display: inline-block;
}
.next-label::after {
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: liveDot 1.5s ease-in-out infinite;
}
@keyframes liveDot {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(0.8); }
  50%      { opacity: 1; transform: translateY(-50%) scale(1.4); box-shadow: 0 0 12px var(--gold); }
}
.next-event-img {
  height: 100px;
  background: url('../assets/img/photo_agenda.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: var(--radius-sm);
}
.next-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.78rem;
}
.next-event-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 6px 0 10px;
}
.next-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 0.88rem; color: var(--gray);
}
.next-meta i { color: var(--gold); margin-right: 6px; }

/* ---------- DISCOGRAFIA ---------- */
.discografia {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #08060a 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.discografia::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(244,160,0,0.08), transparent 50%);
}
.discografia .container { position: relative; z-index: 1; }

.disc-filters {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 50px;
}
.filter-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  transition: all .3s var(--ease);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}

.disc-cat-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
  margin: 40px 0 24px;
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.disc-cat-title i { color: var(--gold); }
.disc-cat-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-left: 16px;
}

.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.album-card {
  text-align: center;
  transition: all .4s var(--ease);
  cursor: pointer;
}
.album-card.hidden { display: none; }
.album-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform .5s var(--ease);
}
.album-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.album-cover:hover { transform: scale(1.04); }
.album-cover:hover::before { opacity: 1; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--bg);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-gold);
}
.album-cover:hover .play-btn {
  transform: translate(-50%, -50%) scale(1);
}
.album-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.album-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 1px;
}

.streaming-cta {
  margin-top: 60px;
  padding: 28px;
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  backdrop-filter: blur(10px);
}
.streaming-text {
  display: flex; align-items: center; gap: 18px;
}
.streaming-text i {
  font-size: 2.4rem; color: var(--gold);
}
.streaming-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
}
.streaming-text p { color: var(--gray-2); font-size: 0.9rem; }
.streaming-platforms {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.platform-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background: var(--bg-3);
  color: var(--white);
  transition: all .3s;
  border: 1px solid var(--border);
}
.platform-btn.spotify:hover { background: #1db954; border-color: #1db954; }
.platform-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }
.platform-btn.deezer:hover { background: #ef5466; border-color: #ef5466; }
.platform-btn.apple:hover { background: #fa233b; border-color: #fa233b; }
.platform-btn:hover { transform: translateY(-2px); }

/* ---------- MÍDIAS SOCIAIS ---------- */
.midias {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.midias-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/photo_redes.jpg') no-repeat;
  background-size: cover;
  background-position: left center;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to right, black 35%, rgba(0,0,0,0.4) 60%, transparent 95%);
  mask-image: linear-gradient(to right, black 35%, rgba(0,0,0,0.4) 60%, transparent 95%);
  animation: midiasKenBurns 24s ease-in-out infinite alternate;
}
@keyframes midiasKenBurns {
  0%   { background-position: 50% 50%; background-size: cover; }
  100% { background-position: 45% 48%; background-size: 110% auto; }
}

/* Partículas douradas flutuantes nas seções Mídias e Agenda */
.particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particles span {
  position: absolute;
  display: block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px rgba(244,160,0,0.8);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(110vh) translateX(0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { transform: translateY(50vh) translateX(20px) scale(1); opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) translateX(-15px) scale(0.4); opacity: 0; }
}
.particles span:nth-child(1)  { left: 5%;  width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0s;   }
.particles span:nth-child(2)  { left: 12%; width: 5px; height: 5px; animation-duration: 18s; animation-delay: 2s;   }
.particles span:nth-child(3)  { left: 22%; width: 2px; height: 2px; animation-duration: 11s; animation-delay: 4s;   }
.particles span:nth-child(4)  { left: 35%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 1s;   }
.particles span:nth-child(5)  { left: 48%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 5s;   }
.particles span:nth-child(6)  { left: 60%; width: 5px; height: 5px; animation-duration: 20s; animation-delay: 3s;   }
.particles span:nth-child(7)  { left: 72%; width: 2px; height: 2px; animation-duration: 12s; animation-delay: 6s;   }
.particles span:nth-child(8)  { left: 82%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: 0.5s; }
.particles span:nth-child(9)  { left: 90%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 4.5s; }
.particles span:nth-child(10) { left: 95%; width: 5px; height: 5px; animation-duration: 19s; animation-delay: 2.5s; }
.particles span:nth-child(11) { left: 18%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 7s;   }
.particles span:nth-child(12) { left: 55%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 8s;   }
.midias::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(244,160,0,0.12), transparent 60%);
}
.midias .container { position: relative; z-index: 1; }

.midias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.social-card {
  position: relative;
  padding: 36px 22px;
  background: rgba(15,15,15,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all .5s var(--ease);
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}
.social-card:nth-child(1) { animation-delay: 0s; }
.social-card:nth-child(2) { animation-delay: 1.5s; }
.social-card:nth-child(3) { animation-delay: 3s; }
.social-card:nth-child(4) { animation-delay: 4.5s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.social-card:hover {
  animation-play-state: paused;
}
.social-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center top, var(--g, transparent), transparent 60%);
  opacity: 0;
  transition: opacity .5s;
}
.social-card.insta { --g: rgba(225, 48, 108, 0.25); }
.social-card.yt { --g: rgba(255, 0, 0, 0.25); }
.social-card.fb { --g: rgba(24, 119, 242, 0.25); }
.social-card.sp { --g: rgba(29, 185, 84, 0.25); }
.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}
.social-card:hover::before { opacity: 1; }

.social-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: white;
  transition: transform .4s var(--ease);
}
.social-card:hover .social-icon { transform: scale(1.1); }
.social-card.insta .social-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-card.yt .social-icon { background: #ff0000; }
.social-card.fb .social-icon { background: #1877f2; }
.social-card.sp .social-icon { background: #1db954; }

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.social-handle {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.social-count {
  color: var(--gray-2);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  transition: all .3s;
}
.social-card:hover .social-btn {
  background: var(--gold); color: var(--bg);
}

.midias-cta {
  margin-top: 50px;
  padding: 28px;
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  box-shadow: 0 0 40px rgba(244, 160, 0, 0.12);
}
.midias-cta i {
  font-size: 2.4rem; color: var(--gold);
  border: 2px solid var(--gold);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.midias-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.midias-cta p { color: var(--gray); }
.signature {
  font-family: var(--font-script);
  font-size: 2rem; color: var(--gold);
  text-shadow: 0 0 18px rgba(244,160,0,0.5);
}

/* ---------- LOJA ---------- */
.loja {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.loja-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/photo_loja.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 70%, transparent 100%);
  filter: brightness(0.95) contrast(1.05);
  animation: lojaKenBurns 22s ease-in-out infinite alternate;
}
@keyframes lojaKenBurns {
  0%   { background-position: 50% 50%; transform: scale(1); }
  100% { background-position: 55% 48%; transform: scale(1.04); }
}
.loja .container { position: relative; z-index: 1; }
.loja-header { max-width: 600px; margin-bottom: 40px; }
.loja-desc { color: var(--gray); max-width: 480px; margin-top: 16px; }

.loja-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.loja-grid.loja-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.product-sub {
  color: var(--gray-2);
  font-size: 0.82rem;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-img.product-img-contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f7f5f0;
  height: 320px;
}
.product-card {
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: all .4s var(--ease);
  backdrop-filter: blur(8px);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.product-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: transform .5s;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.btn-buy { width: 100%; justify-content: center; padding: 10px; font-size: 0.78rem; }

.loja-features {
  padding: 24px;
  background: rgba(15,15,15,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  display: flex; align-items: center; gap: 14px;
}
.feature i {
  font-size: 1.8rem;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px;
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature h4 {
  font-size: 0.92rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}
.feature p {
  font-size: 0.78rem;
  color: var(--gray-2);
}

/* ---------- CONTATO ---------- */
.contato {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #06060a 100%);
  position: relative;
}
.contato::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(244,160,0,0.08), transparent 60%);
}
.contato .container { position: relative; z-index: 1; }

.contato-centered {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contato-header {
  text-align: center;
  margin-bottom: 36px;
  width: 100%;
}
.contato-header .section-title {
  text-align: center;
}
.contato-header .section-sub {
  text-align: center;
}
.contato-form-wrap {
  width: 100%;
}

.contact-list {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
}
.contact-list i {
  width: 50px; height: 50px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  color: var(--gold);
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.contact-list a, .contact-list span {
  color: var(--white);
  font-size: 0.95rem;
}
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: rgba(15,15,15,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.contact-form h3 {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.form-group {
  position: relative;
  margin-bottom: 16px;
}
.form-group i {
  position: absolute;
  left: 16px; top: 18px;
  color: var(--gray-2);
  font-size: 1rem;
  pointer-events: none;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(244, 160, 0, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-2);
}
.form-message {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  min-height: 20px;
}
.form-message.success { color: #4caf50; }
.form-message.error { color: #f44336; }

.booking-cta {
  margin-top: 50px;
  padding: 24px 28px;
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  box-shadow: 0 0 40px rgba(244,160,0,0.15);
}
.booking-cta > i {
  font-size: 2.2rem;
  color: var(--gold);
  border: 2px solid var(--gold);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.booking-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.booking-text p { color: var(--gray); font-size: 0.92rem; margin-top: 4px; }

/* ---------- MIDIAKIT ---------- */
.midiakit {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #08060a 0%, var(--bg) 50%, #100a04 100%);
}
.midiakit-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/photo_midiakit.jpg') no-repeat;
  background-size: cover;
  background-position: 65% 35%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to left, black 55%, rgba(0,0,0,0.5) 80%, transparent 100%);
  mask-image: linear-gradient(to left, black 55%, rgba(0,0,0,0.5) 80%, transparent 100%);
  filter: brightness(0.95);
  animation: midiakitKenBurns 26s ease-in-out infinite alternate;
}
@keyframes midiakitKenBurns {
  0%   { background-position: 65% 35%; background-size: cover; }
  100% { background-position: 62% 32%; background-size: 108% auto; }
}
.midiakit::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(244,160,0,0.15), transparent 60%);
}
.midiakit-grid {
  display: block;
  max-width: 700px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.midiakit-sub {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin: 8px 0 30px;
}
.lock-icon {
  width: 100px; height: 100px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 30px;
  font-size: 2.4rem;
  color: var(--gold);
  box-shadow: 0 0 40px rgba(244, 160, 0, 0.35);
  animation: lockPulse 2.5s ease-in-out infinite;
}
@keyframes lockPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(244, 160, 0, 0.3); }
  50% { box-shadow: 0 0 60px rgba(244, 160, 0, 0.6); }
}
.midiakit-desc { color: var(--gray); margin-bottom: 24px; max-width: 380px; }
.midiakit-form { max-width: 400px; }
.midiakit-message {
  margin-top: 12px; text-align: center; font-size: 0.92rem;
  min-height: 22px;
}
.midiakit-message.error { color: #f44336; }
.midiakit-message.success { color: #4caf50; }

.midiakit-content {
  display: none;
  margin-top: 30px;
  padding: 24px;
  background: rgba(15,15,15,0.8);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  animation: fadein .6s ease;
}
.midiakit-content.show { display: block; }
.midiakit-content h3 {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.midiakit-downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.download-card {
  display: flex; flex-direction: column;
  padding: 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .3s;
}
.download-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.download-card i {
  font-size: 1.8rem; color: var(--gold); margin-bottom: 8px;
}
.download-card span { font-weight: 600; font-size: 0.92rem; }
.download-card small { color: var(--gray-2); font-size: 0.78rem; margin-top: 2px; }

.midiakit-right {
  height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.midiakit-photo {
  width: 100%; height: 100%;
  background: url('../assets/img/photo_midiakit.jpg') center/contain no-repeat;
  filter: drop-shadow(0 0 40px rgba(244, 160, 0, 0.25));
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  padding: 60px 0;
  background: linear-gradient(135deg, #100a04, var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; align-items: center;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.newsletter p { color: var(--gray); margin-top: 6px; }
.newsletter-form {
  display: flex; gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: inherit;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 4px;
  color: var(--white);
}
.footer-tag {
  font-family: var(--font-script);
  color: var(--gold);
  margin: 6px 0 16px;
  font-size: 1.05rem;
}
.footer-quote {
  color: var(--gray-2);
  font-style: italic;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.footer-socials {
  display: flex; gap: 10px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--bg);
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--gray);
  font-size: 0.92rem;
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 10px;
}
.footer-contact i { color: var(--gold); width: 16px; }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray-2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom i { color: #ff4757; }
.cl55 {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: text-shadow .3s;
}
.cl55:hover { text-shadow: 0 0 12px rgba(244,160,0,0.6); }

/* ---------- AGENDA MODAIS ---------- */
.event-modal, .agenda-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.event-modal.open, .agenda-modal.open {
  display: flex; animation: modalFade .3s var(--ease);
}
.event-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.event-modal-content, .agenda-modal-content {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0,0,0,0.8), 0 0 80px rgba(244,160,0,0.18);
  animation: modalUp .4s var(--ease);
  max-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.event-modal-content { max-width: 720px; }
.agenda-modal-content { max-width: 900px; }
.event-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.event-close:hover {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold); transform: rotate(90deg);
}

/* ===== EVENT MODAL DETAIL ===== */
.event-modal-body {
  overflow-y: auto;
}
.event-modal-banner {
  background:
    linear-gradient(135deg, rgba(244,160,0,0.15) 0%, rgba(244,160,0,0.04) 100%),
    radial-gradient(ellipse at center, rgba(244,160,0,0.18), transparent 70%);
  padding: 40px 36px 30px;
  border-bottom: 1px solid rgba(244,160,0,0.2);
  display: flex; justify-content: space-between; align-items: center;
}
.event-modal-type {
  background: var(--gold); color: var(--bg);
  padding: 6px 14px; border-radius: 4px;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
}
.event-modal-date-big {
  text-align: center; line-height: 1;
}
.event-modal-date-big strong {
  font-family: var(--font-display);
  font-size: 3.5rem; color: var(--white);
  display: block;
}
.event-modal-date-big span {
  font-size: 0.85rem; letter-spacing: 3px;
  color: var(--gold); font-weight: 700;
}
.event-modal-info { padding: 30px 36px 36px; }
.event-modal-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 2px; line-height: 1.1;
  margin-bottom: 6px;
}
.event-modal-sub {
  color: var(--gold);
  font-weight: 600; letter-spacing: 1.5px;
  font-size: 0.92rem; margin-bottom: 26px;
}
.event-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
.event-modal-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.event-modal-item-full { grid-column: 1/-1; }
.event-modal-item i {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.event-modal-item strong {
  display: block;
  color: var(--gold);
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  margin-bottom: 4px;
}
.event-modal-item span {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.4;
}
.event-modal-desc {
  padding: 22px;
  background: rgba(15,15,15,0.6);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.event-modal-desc h4 {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.event-modal-desc p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}
.event-modal-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.event-modal-actions .btn {
  flex: 1; min-width: 200px;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.78rem;
}

/* ===== AGENDA COMPLETA MODAL ===== */
.agenda-modal-head {
  padding: 28px 36px 22px;
  border-bottom: 1px solid var(--border);
}
.agenda-modal-title {
  display: flex; align-items: center; gap: 18px;
}
.agenda-modal-title i {
  width: 56px; height: 56px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.agenda-modal-title h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
}
.agenda-modal-title p {
  color: var(--gray); margin-top: 2px;
}
.agenda-modal-body {
  overflow-y: auto;
  padding: 20px 36px 36px;
}
.agenda-month-group {
  margin-bottom: 30px;
}
.agenda-month-group:last-child { margin-bottom: 0; }
.agenda-month-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(244,160,0,0.25);
}
.agenda-month-events {
  display: flex; flex-direction: column; gap: 12px;
}
.agenda-event-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(20,20,20,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.agenda-event-row:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  background: rgba(244,160,0,0.05);
}
.agenda-event-date {
  text-align: center;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}
.agenda-event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; line-height: 1;
}
.agenda-event-date span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
}
.agenda-event-tag {
  display: inline-block;
  background: rgba(244,160,0,0.15);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.agenda-event-info h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.agenda-event-info p {
  font-size: 0.82rem;
  color: var(--gray-2);
  line-height: 1.4;
}
.agenda-event-info p i { color: var(--gold); margin-right: 4px; }
.agenda-event-info p i:not(:first-of-type) { margin-left: 8px; }
.agenda-event-city {
  color: var(--gold) !important;
  margin-top: 4px !important;
  font-weight: 500;
}
.agenda-event-row .btn-sm {
  font-size: 0.72rem;
  padding: 8px 14px;
}

/* ---------- SPOTIFY MODAL PLAYER ---------- */
.spotify-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.spotify-modal.open { display: flex; animation: modalFade 0.3s var(--ease); }
@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.spotify-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.spotify-modal-content {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.8), 0 0 60px rgba(244,160,0,0.15);
  animation: modalUp 0.4s var(--ease);
}
@keyframes modalUp {
  from { transform: translateY(40px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.spotify-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.spotify-close:hover {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold);
  transform: rotate(90deg);
}
.spotify-modal-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  padding-right: 50px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.spotify-modal-header i {
  font-size: 1.6rem; color: #1db954;
}
.spotify-embed-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
}
.spotify-embed-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
}

/* Spotify badge sobre a capa */
.album-spotify-link {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #1db954;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  opacity: 0;
  transition: all .3s var(--ease);
  z-index: 2;
  text-decoration: none;
}
.album-cover:hover .album-spotify-link {
  opacity: 1;
}
.album-spotify-link:hover {
  background: #1db954; color: white;
  transform: scale(1.08);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: floatBob 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- MINI PLAYER ---------- */
.mini-player {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 320px;
  background: rgba(15,15,15,0.95);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 998;
  box-shadow: var(--shadow-gold);
  backdrop-filter: blur(12px);
  animation: slideUp .6s var(--ease);
}
.mini-player.show { display: flex; }
@keyframes slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mp-cover {
  width: 48px; height: 48px;
  background-size: cover; background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
  animation: spin 8s linear infinite paused;
}
.mini-player.playing .mp-cover { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }
.mp-info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.mp-info strong { font-size: 0.85rem; font-weight: 600; }
.mp-info span { font-size: 0.7rem; color: var(--gold); }
.mp-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.85rem;
}
.mp-close {
  color: var(--gray-2);
  font-size: 0.85rem;
}
.mp-close:hover { color: var(--white); }

/* ---------- RESPONSIVE ---------- */
/* =================== RESPONSIVIDADE MOBILE OTIMIZADA =================== */

/* ===== TABLET (até 1100px) ===== */
@media (max-width: 1100px) {
  .nav-menu ul { gap: 18px; }
  .nav-menu .nav-link { font-size: 0.85rem; }
  .nav-socials { display: none; }
  .bio-grid, .agenda-grid, .midiakit-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-image { height: 450px; }
  .agenda-image, .midiakit-right { display: none; }
  .bio-stats { grid-template-columns: repeat(2, 1fr); }
  .midias-grid, .loja-grid { grid-template-columns: repeat(2, 1fr); }
  .loja-features { grid-template-columns: repeat(2, 1fr); }
  .next-event, .midias-cta, .booking-cta { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .midias-cta i, .booking-cta > i { margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .streaming-cta { grid-template-columns: 1fr; }
  .contato-left { display: block; }
}

/* ===== MOBILE (até 768px) — REFINADO ===== */
@media (max-width: 768px) {
  /* ===== NAVBAR ===== */
  .navbar { padding: 12px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .nav-inner { gap: 12px; }
  .brand-name { font-size: 1.5rem; letter-spacing: 2.5px; }
  .brand-sub { font-size: 0.7rem; }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center; justify-content: center;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu ul {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }
  .nav-menu ul li .nav-link {
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: 3px;
  }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }

  /* ===== HERO ===== */
  .hero { min-height: 92vh; padding: 90px 0 50px; }
  .hero-photo {
    background-position: 75% center;
    background-size: cover;
    opacity: 0.55;
  }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(5,5,5,0.45) 0%, rgba(5,5,5,0.88) 65%, var(--bg) 100%),
      linear-gradient(to right, rgba(5,5,5,0.75), rgba(5,5,5,0.55));
  }
  .hero-title { letter-spacing: 2px; line-height: 0.92; }
  .hero-subtitle { letter-spacing: 4px; }
  .hero-quote { margin-bottom: 30px; line-height: 1.35; }

  /* ===== SECTIONS — padding mais enxuto ===== */
  .bio, .agenda, .discografia, .midias, .loja, .contato, .midiakit {
    padding: 60px 0 50px;
  }

  /* ===== BIOGRAFIA ===== */
  .bio-image { height: 360px; }
  .bio-stats { grid-template-columns: 1fr; gap: 12px; }
  .stat { padding: 16px; }
  .stat i { font-size: 1.6rem; padding: 12px; }
  .stat h3 { font-size: 1.3rem; }

  /* ===== AGENDA ===== */
  .agenda-grid { gap: 28px; }
  .agenda-bg { opacity: 0.18; }
  .event-card {
    grid-template-columns: 60px 1fr;
    gap: 14px; padding: 14px 16px;
    grid-template-areas:
      "date info"
      "btn  btn";
  }
  .event-date { grid-area: date; padding-right: 12px; }
  .event-date strong { font-size: 2rem; }
  .event-info { grid-area: info; min-width: 0; }
  .event-info h3 { font-size: 1rem; line-height: 1.25; }
  .event-info p { font-size: 0.8rem; }
  .event-card .btn-sm {
    grid-area: btn;
    justify-self: stretch;
    text-align: center; justify-content: center;
    margin-top: 4px;
  }

  .next-event {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    text-align: center;
  }
  .next-event-img {
    width: 100%;
    height: 180px;
    background-size: cover;
  }
  .next-event-info h3 { font-size: 1.6rem; }
  .next-meta {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .next-event > .btn { width: 100%; justify-content: center; }

  /* Discografia */
  .disc-filters { gap: 8px; margin: 20px 0 30px; }
  .filter-btn { padding: 10px 16px; font-size: 0.78rem; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .disc-cat-title { font-size: 1.2rem; margin: 24px 0 16px; }
  .album-card h4 { font-size: 0.85rem; line-height: 1.2; }
  .album-card span { font-size: 0.72rem; }
  .play-btn { width: 48px; height: 48px; font-size: 0.95rem; }
  .streaming-cta { padding: 20px; gap: 20px; }
  .streaming-text { flex-direction: column; text-align: center; gap: 12px; }
  .streaming-text h3 { font-size: 1.1rem; }
  .streaming-platforms { justify-content: center; }
  .platform-btn { padding: 10px 14px; font-size: 0.75rem; }

  /* Mídias Sociais */
  .midias-bg { display: none; }
  .midias-grid { grid-template-columns: 1fr; gap: 16px; }
  .social-card { padding: 24px 18px; }
  .social-icon { width: 64px; height: 64px; font-size: 2rem; margin-bottom: 14px; }
  .social-card h3 { font-size: 1.3rem; }

  /* Loja */
  .loja-bg { display: none; }
  .loja-header { text-align: center; }
  .loja-header .gold-line.short { margin: 0 auto 14px; }
  .loja-desc { margin: 16px auto 0; }
  .loja-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card { padding: 12px; }
  .product-img.product-img-contain { height: 220px; }
  .product-card h3 { font-size: 0.92rem; line-height: 1.2; }
  .product-sub { font-size: 0.74rem; }
  .price { font-size: 1rem; }
  .btn-buy { padding: 9px; font-size: 0.72rem; letter-spacing: 1px; }
  .loja-features { grid-template-columns: 1fr; gap: 16px; padding: 18px; }

  /* Contato */
  .contato-centered { padding: 0; }
  .contact-form { padding: 22px; }
  .contact-form h3 { font-size: 0.92rem; }
  .form-group input,
  .form-group textarea { padding: 14px 14px 14px 44px; font-size: 0.92rem; }
  .form-group i { left: 14px; top: 16px; font-size: 0.9rem; }

  /* Midia Kit */
  .midiakit-bg { opacity: 0.25; }
  .midiakit-right { display: none; }
  .midiakit-grid { padding: 0 4px; }
  .lock-icon { width: 80px; height: 80px; font-size: 2rem; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding-bottom: 30px;
  }
  .footer-brand { font-size: 1.8rem; }
  .footer-socials { justify-content: center; }
  .footer-col ul { padding: 0; }
  .footer-contact li { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 18px 0;
  }

  /* Floating */
  .whatsapp-float {
    bottom: 20px; right: 20px;
    width: 52px; height: 52px;
    font-size: 1.6rem;
  }

  /* Modais */
  .event-modal, .agenda-modal, .spotify-modal { padding: 10px; }
  .event-modal-content, .agenda-modal-content { max-height: 95vh; }
  .event-modal-banner { padding: 22px 18px 18px; flex-direction: column; gap: 14px; align-items: flex-start; }
  .event-modal-date-big { align-self: flex-end; margin-top: -56px; }
  .event-modal-date-big strong { font-size: 2.6rem; }
  .event-modal-info { padding: 20px; }
  .event-modal-info h2 { font-size: 1.5rem; line-height: 1.2; }
  .event-modal-sub { font-size: 0.82rem; margin-bottom: 18px; }
  .event-modal-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 18px; }
  .event-modal-item { padding: 12px; }
  .event-modal-item i { width: 36px; height: 36px; font-size: 0.92rem; }
  .event-modal-item span { font-size: 0.88rem; }
  .event-modal-desc { padding: 16px; margin-bottom: 18px; }
  .event-modal-desc p { font-size: 0.88rem; }
  .event-modal-actions { flex-direction: column; gap: 8px; }
  .event-modal-actions .btn { min-width: 100%; padding: 12px; font-size: 0.72rem; }
  .agenda-modal-head { padding: 22px 18px 16px; }
  .agenda-modal-title { gap: 14px; }
  .agenda-modal-title i { width: 44px; height: 44px; font-size: 1.2rem; }
  .agenda-modal-title h3 { font-size: 1.3rem; }
  .agenda-modal-body { padding: 16px 18px 24px; }
  .agenda-month-title { font-size: 1.1rem; }
  .agenda-event-row { grid-template-columns: 56px 1fr; gap: 12px; padding: 12px; }
  .agenda-event-row .btn-sm { grid-column: 1/-1; margin-top: 6px; justify-content: center; }
  .agenda-event-info h5 { font-size: 0.94rem; }
  .agenda-event-info p { font-size: 0.76rem; }
  .spotify-modal-content { padding: 16px; max-height: 85vh; }
  .spotify-modal-header { font-size: 0.78rem; padding-right: 44px; }
  .event-close { width: 32px; height: 32px; top: 10px; right: 10px; }
}

/* ===== MOBILE PEQUENO (até 480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .nav-inner { gap: 8px; }
  .brand-name { font-size: 1.3rem; letter-spacing: 2px; }
  .brand-sub { display: none; }
  .nav-toggle { width: 28px; height: 28px; }

  .hero { padding: 80px 0 40px; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero-subtitle { font-size: 0.78rem; letter-spacing: 3px; }
  .hero-quote { font-size: 1.2rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-buttons .btn { justify-content: center; padding: 13px 24px; font-size: 0.82rem; }
  .hero-socials { gap: 12px; }
  .hero-socials a { width: 42px; height: 42px; font-size: 1rem; }

  .section-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .section-sub { font-size: 0.78rem; letter-spacing: 2px; margin: 6px 0 22px; }

  .disc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .album-card h4 { font-size: 0.78rem; }
  .filter-btn { padding: 9px 12px; font-size: 0.7rem; }

  .loja-grid { grid-template-columns: 1fr; }
  .product-img.product-img-contain { height: 280px; }

  .next-event { padding: 14px; }
  .next-event-img { height: 150px; }
  .next-event-info h3 { font-size: 1.3rem; }

  .stat { padding: 14px; gap: 12px; }
  .stat i { font-size: 1.4rem; padding: 10px; }
  .stat h3 { font-size: 1.15rem; }
  .stat p { font-size: 0.7rem; }

  .contact-form { padding: 18px; }
  .form-group input, .form-group textarea { padding: 12px 12px 12px 40px; font-size: 0.88rem; }

  .event-modal-banner { padding: 18px 14px 14px; }
  .event-modal-info { padding: 16px; }
  .event-modal-info h2 { font-size: 1.3rem; }
  .event-modal-date-big strong { font-size: 2.2rem; }
  .agenda-event-row { padding: 10px; }
  .agenda-event-date strong { font-size: 1.6rem; }

  .footer-brand { font-size: 1.6rem; }
  .footer-bottom p { font-size: 0.78rem; }
}

/* ===== ULTRA PEQUENO (até 360px) ===== */
@media (max-width: 360px) {
  .hero-title { font-size: 3.2rem; letter-spacing: 1px; }
  .hero-quote { font-size: 1.05rem; }
  .section-title { font-size: 1.8rem; }
  .product-img.product-img-contain { height: 240px; }
  .nav-menu ul li .nav-link { font-size: 1.5rem; }
}

/* ===== SAFE AREAS (iPhone notch) ===== */
@supports (padding: env(safe-area-inset-bottom)) {
  .whatsapp-float { bottom: calc(20px + env(safe-area-inset-bottom)); }
  .navbar { padding-top: calc(12px + env(safe-area-inset-top)); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .particles { display: none; }
}

/* ===== TOUCH DEVICES — botões sempre visíveis ===== */
@media (hover: none) and (pointer: coarse) {
  .album-cover .play-btn {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.92;
  }
  .album-cover .album-spotify-link { opacity: 0.9; }
}
