/**
 * Estilos para "Agende Seu Show" na página do artista
 */

.artist-show-contact {
    margin: 12px 0 16px 0;
    padding: 0;
}

.artist-show-contact .show-text {
    color: var(--text-color, #fff);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 6px 0;
    opacity: 0.9;
}

.artist-show-contact .show-phone {
    color: var(--secondary, #ff007f);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-show-contact {
        margin: 10px 0 14px 0;
    }
    
    .artist-show-contact .show-text {
        font-size: 0.85rem;
    }
    
    .artist-show-contact .show-phone {
        font-size: 0.85rem;
    }
}

