/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00ff88 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00ff88 !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2300ff88" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300ff88" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/><circle cx="700" cy="800" r="80" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-logo {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-logo img {
    max-width: 150px;
    filter: brightness(0) invert(1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #00ff88;
    margin: 20px 0 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    letter-spacing: 8px;
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 4px;
    opacity: 0.8;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff88;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Artist Cards */
.artist-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.artist-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 136, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-overlay i {
    font-size: 3rem;
    color: #fff;
}

.artist-info {
    padding: 20px;
    text-align: center;
}

.artist-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.artist-info p {
    color: #666;
    margin: 0;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.service-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 5px 0;
    color: #ccc;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 0.8rem;
}

/* Release Cards */
.release-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.release-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-card:hover .release-image img {
    transform: scale(1.05);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-overlay i {
    font-size: 2.5rem;
    color: #00ff88;
}

.release-info {
    padding: 20px;
    text-align: center;
}

.release-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.release-info p {
    color: #666;
    margin-bottom: 10px;
}

.release-year {
    background: #00ff88;
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Audio Player Fixed */
.audio-player-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

.btn-control {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.btn-control:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.btn-play {
    font-size: 1.5rem;
    background: #00ff88;
    color: #000;
}

.btn-play:hover {
    background: #00ccff;
    color: #000;
}

.player-info {
    color: #fff;
}

.track-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

#trackTitle {
    font-weight: 600;
    font-size: 1rem;
}

#trackArtist {
    font-size: 0.9rem;
    color: #ccc;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    width: 0%;
    transition: width 0.1s ease;
}

#currentTime, #totalTime {
    font-size: 0.8rem;
    color: #ccc;
    min-width: 35px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    cursor: pointer;
}

.track-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Customization */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .audio-player-fixed {
        padding: 10px 0;
    }
    
    .player-controls {
        gap: 10px;
    }
    
    .btn-control {
        font-size: 1rem;
        padding: 6px;
    }
    
    .track-info {
        margin-bottom: 5px;
    }
    
    #trackTitle {
        font-size: 0.9rem;
    }
    
    #trackArtist {
        font-size: 0.8rem;
    }
    
    .volume-control {
        display: none;
    }
    
    .track-cover {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .service-card, .artist-card, .release-card {
        margin-bottom: 20px;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* Dark theme for services section */
#servicos {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

#servicos .section-title {
    color: #fff;
}

#servicos .section-title::after {
    background: linear-gradient(90deg, #00ff88, #00ccff);
}

#servicos .section-subtitle {
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00ccff, #00ff88);
}

