/**
 * Agita Aqui - Web Rádio Styles
 * Design moderno e vibrante
 */

/* ================================
   CSS Variables & Theme
   ================================ */
:root {
    /* Colors */
    --primary: #ff006e;
    --primary-dark: #d1005a;
    --secondary: #8338ec;
    --accent: #3a86ff;
    --neon-cyan: #00f5d4;
    --neon-yellow: #fee440;
    
    /* Dark Theme */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1025 50%, #0f0a1a 100%);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    /* Effects */
    --glow-primary: 0 0 20px rgba(255, 0, 110, 0.5);
    --glow-secondary: 0 0 20px rgba(131, 56, 236, 0.5);
    --glow-neon: 0 0 30px rgba(0, 245, 212, 0.4);
    
    /* Sizing */
    --header-height: 80px;
    --container-max: 1400px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ================================
   Reset & Base
   ================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    outline: none;
}

/* ================================
   Utility Classes
   ================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ================================
   Particles Background
   ================================ */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-gradient);
}

/* ================================
   Header & Navigation
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--primary)); }
    50% { filter: drop-shadow(0 0 20px var(--primary)); }
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(58, 134, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 0, 110, 0.15);
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 110, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 110, 0); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-neon);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Player */
.hero-player {
    display: flex;
    justify-content: center;
}

.player-card {
    background: linear-gradient(145deg, rgba(18, 18, 26, 0.9), rgba(26, 26, 37, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.player-visualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.visualizer-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 100%;
    padding: 20px;
}

.visualizer-bars .bar {
    width: 4px;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 2px;
    animation: visualizer 0.5s ease-in-out infinite;
    animation-play-state: paused;
}

.playing .visualizer-bars .bar {
    animation-play-state: running;
}

@keyframes visualizer {
    0%, 100% { height: 20%; }
    50% { height: 80%; }
}

/* Stagger animation for bars */
.visualizer-bars .bar:nth-child(1) { animation-delay: 0.0s; }
.visualizer-bars .bar:nth-child(2) { animation-delay: 0.1s; }
.visualizer-bars .bar:nth-child(3) { animation-delay: 0.2s; }
.visualizer-bars .bar:nth-child(4) { animation-delay: 0.15s; }
.visualizer-bars .bar:nth-child(5) { animation-delay: 0.3s; }
.visualizer-bars .bar:nth-child(6) { animation-delay: 0.05s; }
.visualizer-bars .bar:nth-child(7) { animation-delay: 0.25s; }
.visualizer-bars .bar:nth-child(8) { animation-delay: 0.1s; }
.visualizer-bars .bar:nth-child(9) { animation-delay: 0.35s; }
.visualizer-bars .bar:nth-child(10) { animation-delay: 0.2s; }
.visualizer-bars .bar:nth-child(n+11) { animation-delay: calc(var(--i) * 0.05s); }

.player-artwork {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    z-index: 1;
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    animation: rotate-slow 20s linear infinite;
    animation-play-state: paused;
}

.playing .player-artwork img {
    animation-play-state: running;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.artwork-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(30px);
    z-index: -1;
}

.player-info {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.player-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.player-status i {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.player-dj {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.player-show {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.btn-player {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-player:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.btn-play {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--glow-primary);
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.6);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.player-volume i {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.volume-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--glow-primary);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

.hero-wave path {
    fill: var(--bg-card);
}

/* ================================
   Sections Base
   ================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(131, 56, 236, 0.15);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-hint {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0.9;
    animation: pulse-hint 2s ease-in-out infinite;
}

.section-hint i {
    margin-right: 5px;
}

@keyframes pulse-hint {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ================================
   DJs Section
   ================================ */
.djs-section {
    background: var(--bg-card);
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.dj-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dj-card {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 110, 0.3);
}

.dj-view-profile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.dj-card:hover .dj-view-profile {
    opacity: 1;
}

.dj-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dj-card:hover .dj-image img {
    transform: scale(1.1);
}

.dj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--transition-normal);
}

.dj-card:hover .dj-overlay {
    opacity: 1;
}

.dj-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.dj-socials a,
.dj-socials span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    cursor: pointer;
    color: #fff;
}

.dj-socials a:hover,
.dj-socials span:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: #000;
}

.dj-info {
    padding: 20px;
    text-align: center;
}

.dj-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.dj-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================================
   Tracks Section
   ================================ */
.tracks-section {
    background: var(--bg-dark);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.track-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.track-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.track-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.track-card:hover .track-cover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.track-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    opacity: 0.9;
    transition: var(--transition-normal);
    box-shadow: var(--glow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.track-cover {
    position: relative;
}

.track-cover:active .track-play-btn {
    transform: translate(-50%, -50%) scale(0.9);
}

.track-card:hover .track-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.track-info {
    padding: 12px;
}

.track-info h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-info p {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.track-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.track-meta .track-icons {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 3px;
    align-items: center;
}

.track-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    transition: all 0.3s;
    color: white;
    margin-left: 2px;
    flex-shrink: 0;
    aspect-ratio: 1;
}

.track-link-icon.spotify {
    background: #1DB954;
}

.track-link-icon.spotify:hover {
    background: #1ed760;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.5);
}

.track-link-icon.soundcloud {
    background: #ff5500;
}

.track-link-icon.soundcloud:hover {
    background: #ff6a1a;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 85, 0, 0.5);
}

.track-link-icon.youtube {
    background: #ff0000;
}

.track-link-icon.youtube:hover {
    background: #ff1a1a;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5);
}

.track-link-icon.deezer {
    background: #feaa2d;
}

.track-link-icon.deezer:hover {
    background: #ffb84d;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(254, 170, 45, 0.5);
}

.track-link-icon.apple {
    background: linear-gradient(135deg, #fa57c1, #b656e0);
}

.track-link-icon.apple:hover {
    background: linear-gradient(135deg, #ff6ed0, #c76ef0);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(250, 87, 193, 0.5);
}

.track-link-icon.tidal {
    background: #00ffff;
    color: #000;
}

.track-link-icon.tidal:hover {
    background: #33ffff;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 255, 255, 0.5);
}

/* Track External Links */
.track-links {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.track-link-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s;
    color: white;
}

.track-link-btn.spotify {
    background: #1DB954;
}

.track-link-btn.spotify:hover {
    background: #1ed760;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.5);
}

.track-link-btn.soundcloud {
    background: #ff5500;
}

.track-link-btn.soundcloud:hover {
    background: #ff6a1a;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.5);
}

/* Track Card Playing State */
.track-card.playing {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

/* ==================== EVENTOS SECTION ==================== */
.eventos-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.evento-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 22, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}

.evento-image {
    height: 150px;
    overflow: hidden;
}

.evento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.evento-card:hover .evento-image img {
    transform: scale(1.1);
}

.evento-content {
    padding: 20px;
    display: flex;
    gap: 20px;
}

.evento-date {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-width: 70px;
}

.evento-date .dia {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    line-height: 1;
}

.evento-date .mes {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.evento-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}

.evento-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.evento-hora {
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.evento-hora i {
    margin-right: 5px;
}

/* ==================== PROGRAMAÇÃO SECTION ==================== */
.programacao-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: transparent;
}

.programacao-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 0, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(131, 56, 236, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 20, 0.85) 0%, rgba(18, 18, 31, 0.9) 50%, rgba(10, 10, 20, 0.85) 100%);
    z-index: 0;
}

.programacao-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary) 20%, 
        var(--neon-cyan) 50%, 
        var(--secondary) 80%, 
        transparent
    );
    box-shadow: 
        0 0 20px var(--primary),
        0 0 40px var(--neon-cyan),
        0 0 60px var(--secondary);
}

.programacao-section .container {
    position: relative;
    z-index: 2;
}

.programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.programacao-dia {
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.programacao-dia:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}

.programacao-dia.hoje {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
}

.dia-header {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.programacao-dia.hoje .dia-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 255, 136, 0.15));
}

.dia-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.badge-hoje {
    background: var(--neon-cyan);
    color: #000;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dia-programas {
    padding: 15px 18px;
}

.programa-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.programa-item:last-child {
    border-bottom: none;
}

.programa-hora {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    min-width: 50px;
}

.programacao-dia.hoje .programa-hora {
    color: var(--neon-cyan);
}

.programa-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.programa-info strong {
    font-size: 0.85rem;
    color: white;
}

.programa-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Empty State Programação */
.programacao-section .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(145deg, rgba(20, 20, 35, 0.6), rgba(15, 15, 25, 0.8));
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.programacao-section .empty-state i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.programacao-section .empty-state p {
    color: var(--text-muted);
    font-size: 1rem;
}

.dia-programas .sem-programa {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
    opacity: 0.6;
}

.track-card.playing .track-play-btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    background: var(--secondary);
}

.track-card.playing .track-play-btn i::before {
    content: "\f04c"; /* pause icon */
}

/* Tracks Player Independente */
.tracks-player {
    background: linear-gradient(145deg, rgba(18, 18, 26, 0.98), rgba(26, 26, 37, 0.98));
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.2);
}

.tracks-player-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.track-player-cover {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.track-player-info {
    flex: 1;
    min-width: 150px;
}

.track-player-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.track-player-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.track-player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-ctrl-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.track-ctrl-play {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

.track-ctrl-play:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

.track-player-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.track-player-progress span {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 40px;
}

.track-progress-bar {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
}

.track-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.track-player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.track-volume-bar {
    width: 80px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
}

.track-volume-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    cursor: pointer;
}

.track-close-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    border: none;
    color: #f87171;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-close-btn:hover {
    background: rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
    .tracks-player-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .track-player-info {
        width: 100%;
    }
    
    .track-player-progress {
        width: 100%;
    }
    
    .track-player-volume {
        width: 100%;
        justify-content: center;
    }
    
    .track-volume-bar {
        flex: 1;
        max-width: 150px;
    }
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* ================================
   Chat Section
   ================================ */
.chat-section {
    background: var(--bg-card);
    overflow: hidden;
}

.chat-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chat-info .section-badge,
.chat-info .section-title,
.chat-info .section-description {
    text-align: left;
    margin-left: 0;
}

.chat-features {
    margin: 30px 0;
}

.chat-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.chat-features .feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 110, 0.1);
    border-radius: 10px;
    color: var(--primary);
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.chat-box {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.message-content {
    background: var(--bg-card);
    padding: 12px 16px;
    border-radius: 0 15px 15px 15px;
    flex: 1;
}

.message-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
}

.message-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    word-break: break-word;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

.chat-form {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-form input,
.chat-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.chat-form input:focus,
.chat-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

.chat-form textarea {
    resize: none;
    height: 80px;
}

.chat-form button {
    align-self: flex-end;
}

/* ================================
   Eventos Section
   ================================ */
.eventos-section {
    background: var(--bg-dark);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.evento-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.evento-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.evento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evento-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.evento-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.evento-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.evento-info {
    padding: 25px;
}

.evento-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.evento-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.evento-info p i {
    color: var(--primary);
    width: 16px;
}

.evento-info .btn {
    margin-top: 15px;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--bg-dark);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 120px;
}

.footer-wave path {
    fill: var(--bg-card);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-primary);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p:last-child {
    margin-top: 5px;
}

.footer-bottom i {
    color: var(--primary);
}

/* ================================
   Mobile Player
   ================================ */
.mobile-player {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
}

.mobile-player-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-player-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-player-info strong {
    display: block;
    font-size: 0.95rem;
}

.mobile-player-info span {
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.mobile-play-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-player {
        order: 1;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .chat-wrapper {
        grid-template-columns: 1fr;
    }
    
    .chat-info {
        text-align: center;
    }
    
    .chat-info .section-badge,
    .chat-info .section-title,
    .chat-info .section-description {
        text-align: center;
    }
    
    .social-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 30px);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .player-card {
        padding: 30px 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 20px auto;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mobile-player {
        display: flex;
    }
    
    .hero-player {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .djs-grid,
    .tracks-grid,
    .eventos-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ================================
   Animations
   ================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
