/* ==========================================================================
   COACH SANDRO BOY TV - RED CARPET & BROADCAST THEME
   Clean Noir Canvas, Crisp Video Hero, Refined Gold Accents & Dark Glassmorphism
   ========================================================================== */

:root {
  /* Core Noir & Clean Dark Canvas */
  --bg-main: #07060a;
  --bg-surface: rgba(18, 14, 26, 0.85);
  --bg-card: rgba(20, 16, 28, 0.75);
  --bg-card-hover: rgba(30, 24, 42, 0.9);
  --bg-card-alt: rgba(24, 19, 34, 0.7);
  
  /* Borders & Dividers */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.18);
  --border-gold: rgba(229, 177, 56, 0.35);
  
  /* Selective Gold & Amber Accents (Used strictly for accents, badges & buttons) */
  --accent-gold: #e5b138;
  --accent-gold-hover: #f3c457;
  --accent-gold-light: #fbe396;
  --accent-gold-dark: #b8861b;
  --accent-gold-glow: rgba(229, 177, 56, 0.25);
  --accent-gold-subtle: rgba(229, 177, 56, 0.1);
  --accent-gold-badge: rgba(229, 177, 56, 0.12);
  
  /* Typography & Readability */
  --text-primary: #ffffff;
  --text-secondary: #c0c0d4;
  --text-muted: #808098;
  --text-gold: #f2cb68;
  --text-dark: #07060a;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Container */
  --max-width: 1240px;
}

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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-main);
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Custom Sleek Dark Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #08060c;
}
::-webkit-scrollbar-thumb {
  background: #231c30;
  border-radius: var(--radius-full);
  border: 2px solid #08060c;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */

/* Section Pill Tag */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--accent-gold-badge);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.badge-tag i, .badge-tag svg {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* Translucent Highlight Badge */
.badge-lime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 11, 20, 0.85);
  color: var(--accent-gold-light);
  border: 1px solid rgba(229, 177, 56, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-lime i, .badge-lime svg {
  color: var(--accent-gold);
}

/* Unified Section Headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.section-title-wrap h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title-wrap p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 8px;
  max-width: 640px;
  line-height: 1.6;
}

/* Primary CTA Button */
.btn-pill-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: var(--transition-normal);
}

.btn-pill-purple:hover {
  transform: translateY(-2px);
  background: var(--accent-gold-hover);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  color: var(--text-dark);
}

.btn-pill-purple:active {
  transform: translateY(0);
}

/* Secondary Glass Outline Button */
.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #f0f0f8;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-normal);
}

.btn-pill-outline:hover {
  background: rgba(229, 177, 56, 0.1);
  border-color: var(--accent-gold);
  color: var(--text-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: padding var(--transition-normal), background var(--transition-normal);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(7, 6, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.brand-logo .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.brand-logo:hover .logo-icon {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.25rem;
  padding: 8px 12px;
}

/* ==========================================================================
   Hero Section (Centered Cinematic Video Showcase)
   ========================================================================== */

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 50px 24px;
  background-color: var(--bg-main);
  text-align: center;
  overflow: hidden;
}

/* Centered Cinematic Video Container */
.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 auto 26px auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75), 0 0 30px rgba(229, 177, 56, 0.08);
  background: #090710;
  z-index: 2;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1;
  filter: none;
}

/* Clean subtle overlay inside video frame */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 65%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Bottom seamless fade */
.hero-bottom-fade {
  display: none;
}

/* Disabled yellow background fog */
.hero-bg-glow {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Balanced, proportional title */
.hero-content h1 {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-description {
  font-size: 0.95rem;
  color: #e0e0ec;
  max-width: 660px;
  margin: 0 auto 30px auto;
  line-height: 1.65;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.play-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 8, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 9px 22px 9px 10px;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.play-video-btn .play-icon-circle {
  width: 34px;
  height: 34px;
  background: var(--accent-gold);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding-left: 2px;
}

.play-video-btn:hover {
  background: rgba(20, 16, 28, 0.85);
  border-color: var(--accent-gold);
  color: var(--text-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   Partners / Platforms Bar
   ========================================================================== */

.platforms-bar-section {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  margin-bottom: 60px;
}

.platforms-bar {
  display: flex;
  background: rgba(18, 14, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.platforms-lead {
  background: rgba(229, 177, 56, 0.1);
  color: var(--text-gold);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border-right: 1px solid rgba(229, 177, 56, 0.2);
}

.platforms-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  padding: 12px 24px;
  gap: 16px;
  overflow-x: auto;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.platform-pill i, .platform-pill svg {
  font-size: 1.2rem;
  color: #ffffff;
}

.platform-pill:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.platform-pill:hover i, .platform-pill:hover svg {
  color: var(--text-gold);
}

/* ==========================================================================
   Section Spacing & Grid Architectures
   ========================================================================== */

.section-spacer {
  padding: 80px 0;
  scroll-margin-top: 90px;
  position: relative;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Episode Cards (Personagens & Programas)
   ========================================================================== */

.episode-card {
  background: rgba(18, 14, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.episode-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 177, 56, 0.35);
  background: rgba(26, 20, 36, 0.9);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.card-thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #120f1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-thumbnail-wrap .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.episode-card:hover .card-thumbnail-wrap .placeholder-img {
  transform: scale(1.04);
}

.card-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.card-play-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  background: rgba(14, 11, 22, 0.85);
  border: 1.5px solid var(--accent-gold);
  color: var(--text-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  padding-left: 2px;
  backdrop-filter: blur(8px);
  transition: var(--transition-bounce);
  z-index: 2;
}

.episode-card:hover .card-play-btn {
  transform: scale(1.1);
  background: var(--accent-gold);
  color: var(--text-dark);
}

.card-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.card-description {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.card-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item i, .meta-item svg {
  color: var(--accent-gold);
  opacity: 0.85;
}

/* ==========================================================================
   Bento Grid Section ("Where Audio Lovers Find Their Home")
   ========================================================================== */

.bento-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.bento-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-intro h2 {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  color: #ffffff;
}

.bento-intro p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.bento-image-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  background: #141020;
}

.bento-image-card .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bento-card {
  background: rgba(18, 14, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: var(--transition-normal);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 177, 56, 0.3);
  background: rgba(26, 20, 36, 0.9);
}

.bento-card-lime {
  background: linear-gradient(135deg, rgba(229, 177, 56, 0.12) 0%, rgba(20, 15, 30, 0.85) 100%);
  border: 1px solid rgba(229, 177, 56, 0.35);
  color: #ffffff;
}

.bento-card-lime h3 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--accent-gold-light);
}

.bento-card-lime p {
  color: #d8d8e6;
  font-size: 0.9rem;
  font-weight: 600;
}

.bento-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(229, 177, 56, 0.1);
  border: 1px solid rgba(229, 177, 56, 0.25);
  color: var(--text-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.bento-card:hover .bento-icon-circle {
  background: var(--accent-gold);
  color: var(--text-dark);
}

.bento-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   Integrantes Grid
   ========================================================================== */

.categories-grid, .integrantes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.integrantes-grid .category-card {
  flex: 0 1 calc(25% - 18px);
  min-width: 250px;
  height: auto;
  min-height: 350px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 14, 26, 0.85);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.integrantes-grid .category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 177, 56, 0.45);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
}

.category-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--bg-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.category-card .placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 5, 12, 0.1) 0%, rgba(7, 5, 12, 0.55) 45%, rgba(7, 5, 12, 0.95) 100%);
  z-index: 2;
}

.category-top-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 10, 22, 0.85);
  border: 1px solid rgba(229, 177, 56, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gold);
  font-size: 0.9rem;
}

.category-info {
  position: relative;
  z-index: 3;
}

.category-info h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.category-desc {
  font-size: 0.82rem;
  color: #d2d2e2;
  line-height: 1.45;
  margin-top: 4px;
}

/* ==========================================================================
   Sponsors & Brand Partners
   ========================================================================== */

.sponsors-section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sponsors-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sponsor-box {
  background: rgba(18, 14, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.sponsor-box i, .sponsor-box svg {
  font-size: 1.25rem;
  color: #ffffff;
}

.sponsor-box:hover {
  border-color: var(--accent-gold);
  color: #ffffff;
  background: rgba(26, 20, 36, 0.85);
  transform: translateY(-2px);
}

.sponsor-box:hover i, .sponsor-box:hover svg {
  color: var(--text-gold);
}

/* ==========================================================================
   Hosts Section
   ========================================================================== */

.hosts-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hosts-left .badge-tag {
  margin-bottom: 10px;
}

.hosts-left h2 {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.hosts-left p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 26px;
  line-height: 1.6;
}

.hosts-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(229, 177, 56, 0.1);
  border: 1px solid rgba(229, 177, 56, 0.25);
  color: var(--text-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hosts-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.host-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.host-profile-card {
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #141020;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: var(--transition-normal);
}

.host-profile-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.host-profile-card .placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.host-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 5, 12, 0.95) 100%);
  z-index: 2;
}

.host-details {
  position: relative;
  z-index: 3;
}

.host-details h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.host-details span {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.host-testimonial-card {
  background: rgba(22, 17, 32, 0.85);
  border: 1px solid rgba(229, 177, 56, 0.25);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.host-testimonial-card p {
  font-size: 0.92rem;
  color: #e0e0ee;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.55;
}

.host-testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-gold);
}

.host-testimonial-author i {
  color: var(--accent-gold);
}

/* ==========================================================================
   Streaming CTA Banner
   ========================================================================== */

.streaming-cta-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.cta-banner-box {
  background: linear-gradient(135deg, rgba(24, 18, 36, 0.92) 0%, rgba(14, 11, 20, 0.96) 100%);
  border: 1px solid rgba(229, 177, 56, 0.28);
  border-radius: var(--radius-xl);
  padding: 50px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
}

.cta-left h2 {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-left p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cta-platform-card {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.cta-platform-card.lime {
  background: rgba(229, 177, 56, 0.12);
  border: 1px solid rgba(229, 177, 56, 0.35);
  color: #ffffff;
}

.cta-platform-card.lime i {
  color: var(--text-gold);
}

.cta-platform-card.dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cta-platform-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  color: var(--text-gold);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter-section {
  padding: 50px 0 80px 0;
  position: relative;
  z-index: 2;
}

.newsletter-box {
  background: rgba(20, 16, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.newsletter-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.newsletter-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 28px auto;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(10, 8, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 5px 5px 5px 20px;
  transition: var(--transition-fast);
}

.newsletter-form:focus-within {
  border-color: var(--accent-gold);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-submit-btn {
  background: var(--accent-gold);
  color: var(--text-dark);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.newsletter-submit-btn:hover {
  background: var(--accent-gold-hover);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  background-color: #050408;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px 0;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 18px 0 24px 0;
  line-height: 1.6;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 16, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--text-gold);
  padding-left: 4px;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 16, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.app-badge-btn i, .app-badge-btn svg {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.app-badge-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(30, 24, 42, 0.85);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Image Placeholders
   ========================================================================== */

.img-placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #141020;
  color: #a0a0b8;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  user-select: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.img-placeholder-box i, .img-placeholder-box svg {
  color: var(--text-gold);
}

.img-placeholder-box span {
  font-size: 0.75rem;
  color: #8888a0;
}

.ph-art-1 { background: #1a1424; }
.ph-art-2 { background: #1e1620; }
.ph-art-3 { background: #161222; }
.ph-art-4 { background: #181426; }
.ph-art-5 { background: #1a121e; }
.ph-art-6 { background: #141824; }
.ph-art-7 { background: #1c1614; }
.ph-art-8 { background: #181220; }
.ph-host-1 { background: #1a1622; }
.ph-host-2 { background: #1c1420; }

/* ==========================================================================
   Audio Player Dock
   ========================================================================== */

.audio-player-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  width: calc(100% - 40px);
  max-width: 760px;
  background: rgba(14, 11, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 177, 56, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-xl);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audio-player-dock.active {
  transform: translateX(-50%) translateY(0);
}

.player-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(229, 177, 56, 0.1);
  border: 1px solid rgba(229, 177, 56, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gold);
}

.player-text h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
}

.player-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-btn {
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.player-btn:hover {
  color: #ffffff;
}

.player-btn.play-main {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
}

.player-btn.play-main:hover {
  background: var(--accent-gold-hover);
}

.player-close {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.player-close:hover {
  color: #ff6b6b;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
  
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-layout, .hosts-layout, .cta-banner-box {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrantes-grid .category-card {
    flex: 0 1 calc(50% - 16px);
  }
  
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-spacer {
    padding: 60px 0;
  }

  .nav-menu, .nav-actions .btn-pill-purple {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-menu-active .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(12, 9, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
    gap: 18px;
  }
  
  .hero-section {
    padding: 100px 16px 40px 16px;
  }

  .hero-video-container {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
  }
  
  .platforms-bar {
    flex-direction: column;
  }
  
  .platforms-lead {
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(229, 177, 56, 0.2);
  }
  
  .cards-grid-3, .cards-grid-2, .bento-right-grid, .categories-grid, .sponsors-grid, .host-cards-row, .cta-platforms-grid, .hosts-perks-grid {
    grid-template-columns: 1fr;
  }

  .integrantes-grid .category-card {
    flex: 0 1 100%;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner-box {
    padding: 32px 20px;
  }

  .newsletter-box {
    padding: 36px 20px;
  }

  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .newsletter-input {
    width: 100%;
    background: rgba(14, 11, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 12px 18px;
  }

  .newsletter-submit-btn {
    width: 100%;
  }
}
