/* ============================================================
   NOAH TEIXEIRA — WEBSITE OFICIAL
   Design: Framer-inspired Gospel Style
   Versão: 1.0
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cinzel+Decorative:wght@400;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap");

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0e0e0e;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --gold: #c9a84c;
  --gold-light: #e8c872;
  --gold-lighter: #f5e09a;
  --gold-dark: #8a6e2a;
  --gold-gradient: linear-gradient(135deg, #8a6e2a 0%, #c9a84c 30%, #f5e09a 60%, #c9a84c 80%, #8a6e2a 100%);
  --gold-gradient-h: linear-gradient(90deg, #8a6e2a 0%, #c9a84c 30%, #f5e09a 60%, #c9a84c 80%, #8a6e2a 100%);
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray-100: #e4e4e4;
  --gray-400: #888888;
  --gray-600: #444444;
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-gold-h: rgba(201, 168, 76, 0.7);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.18);
  --shadow-gold-lg: 0 20px 80px rgba(201, 168, 76, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Links */
a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.text-gold {
  background: var(--gold-gradient-h);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold-solid {
  color: var(--gold);
}
.text-gray {
  color: var(--gray-400);
}
.text-off-white {
  color: var(--off-white);
}

.section-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-gradient-h);
}
.section-divider i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
section {
  padding: 2rem 0;
  position: relative;
}
.section-dark {
  background: var(--bg-primary);
}
.section-darker {
  background: var(--bg-secondary);
}
.overflow-x-hidden {
  overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition-slow);
}
#navbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
#navbar.scrolled .navbar-brand img {
  height: 38px;
  width: auto;
}

.navbar-nav .nav-link {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-gradient-h);
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-toggler {
  border: 1px solid var(--border-gold);
  padding: 0.4rem 0.6rem;
  border-radius: 0;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold > html {
  scroll-behavior: smooth;
}

* {
  position: relative;
  z-index: 1;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  background-size: 200% auto;
  opacity: 0;
  transition: var(--transition);
}
.btn-gold:hover {
  color: var(--bg-primary);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold-fill {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: var(--bg-primary);
  border-color: transparent;
  animation: shimmer 4s linear infinite;
}
.btn-gold-fill::before {
  background: linear-gradient(135deg, #f5e09a, #c9a84c, #f5e09a);
}
.btn-gold-fill:hover {
  box-shadow: var(--shadow-gold-lg);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
  }
  50% {
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.45);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes musicBar {
  from {
    transform: scaleY(0.3);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: var(--op, 0.5);
  }
  90% {
    opacity: var(--op, 0.5);
  }
  100% {
    transform: translateY(-10vh) translateX(var(--drift, 40px));
    opacity: 0;
  }
}
@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  animation: heroSlide 18s infinite;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero-slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  animation-delay: 6s;
}
.hero-slide:nth-child(3) {
  animation-delay: 12s;
}
#hero.loaded .hero-slide {
  transform: scale(1);
}
@keyframes heroSlide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.22) 100%);
}
.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 0.8s ease 0.3s both;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-title .line-1 {
  display: block;
  color: var(--white);
}
.hero-title .line-2 {
  display: block;
  background: var(--gold-gradient-h);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--gray-100);
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.7s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.9s both;
}
.hero-stat {
  text-align: left;
}
.hero-stat-number {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-gradient-h);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero-stat-sep {
  width: 1px;
  background: var(--border-gold);
  align-self: stretch;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 1.1s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-400);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}
.hero-scroll i {
  font-size: 1.1rem;
  color: var(--gold);
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: float var(--dur, 10s) linear infinite;
  opacity: 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}
.card-dark:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 168, 76, 0.55);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.card-dark:hover::before {
  opacity: 1;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.about-img-wrap:hover img {
  filter: grayscale(0%) contrast(1.1);
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-gold);
  animation: glowPulse 3s ease infinite;
}
.about-badge-year {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--bg-primary);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--bg-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

/* Verse block */
.verse-block {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  position: relative;
  margin: 2rem 0;
}
.verse-block::before {
  content: '"';
  font-family: "Cinzel Decorative", serif;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.08);
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  line-height: 1;
  pointer-events: none;
}
.verse-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--off-white);
  position: relative;
  z-index: 1;
}
.verse-ref {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.5rem;
  display: block;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(3px);
  transform: scale(1.05);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
}
.page-banner-content {
  position: relative;
  z-index: 1;
}
.page-banner-content .breadcrumb-nav {
  justify-content: center;
}
.page-banner-content .section-label {
  justify-content: center;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.breadcrumb-nav a {
  color: var(--gold);
}
.breadcrumb-nav a:hover {
  text-decoration: underline;
}
.breadcrumb-nav i {
  font-size: 0.5rem;
  color: var(--gold-dark);
}

/* ============================================================
   MUSIC / TRACK LIST (Spotify style)
   ============================================================ */
.spotify-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.track-item:hover {
  background: var(--glass);
}
.track-item.playing {
  background: rgba(201, 168, 76, 0.07);
}

.track-num {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  color: var(--gray-400);
  min-width: 22px;
  text-align: center;
}
.track-item:hover .track-num,
.track-item.playing .track-num {
  display: none;
}
.track-play-icon {
  display: none;
  color: var(--gold);
  min-width: 22px;
  text-align: center;
  font-size: 0.9rem;
}
.track-item:hover .track-play-icon,
.track-item.playing .track-play-icon {
  display: block;
}

.track-bars {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  min-width: 22px;
}
.track-item.playing .track-bars {
  display: flex;
}
.track-item.playing .track-play-icon {
  display: none;
}
.track-item.playing .track-num {
  display: none;
}

.bar {
  width: 3px;
  background: var(--gold);
  border-radius: 1px;
  animation: musicBar 0.7s ease infinite alternate;
}
.bar:nth-child(1) {
  height: 6px;
  animation-delay: 0s;
}
.bar:nth-child(2) {
  height: 12px;
  animation-delay: 0.15s;
}
.bar:nth-child(3) {
  height: 8px;
  animation-delay: 0.05s;
}
.bar:nth-child(4) {
  height: 14px;
  animation-delay: 0.2s;
}

.track-info {
  flex: 1;
  min-width: 0;
}
.track-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition);
}
.track-item:hover .track-name,
.track-item.playing .track-name {
  color: var(--gold-light);
}
.track-album {
  font-size: 0.76rem;
  color: var(--gray-400);
}
.track-dur {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  color: var(--gray-400);
  white-space: nowrap;
}
.track-actions {
  display: flex;
  gap: 0.5rem;
}
.track-link {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}
.track-link:hover {
  color: var(--gold-light);
  transform: scale(1.2);
}

/* ============================================================
   CLIPES / VIDEOS
   ============================================================ */
.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  display: block;
}
.video-card:hover .video-thumb img {
  transform: scale(1.06);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.video-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bg-primary);
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
}
.video-card:hover .video-play-icon {
  background: var(--gold-light);
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(201, 168, 76, 0.15);
}
.video-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}
.video-info {
  padding: 1rem 1.1rem 1.2rem;
}
.video-title {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.3rem;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card:hover .video-title {
  color: var(--gold-light);
}
.video-meta {
  font-size: 0.72rem;
  color: var(--gray-400);
}

/* Video Modal */
.modal-dark .modal-content {
  background: #000;
  border: 1px solid var(--border-gold);
  border-radius: 0;
}
.modal-dark .modal-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
}
.modal-dark .modal-title {
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.modal-dark .btn-close {
  filter: invert(1);
  opacity: 0.6;
}
.modal-dark .btn-close:hover {
  opacity: 1;
}
.modal-dark .modal-body {
  padding: 0;
}
.video-modal-frame {
  aspect-ratio: 16/9;
  width: 100%;
}
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border-gold);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i {
  font-size: 2rem;
  color: var(--gold);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ============================================================
   SOCIAL / REDES
   ============================================================ */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}
.social-card:hover::before {
  opacity: 1;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 168, 76, 0.6);
}
.social-icon {
  font-size: 3rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.social-card:hover .social-icon {
  transform: scale(1.12);
}
.social-name {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.social-handle {
  font-size: 0.75rem;
  color: var(--gray-400);
  position: relative;
  z-index: 1;
}
.social-followers {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gold-gradient-h);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Platform-specific backgrounds */
.social-card.yt::before {
  background: rgba(255, 0, 0, 0.07);
}
.social-card.sp::before {
  background: rgba(29, 185, 84, 0.07);
}
.social-card.ig::before {
  background: rgba(225, 48, 108, 0.07);
}
.social-card.tt::before {
  background: rgba(105, 201, 208, 0.07);
}
.social-card.kw::before {
  background: rgba(255, 165, 0, 0.07);
}
.social-card.dz::before {
  background: rgba(254, 170, 45, 0.07);
}
.social-card.am::before {
  background: rgba(255, 153, 0, 0.07);
}

.social-card.yt .social-icon {
  color: #ff3e3e;
}
.social-card.sp .social-icon {
  color: #1db954;
}
.social-card.ig .social-icon {
  color: #e1306c;
}
.social-card.tt .social-icon {
  color: #69c9d0;
}
.social-card.kw .social-icon {
  color: #ff8c00;
}
.social-card.dz .social-icon {
  color: #feaa2d;
}
.social-card.am .social-icon {
  color: #ff9900;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-dark .form-control,
.form-dark .form-select,
.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--white);
  border-radius: 0;
  padding: 0.85rem 1.1rem;
  font-family: "Raleway", sans-serif;
  transition: var(--transition);
}
.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.12);
  outline: none;
}
.form-dark .form-control::placeholder {
  color: var(--gray-600);
}
.form-dark label {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.form-dark option {
  background: var(--bg-card);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.contact-info-card:hover {
  border-color: rgba(201, 168, 76, 0.6);
  background: var(--bg-card-hover);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-card:hover .contact-icon {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Alert success custom */
.alert-gold {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  border-radius: 0;
  padding: 1rem 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #000;
  border-top: 1px solid var(--border-gold);
  padding: 5rem 0 2rem;
}
.footer-logo img {
  height: 128px;
  margin-bottom: 1.5rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.85;
  max-width: 280px;
}

.footer-heading {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold-gradient-h);
}

.footer-menu {
  list-style: none;
  padding: 0;
}
.footer-menu li {
  margin-bottom: 0.65rem;
}
.footer-menu a {
  font-size: 0.88rem;
  color: var(--gray-400);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.footer-menu a::before {
  content: "›";
  color: var(--gold);
  font-size: 1rem;
}
.footer-menu a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 3.5rem;
  padding-top: 2rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin: 0;
}
.footer-bottom span {
  color: var(--gold);
}
.footer-bottom a {
  color: var(--gray-400);
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* Floating contact button */
.fab-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  animation: glowPulse 3s ease infinite;
}
.fab-contact:hover {
  transform: scale(1.12) translateY(-3px);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold-lg);
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 2.5rem 0;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-number {
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gold-gradient-h);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.stat-sep {
  border-left: 1px solid var(--border-gold);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   PLATFORM BADGES
   ============================================================ */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid;
  white-space: nowrap;
}
.platform-badge:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.2);
}
.platform-badge.sp {
  border-color: #1db954;
  color: #1db954;
  background: rgba(29, 185, 84, 0.08);
}
.platform-badge.yt {
  border-color: #ff3e3e;
  color: #ff3e3e;
  background: rgba(255, 62, 62, 0.08);
}
.platform-badge.am {
  border-color: #ff9900;
  color: #ff9900;
  background: rgba(255, 153, 0, 0.08);
}
.platform-badge.dz {
  border-color: #ef5466;
  color: #ef5466;
  background: rgba(239, 84, 102, 0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(24px);
    padding: 1.5rem;
    border: 1px solid var(--border-gold);
    margin-top: 0.75rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3.5rem 0;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-gold {
    width: 100%;
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  .hero-stat-sep {
    display: none;
  }
  .fab-contact {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
