/* ============================================
   PINTO PRATEADO - Pages CSS (Shows & Radios)
   ============================================ */

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 40%, #0D0D0D 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.page-hero-radio::before {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
}

.page-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-bg::before {
    display: none;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 25px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero-content p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--gray-light);
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card strong {
    color: var(--gold);
}

/* ============================================
   STEPS GRID
   ============================================ */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 18px;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(212, 175, 55, 0.2));
    margin-top: 50px;
    flex-shrink: 0;
}

/* ============================================
   CAST / ARTISTS LIST
   ============================================ */
.cast-category {
    margin-bottom: 40px;
}

.cast-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.cast-item {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    padding: 14px 20px;
    transition: all 0.3s ease;
}

.cast-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
    transform: translateX(4px);
}

.cast-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.cast-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    margin-top: 30px;
}

.cast-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cast-note p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cast-note strong {
    color: var(--gold);
}

/* ============================================
   LEI DE INCENTIVO
   ============================================ */
.incentivo-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.left-title {
    text-align: left;
}

.left-title::after {
    left: 0;
    transform: none;
}

.incentivo-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 25px;
}

.incentivo-lead strong {
    color: var(--gold);
}

.incentivo-list {
    list-style: none;
    margin-bottom: 30px;
}

.incentivo-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.incentivo-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.incentivo-list strong {
    color: var(--white);
}

.incentivo-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.incentivo-card {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.incentivo-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.incentivo-card-icon {
    margin-bottom: 15px;
}

.incentivo-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.incentivo-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   RADIO PAGE - INTRO
   ============================================ */
.radio-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.radio-intro-text p {
    color: var(--gray-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.radio-intro-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.radio-stat {
    flex: 1;
    min-width: 140px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.radio-stat:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.radio-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.radio-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 18px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   REGIONS GRID
   ============================================ */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.region-card {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: border-color 0.3s ease;
}

.region-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.region-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.region-card ul {
    list-style: none;
}

.region-card li {
    padding: 6px 0;
    color: var(--gray-light);
    font-size: 0.88rem;
    position: relative;
    padding-left: 15px;
}

.region-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   RADIO PARTNERS GRID
   ============================================ */
.radios-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.radio-partner-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.radio-partner-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.radio-partner-card svg { flex-shrink: 0; }

.radio-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    flex-shrink: 0;
}

.radio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.radio-icon-more {
    font-size: 1.4rem;
    background: rgba(212, 175, 55, 0.15);
}

.radio-partner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.radio-partner-info strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.radio-partner-info span {
    font-size: 0.75rem;
    color: var(--gray);
    white-space: nowrap;
}

.radio-partner-more {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
}

.radio-partner-more strong { color: var(--gold); }

/* ============================================
   CONTACT FORM (Radios page)
   ============================================ */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group > label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--black-light);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.contact-form .form-message {
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.contact-form .form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-form .form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   MULTI-SELECT (Estados)
   ============================================ */
.multi-select-wrap {
    position: relative;
}

.multi-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-height: 46px;
}

.multi-select-trigger:focus {
    outline: none;
    border-color: var(--gold);
}

.multi-select-wrap.open .multi-select-trigger {
    border-color: var(--gold);
    border-radius: 8px 8px 0 0;
}

.multi-select-wrap.error .multi-select-trigger {
    border-color: #ef4444;
}

.multi-select-placeholder {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray);
}

.multi-select-trigger svg {
    color: var(--gray);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.multi-select-wrap.open .multi-select-trigger svg {
    transform: rotate(180deg);
}

.multi-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 50;
}

.multi-select-wrap.open .multi-select-dropdown {
    display: block;
}

.multi-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray-light);
}

.multi-select-option:hover {
    background: rgba(212, 175, 55, 0.08);
}

.multi-select-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.multi-select-option input[type="checkbox"]:checked + span {
    color: var(--gold);
    font-weight: 500;
}

.multi-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.multi-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.multi-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .incentivo-grid {
        grid-template-columns: 1fr;
    }

    .radio-intro-grid {
        grid-template-columns: 1fr;
    }

    .radio-intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .radio-stat {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 70px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
        background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.2));
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cast-grid {
        grid-template-columns: 1fr 1fr;
    }

    .incentivo-visual {
        flex-direction: row;
    }

    .incentivo-card {
        flex: 1;
    }

    .radio-intro-stats {
        flex-direction: row;
    }

    .radio-stat {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .radio-intro-stats {
        flex-direction: column;
    }

    .cast-grid {
        grid-template-columns: 1fr;
    }

    .incentivo-visual {
        flex-direction: column;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MÚSICAS / LANÇAMENTOS PAGE
   ============================================ */
.musicas-search-wrap {
    position: relative;
    max-width: 460px;
    margin: 0 auto 24px;
}
.musicas-search-wrap svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    pointer-events: none;
}
#musicas-search {
    width: 100%;
    padding: 12px 16px 12px 46px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
#musicas-search::placeholder { color: rgba(255,255,255,0.4); }
#musicas-search:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255,255,255,0.09);
}

.musicas-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--gray-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), #FFD700);
    border-color: var(--gold);
    color: var(--black);
}

.musicas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.musica-card {
    display: flex;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.musica-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.musica-capa {
    width: 250px;
    aspect-ratio: 1;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px 0 0 12px;
}

.musica-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.musica-card:hover .musica-capa img {
    transform: scale(1.05);
}

.musica-capa-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}

.musica-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 30px;
    min-width: 0;
}

.musica-info {
    margin-bottom: 15px;
}

.musica-titulo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.musica-artista {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.musica-genero {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Audio Player */
.musica-player {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.player-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #FFD700);
    border: none;
    color: var(--black);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.player-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.player-play-btn.playing {
    background: linear-gradient(135deg, #FFD700, var(--gold));
}

.player-progress-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.player-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.player-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--gold), #FFD700);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.player-time {
    font-size: 0.75rem;
    color: var(--gray);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

/* Action Buttons */
.musica-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.musica-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.musica-btn-download {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.musica-btn-download:hover {
    background: var(--gold);
    color: var(--black);
}

.musica-btn-spotify {
    background: rgba(29, 185, 84, 0.1);
    color: #1DB954;
    border: 1px solid rgba(29, 185, 84, 0.3);
}

.musica-btn-spotify:hover {
    background: #1DB954;
    color: var(--white);
}

.musica-btn-youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.musica-btn-youtube:hover {
    background: #FF0000;
    color: var(--white);
}

/* Empty State */
.musicas-empty {
    text-align: center;
    padding: 80px 20px;
}

.musicas-empty svg {
    opacity: 0.6;
    margin-bottom: 20px;
}

.musicas-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.musicas-empty p {
    color: var(--gray);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .musica-card {
        flex-direction: column;
    }

    .musica-capa {
        width: 100%;
        aspect-ratio: 1;
        border-radius: 12px 12px 0 0;
    }

    .musica-content {
        padding: 20px;
    }

    .musica-titulo {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .musica-content {
        padding: 16px;
    }

    .musica-actions {
        flex-direction: column;
    }

    .musica-btn {
        justify-content: center;
    }

    .musica-player {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .player-play-btn {
        align-self: center;
    }
}
