/* WebTV Brasil - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --primary: #dc2626;
  --primary-dark: #991b1b;
  --primary-light: #fca5a5;
  --secondary: #0f0f1a;
  --secondary-light: #1a1a2e;
  --accent: #f59e0b;
  --text: #e8e8f0;
  --text-muted: #9090a8;
  --text-dark: #1a1a2e;
  --bg: #0a0a14;
  --bg-card: #12121f;
  --bg-card-hover: #1a1a2e;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(220,38,38,0.4);
  --glow: 0 0 20px rgba(220,38,38,0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.7);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 15px rgba(220,38,38,0.4);
}
.btn-primary:hover {
  background: var(--primary-dark); color: white;
  box-shadow: 0 6px 25px rgba(220,38,38,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-ghost { color: var(--text); padding: 10px 20px; }
.btn-ghost:hover { color: var(--primary); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-yt { background: #ff0000; color: white; }
.btn-yt:hover { background: #cc0000; color: white; transform: translateY(-2px); }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 4px;
  font-size: 0.7rem; font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-live { background: var(--primary); color: white; animation: pulse-live 1.5s infinite; }
.badge-cat { background: rgba(220,38,38,0.15); color: var(--primary); border: 1px solid var(--border-accent); }
.badge-new { background: var(--accent); color: var(--text-dark); }

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

/* Navbar */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,20,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
#navbar.scrolled { background: rgba(10,10,20,0.99); box-shadow: var(--shadow); }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}

.navbar-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: white; letter-spacing: 0.04em;
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-logo .logo-dot { color: var(--primary); }

.navbar-nav {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.navbar-nav a {
  color: var(--text-muted); padding: 8px 14px;
  font-family: var(--font-display); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: white; background: rgba(255,255,255,0.08); }

.navbar-actions { display: flex; align-items: center; gap: 10px; }

.live-indicator {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3);
  color: var(--primary); font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: all var(--transition);
}
.live-indicator:hover { background: rgba(220,38,38,0.25); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse-live 1.5s infinite; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: white; transition: all var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(10,10,20,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); z-index: 999;
  padding: 20px; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); padding: 12px 16px;
  font-family: var(--font-display); font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: white; }

/* Hero Section */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0a0a14 0%, #1a0510 50%, #0a0a14 100%);
  overflow: hidden; padding-top: 70px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(220,38,38,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(245,158,11,0.06) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 80px 20px;
}

.hero-content { z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
  background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3);
  color: var(--primary); font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px;
  line-height: 1.05;
}
.hero-title .highlight { color: var(--primary); display: block; }
.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--accent); font-family: var(--font-display);
  font-weight: 400; letter-spacing: 0.04em; margin-bottom: 16px;
}
.hero-text { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: white; }
.hero-stat .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-stat .num span { color: var(--primary); }

.hero-video-wrap { position: relative; z-index: 2; }
.hero-video-container {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(220,38,38,0.2);
}
.hero-video-container::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(220,38,38,0.3) 0%, transparent 50%, rgba(245,158,11,0.1) 100%);
  z-index: 1; pointer-events: none;
}
.hero-video-container iframe { width: 100%; aspect-ratio: 16/9; display: block; }
.hero-video-label {
  position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,20,0.85); backdrop-filter: blur(10px);
  padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-video-label .title { font-family: var(--font-display); font-size: 0.9rem; color: white; }

/* Section styles */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--secondary); }
.section-alt { background: rgba(255,255,255,0.02); }

.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.section-title-wrap {}
.section-label {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
  color: var(--primary); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--primary); }
.section-title { color: white; }
.section-link {
  font-family: var(--font-display); font-size: 0.85rem; color: var(--primary);
  display: flex; align-items: center; gap: 6px; text-transform: uppercase;
  letter-spacing: 0.06em; white-space: nowrap;
}
.section-link:hover { color: white; }

/* Video Cards */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.video-grid-lg { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.video-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
  border: 1px solid var(--border); position: relative;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-accent); }
.video-card.featured { grid-column: span 2; }

.video-thumb {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
  background: var(--secondary-light);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.05); }

.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); opacity: 0; transition: all var(--transition);
}
.video-card:hover .video-play-btn { opacity: 1; }
.play-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(220,38,38,0.5); transition: transform var(--transition);
}
.video-card:hover .play-icon { transform: scale(1.1); }
.play-icon svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }

.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.8); color: white; padding: 3px 8px;
  border-radius: 4px; font-size: 0.75rem; font-weight: 600;
}

.video-body { padding: 16px; }
.video-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.video-category { font-size: 0.72rem; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); }
.video-date { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }
.video-title {
  font-size: 1rem; font-family: var(--font-display); font-weight: 600;
  color: white; margin-bottom: 8px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.video-card:hover .video-title { color: var(--primary-light); }
.video-desc {
  font-size: 0.85rem; color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.video-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.video-program { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.video-views { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* Featured Video (Hero-like card) */
.featured-video {
  display: grid; grid-template-columns: 1.5fr 1fr;
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition); margin-bottom: 24px;
}
.featured-video:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.featured-video .video-thumb { aspect-ratio: 16/9; }
.featured-video .video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured-video .video-info { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.featured-video .video-title { font-size: 1.5rem; -webkit-line-clamp: 3; margin-bottom: 12px; }
.featured-video .video-desc { -webkit-line-clamp: 4; margin-bottom: 20px; }

/* Program Cards */
.program-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.program-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
  border: 1px solid var(--border); text-align: center;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-accent); }

.program-image {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--secondary-light);
}
.program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.program-card:hover .program-image img { transform: scale(1.05); }
.program-image-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  padding: 16px;
}

.program-body { padding: 16px; }
.program-name { font-size: 1rem; font-family: var(--font-display); color: white; margin-bottom: 4px; }
.program-presenter { font-size: 0.8rem; color: var(--text-muted); }
.program-schedule { font-size: 0.78rem; color: var(--accent); margin-top: 6px; }
.program-card .btn { margin-top: 14px; width: 100%; justify-content: center; }

/* Category Pills */
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.category-pill {
  padding: 8px 18px; border-radius: 25px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font-display);
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer;
}
.category-pill:hover, .category-pill.active {
  background: var(--primary); border-color: var(--primary);
  color: white; box-shadow: 0 4px 15px rgba(220,38,38,0.3);
}

/* Categories Grid */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.category-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px 16px; text-align: center;
  border: 1px solid var(--border); transition: all var(--transition);
  color: var(--text-muted);
}
.category-card:hover {
  transform: translateY(-3px); border-color: var(--primary);
  background: rgba(220,38,38,0.08); color: white;
}
.category-card .icon {
  font-size: 2rem; margin-bottom: 10px;
}
.category-card .name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: white; }
.category-card .count { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* Schedule */
.schedule-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.schedule-day-col { background: var(--bg-card); }
.schedule-day-header {
  padding: 16px; text-align: center; background: var(--secondary);
  border-bottom: 1px solid var(--border);
}
.schedule-day-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: white; }
.schedule-day-short { display: none; }
.schedule-program {
  padding: 12px; border-bottom: 1px solid var(--border);
  transition: all var(--transition); cursor: pointer;
}
.schedule-program:hover { background: rgba(220,38,38,0.08); }
.schedule-program.current { border-left: 3px solid var(--primary); }
.schedule-time { font-family: var(--font-display); font-size: 0.72rem; color: var(--primary); margin-bottom: 4px; }
.schedule-name { font-size: 0.8rem; color: white; font-weight: 600; }

/* Presenter Cards */
.presenters-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.presenter-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
  border: 1px solid var(--border); text-align: center;
}
.presenter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-accent); }
.presenter-photo {
  aspect-ratio: 1; overflow: hidden; background: var(--secondary-light);
}
.presenter-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.presenter-card:hover .presenter-photo img { transform: scale(1.05); }
.presenter-body { padding: 20px 16px; }
.presenter-name { font-family: var(--font-display); font-size: 1.1rem; color: white; margin-bottom: 4px; }
.presenter-role { font-size: 0.8rem; color: var(--primary); font-weight: 600; }
.presenter-program { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }
.presenter-socials { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.presenter-social-link {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--transition); font-size: 0.85rem;
}
.presenter-social-link:hover { background: var(--primary); color: white; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: var(--secondary-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(220,38,38,0.4); }
.gallery-zoom { opacity: 0; transform: scale(0.5); transition: all var(--transition); color: white; font-size: 2rem; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: white; font-size: 2rem; cursor: pointer; }

/* Live Stream Section */
.live-section {
  background: linear-gradient(135deg, rgba(220,38,38,0.05) 0%, var(--bg) 100%);
  border: 1px solid rgba(220,38,38,0.15); border-radius: var(--radius-lg);
  overflow: hidden;
}
.live-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: rgba(220,38,38,0.08);
  border-bottom: 1px solid rgba(220,38,38,0.15);
}
.live-title { font-family: var(--font-display); font-size: 1.1rem; color: white; display: flex; align-items: center; gap: 10px; }
.live-body { display: grid; grid-template-columns: 2fr 1fr; }
.live-player { aspect-ratio: 16/9; }
.live-player iframe { width: 100%; height: 100%; display: block; }
.live-info { padding: 24px; background: var(--bg-card); display: flex; flex-direction: column; gap: 16px; }
.live-info h3 { font-family: var(--font-display); color: white; font-size: 1.2rem; }
.live-info p { color: var(--text-muted); font-size: 0.9rem; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature {
  padding: 20px; background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); border-left: 3px solid var(--primary);
}
.about-feature h4 { font-family: var(--font-display); color: white; margin-bottom: 6px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); }

.about-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-image-grid img { border-radius: var(--radius); }
.about-image-grid img:first-child { grid-column: span 2; }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(220,38,38,0.1); border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { font-family: var(--font-display); color: white; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.form-control {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius); color: white; font-family: var(--font-body);
  font-size: 0.95rem; transition: all var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.08); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 3px; }
.form-check label { font-size: 0.85rem; color: var(--text-muted); }

/* Social Bar */
.social-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 25px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition);
}
.social-link:hover { transform: translateY(-2px); }
.social-link.yt { --sc: #ff0000; }
.social-link.ig { --sc: #e1306c; }
.social-link.fb { --sc: #1877f2; }
.social-link.tw { --sc: #1da1f2; }
.social-link.tt { --sc: #010101; }
.social-link.wpp { --sc: #25d366; }
.social-link.tg { --sc: #0088cc; }
.social-link:hover { background: var(--sc, var(--primary)); border-color: var(--sc, var(--primary)); color: white; }

/* Footer */
.footer { background: var(--secondary); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand {}
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--primary); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.footer-heading { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: white; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-copy a { color: var(--primary); }
.footer-links-bottom { display: flex; gap: 20px; }
.footer-links-bottom a { font-size: 0.82rem; color: var(--text-muted); }
.footer-links-bottom a:hover { color: var(--primary); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition); color: white; font-size: 1.5rem;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20bd5a; color: white; box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9500;
  background: rgba(15,15,26,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px; display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { flex: 1; font-size: 0.88rem; color: var(--text-muted); }
.cookie-text a { color: var(--primary); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Video Player Page */
.video-player-wrap { background: #000; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-player-wrap iframe { width: 100%; aspect-ratio: 16/9; display: block; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: white; }
.breadcrumb-sep { color: var(--border); }

/* Page Header */
.page-header {
  background: linear-gradient(to bottom, var(--secondary), var(--bg));
  padding: 100px 0 50px; border-bottom: 1px solid var(--border);
}

/* Sidebar */
.content-sidebar { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.sidebar-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); margin-bottom: 24px; }
.sidebar-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-video-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-video-item { display: flex; gap: 12px; }
.sidebar-video-thumb { width: 80px; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.sidebar-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-video-info { flex: 1; }
.sidebar-video-title { font-size: 0.83rem; color: white; font-family: var(--font-display); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-video-title:hover { color: var(--primary); }
.sidebar-video-date { font-size: 0.73rem; color: var(--text-muted); margin-top: 4px; }

/* Share buttons */
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.8rem; font-family: var(--font-display);
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  transition: all var(--transition);
}
.share-fb { background: rgba(24,119,242,0.15); border: 1px solid rgba(24,119,242,0.3); color: #1877f2; }
.share-fb:hover { background: #1877f2; color: white; }
.share-tw { background: rgba(29,161,242,0.15); border: 1px solid rgba(29,161,242,0.3); color: #1da1f2; }
.share-tw:hover { background: #1da1f2; color: white; }
.share-wpp { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: #25d366; }
.share-wpp:hover { background: #25d366; color: white; }

/* Alerts */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.9rem; }
.alert-success { background: rgba(5,150,105,0.15); border: 1px solid rgba(5,150,105,0.3); color: #6ee7b7; }
.alert-error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3); color: #fca5a5; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.page-link {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font-display); font-size: 0.85rem;
  transition: all var(--transition);
}
.page-link:hover, .page-link.active { background: var(--primary); border-color: var(--primary); color: white; }
.page-link.disabled { opacity: 0.3; cursor: default; pointer-events: none; }

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: white !important; }
.text-accent { color: var(--accent) !important; }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* Divider */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* Loading */
.loading { display: flex; justify-content: center; padding: 40px; color: var(--text-muted); }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 8000;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(220,38,38,0.2); border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); cursor: pointer; transition: all var(--transition);
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary); color: white; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fadeInUp { animation: fadeInUp 0.5s ease forwards; }

/* Responsive */
@media (max-width: 1200px) {
  .hero-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 20px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-text { max-width: 100%; }
  .hero-video-wrap { max-width: 600px; margin: 0 auto; }
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
  .schedule-day-col:nth-child(5), .schedule-day-col:nth-child(6), .schedule-day-col:nth-child(7) { display: none; }
  .featured-video { grid-template-columns: 1fr; }
  .featured-video .video-info { padding: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .live-body { grid-template-columns: 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .schedule-day-col:nth-child(4), .schedule-day-col:nth-child(5), .schedule-day-col:nth-child(6), .schedule-day-col:nth-child(7) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .video-card.featured { grid-column: span 1; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-day-col:nth-child(3), .schedule-day-col:nth-child(4), .schedule-day-col:nth-child(5), .schedule-day-col:nth-child(6), .schedule-day-col:nth-child(7) { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
