/* ============================================================
   MUSICASTING - Estilos Responsivos
   ============================================================ */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .artista-profile {
        margin-top: 0;
    }
    
    .profile-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .profile-content {
        margin-top: 0;
    }
    
    .navbar-collapse {
        background: var(--secondary);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--radius);
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 15px 25px;
    }
    
    .hero-wave {
        display: none;
    }
    
    .stats-section {
        margin-top: 0;
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-top {
        padding: 40px 0;
    }
    
    .artista-banner {
        height: 250px;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .profile-content {
        padding: 25px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .photos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .painel-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .painel-header h1 {
        font-size: 1.5rem;
    }
    
    .status-card {
        flex-direction: column;
        text-align: center;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .auth-card {
        padding: 25px;
    }
    
    .flash-messages {
        left: 15px;
        right: 15px;
        max-width: none;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 25px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .filters-wrapper {
        padding: 20px;
    }
    
    .artista-card .artista-info {
        padding: 15px;
    }
    
    .artista-name {
        font-size: 1rem;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .profile-name {
        font-size: 1.3rem;
    }
    
    .content-section h2 {
        font-size: 1.2rem;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .upload-preview {
        width: 150px;
        height: 150px;
    }
    
    .tip-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .about-feature {
        justify-content: center;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .flash-messages,
    .btn,
    .hero-buttons,
    .filters-wrapper,
    .profile-contacts,
    .profile-share,
    .content-cta {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 30px 0;
    }
    
    .artista-profile {
        margin-top: 0;
    }
    
    .profile-sidebar,
    .profile-content {
        box-shadow: none;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::before {
        background-size: cover;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable automatic dark mode */
    /*
    :root {
        --light: #1a1a2e;
        --secondary: #0f0f23;
    }
    
    body {
        background: #0f0f23;
        color: #f0f0f0;
    }
    */
}
